@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Noto+Sans+Gujarati:wght@300;400;600;700&display=swap');

:root {
    --primary-blue: #002e5d;
    --accent-orange: #f58220;
    --text-dark: #1a1a1a;
    --text-muted: #4a4a4a;
    --bg-light: #f8fbff;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --nav-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Noto Sans Gujarati', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

/* Typography Mix */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.gujarati {
    font-family: 'Noto Sans Gujarati', sans-serif;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.section-title p {
    font-size: 1rem;
    color: var(--accent-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.nav-container {
    max-width: 1300px;
    height: 100%;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.logo span {
    font-size: 0.8rem;
    color: var(--accent-orange);
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        gap: 1.5rem;
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
    }
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-orange);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
}

/* Image Integration (Directly Visible) */
.image-box {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    background: transparent;
    overflow: hidden;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Hero Section */
.hero {
    min-height: calc(100vh - var(--nav-height));
    display: flex;
    align-items: center;
    padding: 4rem 5%;
    background: var(--white);
    margin-top: var(--nav-height);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.hero-content .subtitle {
    font-size: 1.4rem;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 90%;
}

/* About Section */
.about {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.quote-box {
    border-left: 4px solid var(--accent-orange);
    padding: 1.5rem;
    background: rgba(245, 130, 32, 0.05);
    margin: 1.5rem 0;
}

.quote-box p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Vision Section */
.vision {
    padding: 5rem 5%;
    background: var(--primary-blue);
    color: var(--white);
}

.vision .section-title h2 {
    color: var(--white);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.vision-card {
    background: rgba(255,255,255,0.08);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.vision-card:hover {
    background: rgba(255,255,255,0.12);
}

.vision-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--accent-orange);
}

/* Leadership Section */
.leadership {
    padding: 5rem 5%;
    background: var(--white);
}

/* SGCCI Section */
.sgcci {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.event-details {
    max-width: 700px;
    margin: 0 auto;
    padding: 2.5rem;
    border-top: 6px solid var(--primary-blue);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.detail-item:last-of-type {
    border-bottom: none;
}

.detail-item i {
    font-size: 1.3rem;
    color: var(--accent-orange);
}

/* Gallery */
.gallery {
    padding: 5rem 5%;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    cursor: pointer;
    background: transparent;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.02);
}


/* Footer */
footer {
    padding: 3rem 5%;
    background: var(--primary-blue);
    color: var(--white);
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.3rem;
    transition: var(--transition);
    opacity: 0.8;
}

.social-links a:hover {
    color: var(--accent-orange);
    opacity: 1;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-container, .about-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .hero-container, .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-image {
        order: -1;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}
