/* Legacy Project Styles - To fix project-*.html pages */

/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Playfair+Display:wght@400;700&display=swap');

:root {
    --primary: #5FF7FF;
    --dark-bg: #0a0a0a;
    --card-bg: #1a1a1a;
    --text-light: #eafffa;
    --text-muted: #a0a0a0;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Island Header Styling */
.island-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.island-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
}

.island-logo img {
    height: 30px;
    width: auto;
    border-radius: 50%;
}

.island-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.island-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.island-nav a:hover {
    color: var(--primary);
}

.island-action .nav-contact-btn {
    background: var(--primary);
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.3s;
}

.island-action .nav-contact-btn:hover {
    transform: scale(1.05);
}

/* Hamburger Menu (Hidden on Desktop) */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
}

/* Hero Section */
.hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, rgba(95, 247, 255, 0.1) 0%, transparent 70%);
    margin-top: 80px;
    /* Space for fixed header */
    padding: 0 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #a5a5a5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-meta {
    color: var(--primary);
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Back Link */
.back-link {
    display: inline-block;
    margin: 20px 0 20px 10%;
    /* Align with container */
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--primary);
}

/* Content Container */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

/* Sections */
.section {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
}

.section h2 {
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section h2 svg {
    width: 30px;
    height: 30px;
    stroke: var(--primary);
}

.section p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Lists */
.challenges,
.tech-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 15px;
}

.challenges li,
.tech-list li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.challenges li::before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
}

/* Tech List Specifics (Tags style) */
.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-list li {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.9rem;
}

.tech-list li::before {
    content: none;
    /* Remove bullet for tags */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .island-header {
        width: 95%;
        padding: 10px 20px;
    }

    .island-nav {
        display: none;
        /* Hide nav links on mobile */
    }

    .hamburger {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section {
        padding: 2rem;
    }
}