:root {
    --primary: #003366; /* Deep EO Blue */
    --secondary: #008080; /* Teal Accent */
    --accent-magenta: #e91e63;
    --accent-orange: #ff9800;
    --dark: #0a0a0a;
    --light: #f4f7f6;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    --shadow-premium: 0 20px 50px rgba(0, 51, 102, 0.15);
    --shadow-glow: 0 0 20px rgba(0, 128, 128, 0.4);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--dark);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    opacity: 0;
    animation: fadeInPage 1s ease forwards;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

@keyframes fadeInPage {
    to { opacity: 1; }
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-full {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center !important;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

.odisha-text {
    font-weight: 300;
    color: var(--secondary);
}

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

.nav-links li a {
    color: var(--white);
    font-weight: 400;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links li a:hover {
    color: var(--secondary);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.menu-toggle .bar {
    width: 6px;
    height: 6px;
    background-color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

/* Navbar Toggle Active State */
.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(10px) scale(1.2);
    background-color: var(--accent-magenta);
}
.menu-toggle.active .bar:nth-child(2) {
    transform: scale(1.2);
    background-color: var(--secondary);
}
.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-10px) scale(1.2);
    background-color: var(--accent-orange);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white) !important;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0, 128, 128, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 128, 128, 0.4);
}

.btn-secondary {
    border: 2px solid var(--white);
    color: var(--white) !important;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark) !important;
}

.btn-white {
    background: var(--white);
    color: var(--primary) !important;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
}

.btn-white:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('./assets/hero.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 51, 102, 0.4), rgba(10, 10, 10, 0.9));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 1rem;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1;
    letter-spacing: -2px;
}

.hero p {
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    font-weight: 300;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.8;
}

.hero .highlight {
    background: linear-gradient(135deg, var(--secondary), var(--accent-orange), var(--accent-magenta));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 5s linear infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* About Section */
.about {
    padding: 7rem 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.3);
}

.experience-badge .years {
    font-size: 1.2rem;
    font-weight: 600;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.text-center .section-title {
    display: block;
}

.section-header {
    margin-bottom: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--secondary);
    transition: width 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.revealed.section-title::after {
    width: 80px;
}

.text-center.section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.revealed.text-center.section-title::after {
    width: 80px;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* Events Section */
.events {
    padding: 7rem 0;
    background: var(--light);
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.event-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.event-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 51, 102, 0.15);
    border-color: var(--secondary);
}

.event-img {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.event-card:hover .event-img img {
    transform: scale(1.15);
}

.event-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.event-info {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.event-date {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.event-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.btn-link {
    color: var(--primary);
    font-weight: 700;
    margin-top: 2rem;
    display: inline-block;
}

/* Signature Event Section */
.signature-event {
    padding: 7rem 0;
    background: var(--white);
    overflow: hidden;
}

.signature-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.signature-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.signature-highlight {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.signature-features {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.signature-features span {
    background: var(--light);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    border: 1px solid rgba(0, 51, 102, 0.1);
}

.signature-image-container {
    position: relative;
    padding: 2rem;
}

.signature-image-container img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(0, 51, 102, 0.2);
}

.signature-overlay-card {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--secondary);
    transform: translateY(20px);
}

.signature-overlay-card h4 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 968px) {
    .signature-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

/* Gallery Section */
.gallery {
    padding: 7rem 0;
    background: var(--light);
}

.masonry-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 15vw;
    gap: 1.5rem;
    padding: 0 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 51, 102, 0.8), transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 2.5rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Bento Layout Rules */
.gallery-item:nth-child(1) { grid-column: span 6; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 3; grid-row: span 1; }
.gallery-item:nth-child(3) { grid-column: span 3; grid-row: span 1; }
.gallery-item:nth-child(4) { grid-column: span 3; grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 3; grid-row: span 1; }




.celebrations-section {
    background: #ffffff; /* Clean white background to contrast with the light gray gallery */
    position: relative;
    padding-bottom: 9rem;
}

.celebrations-section .gallery-item {
    box-shadow: 0 15px 35px rgba(0, 51, 102, 0.1);
}

.celebrations-section .gallery-item:hover {
    box-shadow: 0 30px 60px rgba(0, 128, 128, 0.2);
}

/* CTA Section */
.cta {
    padding: 9rem 0;
    background: linear-gradient(rgba(0, 51, 102, 0.85), rgba(0, 51, 102, 0.85)), url('./assets/social.png') center/cover;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.cta h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0;
}

.cta-requirements {
    background: var(--glass);
    backdrop-filter: blur(20px);
    padding: 3.5rem;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    width: 100%;
    max-width: 700px;
    margin: 1rem 0;
}

.cta-requirements h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--secondary);
}

.cta-requirements ul {
    list-style: none;
    text-align: center;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.cta-requirements li {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cta-requirements li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: 900;
}

/* Footer */
footer {
    background: var(--dark);
    color: #888;
    padding: 6rem 0 3rem;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 5rem;
    margin-bottom: 5rem;
}

.footer-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-info p {
    margin-bottom: 2rem;
}

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

.social-links a {
    color: var(--white);
}

.footer-grid h4 {
    color: var(--white);
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid #222;
    text-align: center;
}

/* Reveal Animations */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s var(--transition);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: 1s var(--transition);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: 1s var(--transition);
}

.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: 1s var(--transition);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: 1s var(--transition);
}

.revealed {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Spotlight Cursor */
.spotlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 128, 128, 0.08) 0%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    border-radius: 50%;
}

/* Page Headers & Specific Sections */
.page-header {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: var(--white);
    margin-top: 0;
}

.about-header {
    background: url('./assets/landmark.png') center/cover no-repeat;
}

.events-header {
    background: url('./assets/gala.png') center/cover no-repeat;
}

.page-header h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
}

.page-header p {
    font-size: 1.5rem;
    opacity: 0.9;
    position: relative;
    z-index: 10;
}

.page-section {
    padding: 8rem 0;
}

.secondary-bg {
    background: var(--light);
}

.dark-section {
    background: var(--dark);
    color: var(--white);
}

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

.dark-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.value-card {
    background: var(--white);
    border-radius: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.value-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 51, 102, 0.1);
}

.value-img {
    height: 180px;
    overflow: hidden;
}

.value-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.value-card:hover .value-img img {
    transform: scale(1.1);
}

.value-content {
    padding: 2.5rem 2rem;
}

.value-icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .container, .nav-container { padding: 0 1.5rem; }
    .about-grid, .signature-grid { gap: 3rem; }
    .hero h1 { font-size: 4.5rem; }
}

@media (max-width: 968px) {
    .navbar { padding: 1rem 0; background: rgba(10, 10, 10, 0.9); backdrop-filter: blur(20px); }
    .menu-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        transition: 0.5s var(--transition);
        z-index: 999;
    }

    .nav-links.active { right: 0; }

    .about-grid { grid-template-columns: 1fr !important; gap: 4rem; text-align: center; }
    .about-text { order: 2; }
    .about-image { order: 1; max-width: 500px; margin: 0 auto; }
    
    .signature-grid { grid-template-columns: 1fr !important; gap: 3rem; text-align: center; }
    .signature-image-container { order: 1; max-width: 500px; margin: 0 auto; }
    .signature-content { order: 2; }

    .masonry-gallery {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-auto-rows: 250px;
    }
    .gallery-item:nth-child(n) { grid-column: span 1 !important; grid-row: span 1 !important; }
    
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem;
        text-align: center;
    }
    
    .footer-info, .footer-links, .footer-contact {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 3.5rem; }
    .section-title { font-size: 2.5rem; }
    .page-header { height: 50vh; }
    .page-section { padding: 5rem 0; }
    .stats { gap: 1.5rem; }
    .stat-item h3 { font-size: 2rem; }
    .cta-requirements { padding: 2rem; }
    .signature-overlay-card { position: relative; transform: translateY(0); margin-top: -2rem; border-radius: 20px; padding: 1.5rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.8rem; }
    .hero p { font-size: 1rem; }
    .hero-btns { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; }
    .btn-primary, .btn-secondary { width: 100%; text-align: center; }
    .stats { flex-direction: column; align-items: center; }
    .masonry-gallery { grid-template-columns: 1fr !important; grid-auto-rows: 250px; }
    .gallery-overlay span { font-size: 1.2rem; }
    .cta h2 { font-size: 2.2rem; }
    .experience-badge { padding: 1.2rem; bottom: -10px; right: -10px; }
    .signature-features { flex-direction: column; gap: 0.8rem; width: 100%; }
    .signature-features span { width: 100%; }
}

