/* Simple Homepage with Hamburger Menu */

/* Hamburger Menu Button */
.hamburger-menu {
    z-index: 1001;
    width: 50px;
    height: 50px;
    background: #000000;
    border: 2px solid #d4af37;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 12px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.hero-hamburger {
    position: fixed;
    top: 1.5rem;
    left: 1.5rem;
    width: 45px;
    height: 45px;
    z-index: 1001;
}

.fixed-hamburger {
    position: fixed;
    top: 1.5rem;
    left: 1.5rem;
}

.hamburger-menu:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
}

.hamburger-menu span {
    width: 24px;
    height: 3px;
    background: #d4af37;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    width: 320px;
    height: 100%;
    background: #000000;
    border-right: 2px solid #d4af37;
    padding: 2rem 0;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 4px 0 20px rgba(212, 175, 55, 0.3);
}

.menu-overlay.active .mobile-menu {
    transform: translateX(0);
}

.menu-header {
    padding: 0 2rem 2rem 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.menu-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.4));
}

.menu-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #d4af37, #f4e4bc, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-list li {
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.menu-link {
    display: block;
    padding: 1.25rem 2rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-size: 0.9375rem;
}

.menu-link:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    border-left-color: #d4af37;
    padding-left: 2.25rem;
}

.menu-link.active {
    background: rgba(212, 175, 55, 0.15);
    color: #d4af37;
    border-left-color: #d4af37;
    font-weight: 600;
}

/* Main Content - Simple Layout */
.main-content-simple {
    min-height: 100vh;
    background: var(--ihec-bg-primary);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 168, 150, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    padding: 0;
}

/* Evening Gala Section */
.gala-section {
    padding: 1.5rem 1.5rem;
    background-image: url('../assets/aboutpage.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
}

.gala-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.gala-section > * {
    position: relative;
    z-index: 1;
}

.gala-container {
    max-width: 1000px;
    margin: 0 auto;
}

.gala-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.gala-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    background: linear-gradient(135deg, #d4af37, #f4e4bc, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.gala-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.gala-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.timeline-item:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(212, 175, 55, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.timeline-item:hover::before {
    opacity: 1;
}

.timeline-time {
    min-width: 85px;
    font-size: 0.95rem;
    font-weight: 800;
    color: #d4af37;
    display: flex;
    align-items: flex-start;
    padding-top: 0.2rem;
    letter-spacing: 0.05em;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 0.35rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    font-size: 0.8rem;
    margin: 0;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 0.25rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    animation: bounce 2s infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll-arrow {
    color: #d4af37;
    font-size: 2.5rem;
    animation: pulse 2s infinite;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8), 0 0 40px rgba(212, 175, 55, 0.5);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .scroll-indicator {
        display: flex;
        bottom: 1rem;
    }
    
    .scroll-text {
        font-size: 0.8rem;
    }
    
    .scroll-arrow {
        font-size: 2rem;
    }
}
.homepage {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Video Background */
.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Hero Section with Video Background */
.hero-section {
    position: relative;
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.download-module-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    background: rgba(26, 31, 58, 0.8);
    color: var(--ihec-text-primary);
    border: 1px solid var(--ihec-teal);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
    z-index: 100;
}

.download-module-btn:hover {
    background: rgba(26, 31, 58, 0.95);
    border-color: var(--ihec-teal);
    box-shadow: 0 4px 12px rgba(0, 168, 150, 0.3);
    transform: translateY(-2px);
}

.download-module-btn .btn-icon {
    font-size: 0.9375rem;
    transition: transform 0.2s ease;
    font-weight: 900;
}

.download-module-btn:hover .btn-icon {
    transform: translateY(2px);
}

.download-module-btn .btn-text {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.8125rem;
}

/* Animated Background Orbs */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--ihec-teal);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--ihec-gold);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--ihec-teal-light);
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
}

.hero-logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 168, 150, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

.hero-logo-img {
    height: 170px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 40px rgba(0, 168, 150, 0.6));
    animation: logoFloat 4s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.hero-text-container {
    margin-bottom: 2rem;
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

.hero-title {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 700;
    margin: 0 auto 0.5rem auto;
    line-height: 1.3;
    text-align: center;
    display: block;
    background: linear-gradient(to bottom, #ffffff 0%, var(--halal-gold, #d4af37) 50%, #f4e4bc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4), 0 0 30px rgba(212, 175, 55, 0.2);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.15));
}

.hero-title br {
    display: block;
    content: "";
    margin: 0;
}

.hero-year {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    background: linear-gradient(to bottom, #ffffff 0%, var(--halal-gold, #d4af37) 50%, #f4e4bc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin: 0 auto 1rem auto;
    letter-spacing: 0.1em;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4), 0 0 30px rgba(212, 175, 55, 0.2);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.15));
}

.title-line {
    display: block;
    background: var(--ihec-gradient-teal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 30px rgba(0, 168, 150, 0.4);
    animation: fadeInUp 1s ease-out;
}

.title-line.highlight {
    font-size: 1.2em;
    background: linear-gradient(135deg, var(--ihec-teal-light) 0%, var(--ihec-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.2s;
}

.title-line.year {
    font-size: 0.6em;
    color: var(--ihec-teal);
    -webkit-text-fill-color: var(--ihec-teal);
    margin-top: 0.5rem;
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--ihec-text-secondary);
    margin: 0;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease-out 0.6s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Top Navigation Buttons (Desktop) */
.top-nav-buttons {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: flex;
    gap: 1rem;
    z-index: 10;
    animation: fadeInDown 1s ease-out 0.5s both;
}

.top-nav-buttons .btn-large {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    min-width: 120px;
    transition: all 0.3s ease;
    border: 2px solid var(--halal-gold, #d4af37);
}

.top-nav-buttons .btn-large:hover {
    background: var(--halal-gold, #d4af37);
    color: #000;
    border-color: var(--halal-gold, #d4af37);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Top Navigation Dropdown (Mobile Only) */
.top-nav-dropdown {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 100;
    animation: fadeInDown 1s ease-out 0.5s both;
    display: none; /* Hidden on desktop */
}

.dropdown-toggle {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #d4af37;
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.dropdown-toggle:hover {
    background: rgba(0, 0, 0, 0.95);
    border-color: #d4af37;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.dropdown-toggle.active {
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
}

.dropdown-icon {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
    color: #d4af37;
}

.dropdown-toggle.active .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid #d4af37;
    border-radius: 8px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: rgba(212, 175, 55, 0.15);
    padding-left: 1.5rem;
}

.dropdown-item .btn-icon {
    font-size: 1rem;
    color: #d4af37;
    font-weight: 900;
    min-width: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dropdown-item .btn-icon svg {
    width: 1rem;
    height: 1rem;
    stroke: currentColor;
}

.dropdown-item .btn-text {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex: 1;
}

/* Center Boxes */
.center-boxes {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.center-boxes-top {
    display: flex;
    justify-content: center;
    width: 100%;
}

.center-boxes-bottom {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.center-box {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--halal-gold, #d4af37);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    min-width: 180px;
    width: auto;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-box:hover {
    background: var(--halal-gold, #d4af37);
    color: #000;
    border-color: var(--halal-gold, #d4af37);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.box-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.center-box:hover .box-title {
    color: #000;
}

.how-to-join-link {
    text-decoration: none;
    display: inline-block;
    border-bottom: 2px solid var(--halal-gold, #d4af37);
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
    margin-top: -1rem;
}

.how-to-join-link .box-title {
    color: #ffffff;
    font-size: 0.875rem;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
    margin: 0;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    position: relative;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 160px;
    justify-content: center;
    text-decoration: none;
}

.btn-icon {
    font-size: 1.125rem;
    transition: transform 0.2s ease;
    font-weight: 900;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-icon svg {
    width: 1.125rem;
    height: 1.125rem;
    stroke: currentColor;
    transition: transform 0.2s ease;
}

.btn-enter {
    background: var(--ihec-teal);
    color: var(--ihec-text-primary);
    border: 1px solid var(--ihec-teal);
    box-shadow: 0 2px 8px rgba(0, 168, 150, 0.2);
}

.btn-enter:hover {
    background: rgba(0, 168, 150, 0.9);
    box-shadow: 0 4px 12px rgba(0, 168, 150, 0.3);
    transform: translateY(-2px);
}

.btn-enter:hover .btn-icon {
    transform: scale(1.05);
}

.btn-view {
    background: rgba(26, 31, 58, 0.6);
    color: var(--ihec-text-primary);
    border: 1px solid var(--ihec-teal);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-view:hover {
    background: rgba(26, 31, 58, 0.8);
    border-color: var(--ihec-teal);
    box-shadow: 0 4px 12px rgba(0, 168, 150, 0.2);
    transform: translateY(-2px);
}

.btn-view:hover .btn-icon,
.btn-view:hover .btn-icon svg {
    transform: scale(1.05);
}

.btn-contact {
    background: rgba(26, 31, 58, 0.6);
    color: var(--ihec-text-primary);
    border: 1px solid var(--ihec-gold);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.15);
}

.btn-contact:hover {
    background: rgba(26, 31, 58, 0.8);
    border-color: var(--ihec-gold);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
    transform: translateY(-2px);
}

.btn-contact:hover .btn-icon,
.btn-contact:hover .btn-icon svg {
    transform: scale(1.05);
}

.btn-text {
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Decoration Lines */
.hero-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    z-index: 0;
}

.decoration-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--ihec-teal) 50%, transparent 100%);
    opacity: 0.3;
}

.line-1 {
    width: 100%;
    bottom: 0;
    animation: lineGlow 3s ease-in-out infinite;
}

.line-2 {
    width: 80%;
    bottom: 20px;
    left: 10%;
    animation: lineGlow 3s ease-in-out infinite 1.5s;
}

@keyframes lineGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

/* Features Section */
.features-section {
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--ihec-bg-card);
    border: 1px solid rgba(0, 168, 150, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--ihec-teal);
    box-shadow: 0 12px 40px rgba(0, 168, 150, 0.4);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 168, 150, 0.3));
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ihec-text-primary);
    margin: 0 0 1rem 0;
}

.feature-card p {
    color: var(--ihec-text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Quick Links */
.quick-links {
    margin-top: 4rem;
}

.quick-links h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--ihec-text-primary);
    text-align: center;
    margin: 0 0 2rem 0;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.quick-link-card {
    background: var(--ihec-bg-card);
    border: 1px solid rgba(0, 168, 150, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.quick-link-card:hover {
    transform: translateY(-5px);
    border-color: var(--ihec-teal);
    box-shadow: 0 8px 30px rgba(0, 168, 150, 0.4);
}

.link-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 8px rgba(0, 168, 150, 0.3));
}

.link-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ihec-teal-light);
    text-align: center;
}

/* Page Content Styles */
.page-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--ihec-bg-card);
    border: 1px solid rgba(0, 168, 150, 0.2);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.page-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ihec-text-primary);
    margin: 0 0 1.5rem 0;
    border-bottom: 2px solid var(--ihec-teal);
    padding-bottom: 1rem;
}

.page-content h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--ihec-teal-light);
    margin: 2.5rem 0 1rem 0;
}

.page-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ihec-text-primary);
    margin: 2rem 0 1rem 0;
}

.page-content p {
    color: var(--ihec-text-secondary);
    line-height: 1.8;
    margin: 0 0 1.5rem 0;
}

.page-content ul,
.page-content ol {
    color: var(--ihec-text-secondary);
    line-height: 1.8;
    margin: 0 0 1.5rem 0;
    padding-left: 2rem;
}

.page-content li {
    margin-bottom: 0.75rem;
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 168, 150, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
        max-height: 100vh;
        padding: 1.5rem 1rem;
    }
    
    .hero-hamburger {
        top: 1rem;
        left: 1rem;
        width: 40px;
        height: 40px;
    }
    
    .download-module-btn {
        top: 1rem;
        right: 1rem;
        padding: 0.75rem 1.5rem;
        font-size: 0.8125rem;
    }
    
    .download-module-btn .btn-text {
        font-size: 0.75rem;
    }
    
    .download-module-btn .btn-icon {
        font-size: 0.875rem;
    }
    
    .hero-logo-img {
        height: 120px;
    }
    
    .logo-glow {
        width: 160px;
        height: 160px;
    }
    
    .hero-logo-container {
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: clamp(1.15rem, 3.5vw, 1.75rem);
        margin-bottom: 0.5rem;
        white-space: normal;
        line-height: 1.25;
    }
    
    .hero-year {
        font-size: clamp(1rem, 2.5vw, 1.5rem);
        margin-bottom: 0.75rem;
    }
    
    .title-line.highlight {
        font-size: 1.15em;
    }
    
    .title-line.year {
        font-size: 0.65em;
    }
    
    .hero-subtitle {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .hero-text-container {
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .hero-content {
        padding: 0 1rem;
        padding-bottom: 2rem;
    }
    
    .btn-large {
        padding: 0.875rem 1.75rem;
        font-size: 0.9375rem;
        min-width: 140px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-icon {
        font-size: 1rem;
    }
    
    /* Mobile styles for new elements */
    .top-nav-buttons {
        display: none; /* Hide desktop buttons on mobile */
    }
    
    .top-nav-dropdown {
        display: block; /* Show dropdown on mobile */
        top: 1rem;
        right: 1rem;
    }
    
    .dropdown-toggle {
        width: 45px;
        height: 45px;
    }
    
    .dropdown-icon {
        font-size: 1.125rem;
    }
    
    .dropdown-menu {
        min-width: 200px;
        right: 0;
    }
    
    .dropdown-item {
        padding: 0.75rem 1rem;
    }
    
    .dropdown-item .btn-text {
        font-size: 0.8125rem;
    }
    
    .center-boxes {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
        width: 100%;
    }
    
    .center-boxes-top {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .center-boxes-bottom {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .center-box {
        width: 100%;
        max-width: 220px;
        padding: 0.875rem 1.25rem;
        min-height: 50px;
        height: auto;
    }
    
    .box-title {
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    .hero-content {
        padding: 0 1rem;
        padding-bottom: 2rem;
    }
    
    .orb-1,
    .orb-2,
    .orb-3 {
        width: 250px;
        height: 250px;
    }
    
    .main-content-simple {
        padding: 0;
    }
    
    .page-content {
        padding: 2rem 1.5rem;
        margin: 2rem auto;
    }
    
    .mobile-menu {
        width: 100%;
    }
    
    /* Gala Section Mobile */
    .gala-section {
        padding: 1.25rem 1rem;
    }
    
    .gala-header {
        margin-bottom: 1.25rem;
    }
    
    .gala-title {
        font-size: clamp(1.25rem, 3vw, 1.75rem);
        margin-bottom: 0.4rem;
    }
    
    .gala-subtitle {
        font-size: 0.8rem;
    }
    
    .gala-timeline {
        gap: 0.875rem;
    }
    
    .timeline-item {
        padding: 0.875rem 1rem;
        gap: 0.75rem;
        flex-direction: row;
    }
    
    .timeline-time {
        font-size: 0.85rem;
        min-width: 75px;
    }
    
    .timeline-content h3 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .timeline-content p {
        font-size: 0.75rem;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 1rem 0.75rem;
    }
    
    .download-module-btn {
        top: 0.75rem;
        right: 0.75rem;
        padding: 0.625rem 1.25rem;
        font-size: 0.75rem;
    }
    
    .download-module-btn .btn-text {
        font-size: 0.6875rem;
        display: none;
    }
    
    .download-module-btn .btn-icon {
        font-size: 0.875rem;
        margin: 0;
    }
    
    .hero-title {
        font-size: clamp(1rem, 3vw, 1.5rem);
        margin-bottom: 0.5rem;
        white-space: normal;
        line-height: 1.25;
    }
    
    .hero-year {
        font-size: clamp(0.875rem, 2vw, 1.25rem);
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.7rem;
        line-height: 1.4;
    }
    
    .hero-logo-img {
        height: 100px;
    }
    
    .logo-glow {
        width: 140px;
        height: 140px;
    }
    
    .hero-logo-container {
        margin-bottom: 0.75rem;
    }
    
    .hero-text-container {
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }
    
    .hero-content {
        padding: 0 0.75rem;
        padding-bottom: 2rem;
    }
    
    .btn-large {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
        min-width: 120px;
    }
    
    .top-nav-dropdown {
        top: 0.75rem;
        right: 0.75rem;
    }
    
    .dropdown-toggle {
        width: 40px;
        height: 40px;
    }
    
    .dropdown-icon {
        font-size: 1rem;
    }
    
    .dropdown-menu {
        min-width: 180px;
    }
    
    .dropdown-item {
        padding: 0.625rem 0.875rem;
    }
    
    .dropdown-item .btn-text {
        font-size: 0.75rem;
    }
    
    .dropdown-item .btn-icon {
        font-size: 0.875rem;
    }
    
    .center-box {
        max-width: 160px;
        padding: 0.75rem 1rem;
        min-height: 45px;
    }
    
    .box-title {
        font-size: 0.85rem;
    }
    
    .hero-content {
        padding: 0 0.75rem;
        padding-bottom: 2rem;
    }
    
    .hero-actions {
        gap: 0.75rem;
    }
    
    .btn-icon {
        font-size: 0.9375rem;
    }
    
    /* Gala Section Small Mobile */
    .gala-section {
        padding: 1rem 0.875rem;
    }
    
    .gala-header {
        margin-bottom: 1rem;
    }
    
    .gala-title {
        font-size: clamp(1.1rem, 3vw, 1.5rem);
        margin-bottom: 0.3rem;
    }
    
    .gala-subtitle {
        font-size: 0.75rem;
    }
    
    .gala-timeline {
        gap: 0.75rem;
    }
    
    .timeline-item {
        padding: 0.75rem 0.875rem;
        gap: 0.625rem;
        flex-direction: row;
    }
    
    .timeline-time {
        font-size: 0.8rem;
        min-width: 70px;
    }
    
    .timeline-content h3 {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }
    
    .timeline-content p {
        font-size: 0.7rem;
        line-height: 1.3;
    }
}

