/* ===========================
   Global Styles & Reset
   =========================== */

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

:root {
    /* Color Scheme - Based on Logo */
    --primary-dark: #0a0a0a;
    --primary-grey: #1a1a1a;
    --metallic-blue: #8CA0B1;
    --metallic-light: #ACBCCC;
    --gold-primary: #D4AA00;
    --gold-light: #E8C547;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --overlay-dark: rgba(10, 10, 10, 0.85);
    --overlay-gradient: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(140, 160, 177, 0.3) 100%);
    
    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--off-white);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   Navbar Styles
   =========================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--primary-dark);
    z-index: 1000;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.navbar .logo img {
    height: 40px;
    width: auto;
    transition: var(--transition-smooth);
}

/* .navbar.scrolled .logo img {
    height: 50px;
} */

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    position: relative;
    transition: var(--transition-smooth);
    font-family: var(--font-secondary);
}

/* .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: var(--transition-smooth);
} */

.nav-links a:hover {
    color: var(--gold-primary);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.mobile-menu-btn:hover {
    color: var(--gold-primary);
}

/* ===========================
   Hero Section
   =========================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 90px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: var(--overlay-gradient); */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: 40px 20px;
}

.hero-logo {
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-out;
}

.hero-logo img {
    max-width: 700px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold-primary);
    margin-bottom: 30px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
}

.hero-details {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 500;
}

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

.hero-tagline {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--metallic-light);
    margin-bottom: 40px;
    font-family: var(--font-secondary);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition-smooth);
    font-family: var(--font-secondary);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gold-primary);
    color: var(--primary-dark);
    box-shadow: 0 5px 20px rgba(212, 170, 0, 0.3);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 170, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--gold-primary);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.fade-in-delay {
    animation: fadeInUp 1s ease-out 0.5s both;
}

.fade-in-delay-2 {
    animation: fadeInUp 1s ease-out 0.7s both;
}

.fade-in-delay-3 {
    animation: fadeInUp 1s ease-out 0.9s both;
}

.fade-in-delay-4 {
    animation: fadeInUp 1s ease-out 1.1s both;
}

@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);
    }
}

/* ===========================
   Highlights Section
   =========================== */

.highlights {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-grey) 100%);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.highlight-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(212, 170, 0, 0.2);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.highlight-card:hover .highlight-icon {
    transform: rotate(360deg);
}

.highlight-icon i {
    font-size: 2rem;
    color: var(--primary-dark);
}

.highlight-card h3 {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.highlight-card p {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 500;
}

/* ===========================
   Section Styles (Common)
   =========================== */

.speakers,
.nominees,
.winners {
    padding: 100px 0;
    position: relative;
}

.speakers {
    background: var(--white);
}

.nominees {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.winners {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-grey) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

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

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gold-primary);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-family: var(--font-secondary);
    margin-top: 25px;
}

.winners .section-subtitle {
    color: var(--metallic-light);
}

/* ===========================
   Carousel Styles
   =========================== */

.carousel-container {
    position: relative;
    padding: 0 60px;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 15px;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gold-primary);
    color: var(--primary-dark);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background: var(--gold-light);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(212, 170, 0, 0.4);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--gold-primary);
    width: 30px;
    border-radius: 6px;
}

.winners .dot {
    background: rgba(255, 255, 255, 0.3);
}

.winners .dot.active {
    background: var(--gold-primary);
}

/* ===========================
   Speaker Cards
   =========================== */

.speaker-card {
    flex: 0 0 calc(25% - 23px);
    min-width: calc(25% - 23px);
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.speaker-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.speaker-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.speaker-info {
    padding: 25px;
    text-align: center;
}

.speaker-name {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.speaker-designation {
    font-size: 0.95rem;
    color: var(--gold-primary);
    font-weight: 600;
    margin-bottom: 5px;
}

.speaker-company {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===========================
   Nominee Cards
   =========================== */

.nominee-card {
    flex: 0 0 calc(40% );
    min-width: calc(40% );
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    position: relative;
}

.nominee-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.nominee-image {
    width: fit-content;
    height: fit-content;
    overflow: hidden;
    position: relative;
}

.nominee-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.nominee-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold-primary);
    color: var(--primary-dark);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* .nominee-info {
    padding: 20px;
    text-align: center;
}

.nominee-name {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.nominee-designation {
    font-size: 0.85rem;
    color: var(--gold-primary);
    font-weight: 600;
    margin-bottom: 5px;
}

.nominee-company {
    font-size: 0.8rem;
    color: var(--text-light);
} */

/* ===========================
   Winner Cards
   =========================== */

.winner-card {
    flex: 0 0 calc(50% - 20px);
    min-width: calc(50% - 20px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
    position: relative;
    padding: 30px;
}

.winner-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(212, 170, 0, 0.4);
}

.winner-trophy {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 70px;
    height: 70px;
    background: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(212, 170, 0, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.winner-trophy i {
    font-size: 2rem;
    color: var(--primary-dark);
}

.winner-image {
    width: 300px;
    height: 300px;
    margin: 0 auto 25px;
    border-radius: 15%;
    overflow: hidden;
    position: relative;
    border: 5px solid var(--gold-primary);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.winner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.winner-badge {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-primary);
    color: var(--primary-dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
}

.winner-info {
    text-align: center;
}

.award-category {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.winner-name {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.winner-designation {
    font-size: 0.95rem;
    color: var(--metallic-blue);
    font-weight: 600;
    margin-bottom: 5px;
}

.winner-company {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ===========================
   Footer Styles
   =========================== */

.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-grey) 100%);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--gold-primary);
}

.footer-logo img {
    max-width: 300px;
    width: 100%;
    margin-bottom: 15px;
}

.footer-tagline {
    font-style: italic;
    color: var(--metallic-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--gold-primary);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a {
    color: var(--metallic-light);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-links i {
    color: var(--gold-primary);
    font-size: 0.9rem;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--metallic-light);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: var(--metallic-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-bottom-links a:hover {
    color: var(--gold-primary);
}

/* ===========================
   Scroll to Top Button
   =========================== */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold-primary);
    color: var(--primary-dark);
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--gold-light);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(212, 170, 0, 0.5);
}

/* ===========================
   Responsive Design
   =========================== */

@media (max-width: 1200px) {
    .speaker-card {
        flex: 0 0 calc(33.333% - 20px);
        min-width: calc(33.333% - 20px);
    }
    
    .nominee-card {
        flex: 0 0 calc(25% - 23px);
        min-width: calc(25% - 23px);
    }
    
    .winner-card {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 90px;
        left: -100%;
        flex-direction: column;
        background: var(--primary-dark);
        width: 100%;
        padding: 40px 0;
        gap: 20px;
        transition: var(--transition-smooth);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-logo img {
        max-width: 500px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .speaker-card {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
    }
    
    .nominee-card {
        flex: 0 0 calc(33.333% - 20px);
        min-width: calc(33.333% - 20px);
    }
    
    .winner-card {
        flex: 0 0 calc(100% - 0px);
        min-width: calc(100% - 0px);
    }
}

@media (max-width: 768px) {
    .carousel-container {
        padding: 0 50px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-logo img {
        max-width: 400px;
    }
    
    .hero-details {
        gap: 30px;
    }
    
    .detail-item {
        font-size: 1rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .speaker-card,
    .nominee-card {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .navbar .logo img {
        height: 50px;
    }
    
    .hero {
        margin-top: 80px;
    }
    
    .hero-logo img {
        max-width: 300px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        padding: 12px 30px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-container {
        padding: 0 40px;
    }
    
    .speaker-card,
    .nominee-card,
    .winner-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .winner-image {
        width: 150px;
        height: 150px;
    }
    
    .award-category {
        font-size: 1.1rem;
        min-height: auto;
    }
    
    .winner-name {
        font-size: 1.3rem;
    }
    
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* ===========================
   Accessibility
   =========================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles for Keyboard Navigation */
button:focus,
a:focus {
    outline: 2px solid var(--gold-primary);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .scroll-to-top,
    .carousel-btn,
    .carousel-dots {
        display: none;
    }
    
    .hero {
        margin-top: 0;
    }
}