/* 
 * Ghana International Awards
 * Main Stylesheet
 * Colors: Gold (#D4AF37), Deep Red (#8B0000), Black (#000000)
 */

/* ===== Base Styles ===== */
:root {
    --gold: #D4AF37;
    --deep-red: #8B0000;
    --black: #000000;
    --white: #FFFFFF;
    --light-gold: #F5EAC1;
    --dark-gold: #B8860B;
    --light-gray: #F5F5F5;
    --medium-gray: #E0E0E0;
    --dark-gray: #333333;
    --transition-slow: 0.5s ease;
    --transition-medium: 0.3s ease;
    --transition-fast: 0.2s ease;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
    padding-top: 100px; /* Increased padding to account for fixed header */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    position: relative;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--deep-red);
    text-decoration: none;
    transition: all var(--transition-medium);
}

a:hover {
    color: var(--gold);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.divider {
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 1rem auto 1.5rem;
    position: relative;
}

.divider::before, .divider::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.divider::before {
    left: -15px;
}

.divider::after {
    right: -15px;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-medium);
    font-family: var(--font-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--deep-red);
    color: var(--white);
    border-color: var(--deep-red);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--deep-red);
}

.btn-secondary {
    background-color: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--gold);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--gold);
    color: var(--black);
}

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--black);
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
}

/* ===== Preloader ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    animation: hidePreloader 3s forwards;
}

@keyframes hidePreloader {
    0% {
        opacity: 1;
        visibility: visible;
    }
    80% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

.preloader.hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none;
    display: none !important;
}

.loader {
    position: relative;
    width: 100px;
    height: 100px;
}

.trophy-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background-image: url('assets/images/gia-logo-transparent.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

/* ===== Header ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-medium);
    padding: 1rem 0;
}

header.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--black);
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.logo-subtext {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--deep-red);
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin-left: 1.5rem;
}

.nav-menu a {
    color: var(--black);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width var(--transition-medium);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.btn-nominate,
.nav-menu a.btn-tickets {
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-menu a.btn-nominate::before,
.nav-menu a.btn-tickets::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all 0.4s ease;
}

.nav-menu a.btn-nominate {
    background: linear-gradient(135deg, var(--deep-red) 0%, #c50000 100%);
    border-color: var(--deep-red);
}

.nav-menu a.btn-nominate::before {
    background: linear-gradient(135deg, #c50000 0%, var(--deep-red) 100%);
    opacity: 0;
}

.nav-menu a.btn-tickets {
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    color: var(--black);
    border-color: var(--gold);
}

.nav-menu a.btn-tickets::before {
    background: linear-gradient(135deg, var(--dark-gold) 0%, var(--gold) 100%);
    opacity: 0;
}

.nav-menu a.btn-nominate:hover,
.nav-menu a.btn-tickets:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.nav-menu a.btn-nominate:hover::before,
.nav-menu a.btn-tickets:hover::before {
    opacity: 1;
}

.nav-menu a.btn-nominate:active,
.nav-menu a.btn-tickets:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-menu a.btn-nominate i,
.nav-menu a.btn-tickets i {
    font-size: 0.9rem;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--black);
}

/* ===== Hero Section ===== */
.hero {
    height: 110vh; /* Increased from 100vh to 110vh to extend down */
    min-height: 800px; /* Increased from 700px to 800px */
    background: linear-gradient(rgba(139, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), 
                linear-gradient(45deg, #D4AF37 0%, #8B0000 50%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: -100px; /* Offset the body padding-top */
    padding: 100px 0 50px; /* Added bottom padding */
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.hero-text-container {
    text-align: center;
    margin-bottom: 1rem;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--light-gold);
}

/* Countdown Timer */
.countdown-container {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
    width: 100%;
    max-width: 500px;
}

.countdown-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.countdown-header {
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.event-date {
    display: inline-block;
    background-color: var(--deep-red);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.5);
}

.countdown-header h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.countdown-value {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, var(--deep-red) 0%, var(--black) 100%);
    border-radius: 8px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-value::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--light-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.countdown-separator {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-top: -1rem;
}

.countdown-value.flip {
    animation: flip 0.5s ease-in-out;
}

@keyframes flip {
    0% {
        transform: rotateX(0);
    }
    50% {
        transform: rotateX(90deg);
    }
    100% {
        transform: rotateX(0);
    }
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .countdown-timer {
        flex-wrap: wrap;
        gap: 1rem 0.5rem;
    }
    
    .countdown-item {
        min-width: 70px;
    }
    
    .countdown-value {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .countdown-separator {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .countdown-item {
        min-width: 60px;
    }
    
    .countdown-value {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .countdown-header h3 {
        font-size: 1.1rem;
    }
}

/* Scroll down feature removed as requested */

/* Animation Classes */
.animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

.delay-3 {
    animation-delay: 0.9s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== About Section ===== */
.about {
    background-color: var(--white);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    position: relative;
}

.image-frame {
    position: relative;
    padding: 1rem;
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: rotate(2deg);
    transition: all var(--transition-slow);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid var(--gold);
    z-index: -1;
    transform: rotate(-2deg);
    transition: all var(--transition-slow);
}

.image-frame:hover {
    transform: rotate(0);
}

.image-frame:hover::before {
    transform: rotate(0);
}

.img-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--medium-gray);
    min-height: 300px;
}

.about-bg {
    width: 100%;
    height: 300px;
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../assets/PICS/DSC_0193.JPG');
    background-size: cover;
    background-position: center;
}

/* ===== Categories Section ===== */
.categories {
    background-color: var(--light-gray);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.category-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-medium);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background-color: var(--gold);
    transition: height var(--transition-slow);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.category-card:hover::before {
    height: 100%;
}

.category-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all var(--transition-medium);
}

.category-icon i {
    font-size: 1.8rem;
    color: var(--deep-red);
    transition: all var(--transition-medium);
}

.category-card:hover .category-icon {
    background-color: var(--deep-red);
}

.category-card:hover .category-icon i {
    color: var(--white);
    transform: scale(1.1);
}

.category-card h3 {
    margin-bottom: 1rem;
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 500;
    color: var(--deep-red);
}

.read-more i {
    margin-left: 5px;
    transition: transform var(--transition-fast);
}

.read-more:hover i {
    transform: translateX(5px);
}

.categories-cta {
    text-align: center;
}

/* ===== Nominees Section ===== */
.nominees {
    background-color: var(--white);
}

.nominees-slider {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    overflow-x: hidden;
}

.nominee-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-medium);
}

.nominee-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.nominee-image {
    height: 250px;
    overflow: hidden;
}

.nominee-bg {
    width: 100%;
    height: 100%;
    transition: transform var(--transition-medium);
}

.nominee-bg-1 {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../assets/PICS/STEPHEN YAW GEMFI BUSINESS LEADER OF THE YEAR.JPG');
    background-size: cover;
    background-position: center;
}

.nominee-bg-2 {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../assets/PICS/EWE GODDESS ACTRESS OF THE YEAR.JPG');
    background-size: cover;
    background-position: center;
}

.nominee-bg-3 {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../assets/PICS/ADAMA IBRAHIM JOURNALIST OF THE YEAR GNTV JUNIOR.JPG');
    background-size: cover;
    background-position: center;
}

.nominee-card:hover .nominee-bg {
    transform: scale(1.05);
}

.nominee-info {
    padding: 1.5rem;
}

.nominee-category {
    display: inline-block;
    background-color: var(--light-gold);
    color: var(--deep-red);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.nominees-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.prev-btn, .next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: 2px solid var(--gold);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--gold);
    color: var(--black);
}

.nominees-cta {
    text-align: center;
}

/* ===== Winners Section ===== */
.winners {
    background-color: var(--light-gray);
}

.winners-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.winner-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.winner-image {
    position: relative;
    height: 350px;
}

.winner-bg {
    width: 100%;
    height: 100%;
    transition: transform var(--transition-medium);
}

.winner-bg-1 {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../assets/PICS/DIANA BOAKYE ENTREPRENUER OF THE YEAR.JPG');
    background-size: cover;
    background-position: center;
}

.winner-bg-2 {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../assets/PICS/CJB GRAPHICS DESIGNER OF THE YEAR.JPG');
    background-size: cover;
    background-position: center;
}

.winner-bg-3 {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../assets/PICS/GREAT ADIYISEM TV MEDIA HOUSE OF THE YEAR.JPG');
    background-size: cover;
    background-position: center;
}

.winner-bg-4 {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../assets/PICS/NEV ENTERPRISE BUSINESS OF THE YEAR.JPG');
    background-size: cover;
    background-position: center;
}

.winner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    transform: translateY(0);
    transition: all var(--transition-medium);
}

.winner-year {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--gold);
    color: var(--black);
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.winner-overlay h3 {
    color: var(--white);
    margin-bottom: 0.3rem;
}

.winner-item:hover .winner-image img {
    transform: scale(1.05);
}

.winners-cta {
    text-align: center;
}

/* ===== Event Highlights ===== */
.event-highlights {
    background-color: var(--white);
}

.video-container {
    margin-bottom: 4rem;
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background-color: var(--black);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../assets/PICS/RED CARPET.JPG');
    background-size: cover;
    background-position: center;
    opacity: 0.9;
    transition: opacity var(--transition-medium);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(212, 175, 55, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: all var(--transition-medium);
}

.play-button i {
    color: var(--white);
    font-size: 2rem;
    margin-left: 5px;
}

.video-placeholder:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--gold);
}

.video-placeholder:hover img {
    opacity: 0.5;
}

.event-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--deep-red);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--dark-gray);
}

/* ===== Judging Process ===== */
.judging {
    background-color: var(--light-gray);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.process-step {
    flex: 1;
    min-width: 200px;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all var(--transition-medium);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 20px;
    background-color: var(--gold);
    color: var(--black);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.step-content h3 {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.judging-cta {
    text-align: center;
}

/* ===== Gallery Preview ===== */
.gallery-preview {
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    height: 200px;
    cursor: pointer;
}

.gallery-bg {
    width: 100%;
    height: 100%;
    transition: transform var(--transition-medium);
}

.gallery-bg-1 {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../assets/PICS/GALLERY 1.JPG');
    background-size: cover;
    background-position: center;
}

.gallery-bg-2 {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../assets/PICS/GALLERY 2.JPG');
    background-size: cover;
    background-position: center;
}

.gallery-bg-3 {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../assets/PICS/GALLERY 4.JPG');
    background-size: cover;
    background-position: center;
}

.gallery-bg-4 {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../assets/PICS/GALLERY 5.JPG');
    background-size: cover;
    background-position: center;
}

.gallery-bg-5 {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../assets/PICS/CULTURAL PERFORMANCE 1.JPG');
    background-size: cover;
    background-position: center;
}

.gallery-bg-6 {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../assets/PICS/CULTURAL PERFORMANCE 2.JPG');
    background-size: cover;
    background-position: center;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-cta {
    text-align: center;
}

/* ===== Testimonials ===== */
.testimonials {
    background-color: var(--light-gray);
}

.testimonials-slider {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    overflow-x: hidden;
}

.testimonial-item {
    flex: 0 0 calc(50% - 1rem);
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-medium);
}

.testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    padding: 2rem;
    position: relative;
}

.quote-icon {
    color: var(--gold);
    font-size: 2rem;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    border: 3px solid var(--light-gold);
}

.author-info h4 {
    margin-bottom: 0.2rem;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--deep-red);
}

/* ===== Call to Action ===== */
.cta {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                linear-gradient(135deg, #8B0000 0%, #000000 60%, #D4AF37 100%);
    color: var(--white);
    text-align: center;
    padding: 5rem 0;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta p {
    color: var(--light-gold);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* ===== Advertisements Section ===== */
.advertisements {
    background-color: var(--light-gray);
    padding: 5rem 0;
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
}

.ads-container-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 3rem auto 1.5rem;
}

.ads-container {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scrollAds 40s linear infinite;
    padding: 1rem 0;
}

@keyframes scrollAds {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-350px * 3 - 2rem * 3)); /* Adjust based on ad width and gap */
    }
}

.ads-container:hover {
    animation-play-state: paused;
}

.ad-item {
    flex: 0 0 350px;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-medium);
    position: relative;
}

.ad-item::before {
    content: 'Ad';
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--white);
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    z-index: 1;
}

.ad-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.ad-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ad-image {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background-color: var(--light-gold);
    position: relative;
    overflow: hidden;
}

.ad-image img {
    max-height: 100%;
    max-width: 80%;
    object-fit: contain;
    transition: transform var(--transition-medium);
}

.ad-item:hover .ad-image img {
    transform: scale(1.05);
}

.ad-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.ad-info h3 {
    margin-bottom: 0.8rem;
    color: var(--deep-red);
}

.ad-info p {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.ad-info .btn {
    align-self: flex-start;
}

.ads-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.ads-navigation .prev-btn,
.ads-navigation .next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: 2px solid var(--gold);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.ads-navigation .prev-btn:hover,
.ads-navigation .next-btn:hover {
    background-color: var(--gold);
    color: var(--black);
}

@media screen and (max-width: 992px) {
    @keyframes scrollAds {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-300px * 3 - 2rem * 3));
        }
    }
    
    .ad-item {
        flex: 0 0 300px;
    }
}

@media screen and (max-width: 768px) {
    @keyframes scrollAds {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-250px * 3 - 2rem * 3));
        }
    }
    
    .ad-item {
        flex: 0 0 250px;
    }
    
    .ad-content {
        flex-direction: column;
    }
}

@media screen and (max-width: 576px) {
    @keyframes scrollAds {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-200px * 3 - 2rem * 3));
        }
    }
    
    .ad-item {
        flex: 0 0 200px;
    }
    
    .ad-image {
        height: 120px;
    }
}

/* ===== Partners & Sponsors ===== */
.partners {
    background-color: var(--white);
    padding: 5rem 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.partners-container {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 3rem auto 0;
    max-width: 100%;
}

.partners-grid {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    animation: scrollPartners 60s linear infinite;
    width: max-content;
    padding: 0 1rem;
}

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-150px * 16 - 2.5rem * 16)); /* Adjust based on logo width and gap */
    }
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 150px;
    flex-shrink: 0;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all var(--transition-medium);
    padding: 0.5rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.partner-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.partners-grid:hover {
    animation-play-state: paused;
}

.partners-category {
    margin-bottom: 2rem;
}

.partners-category h3 {
    color: var(--deep-red);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 0.8rem;
}

.partners-category h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--gold);
}

@media screen and (max-width: 992px) {
    .partner-logo {
        height: 70px;
        width: 130px;
    }
    
    @keyframes scrollPartners {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-130px * 16 - 2.5rem * 16));
        }
    }
}

@media screen and (max-width: 768px) {
    .partners-category h3 {
        font-size: 1.3rem;
    }
    
    .partner-logo {
        height: 60px;
        width: 110px;
    }
    
    @keyframes scrollPartners {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-110px * 16 - 2.5rem * 16));
        }
    }
}

@media screen and (max-width: 576px) {
    .partners-category {
        margin-bottom: 1.5rem;
    }
    
    .partner-logo {
        height: 50px;
        width: 90px;
    }
    
    @keyframes scrollPartners {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-90px * 16 - 2.5rem * 16));
        }
    }
}

/* ===== Newsletter ===== */
.newsletter {
    background-color: var(--light-gold);
    padding: 4rem 0;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter h2 {
    margin-bottom: 1rem;
}

.newsletter p {
    margin-bottom: 2rem;
}

.newsletter-form {
    width: 100%;
}

.form-group {
    display: flex;
    gap: 0.5rem;
}

.form-group input {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-family: var(--font-secondary);
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--gold);
}

.form-message {
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-size: 0.9rem;
    text-align: center;
    display: none;
}

.form-message:not(:empty) {
    display: block;
}

.form-message.success {
    background-color: rgba(0, 128, 0, 0.1);
    color: #006400;
    border: 1px solid rgba(0, 128, 0, 0.3);
}

.form-message.error {
    background-color: rgba(220, 20, 60, 0.1);
    color: #8B0000;
    border: 1px solid rgba(220, 20, 60, 0.3);
}

/* ===== Footer ===== */
footer {
    background-color: var(--black);
    color: var(--white);
    padding: 5rem 0 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    flex: 1;
    min-width: 300px;
}

.footer-logo a {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: var(--white);
    opacity: 0.8;
    transition: all var(--transition-fast);
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--gold);
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-info li i {
    margin-right: 1rem;
    color: var(--gold);
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all var(--transition-medium);
}

.social-links a:hover {
    background-color: var(--gold);
    color: var(--black);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.copyright {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--white);
    opacity: 0.7;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.footer-bottom-links a:hover {
    opacity: 1;
    color: var(--gold);
}

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--deep-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--gold);
    color: var(--black);
    transform: translateY(-5px);
}

/* ===== Responsive Styles ===== */
@media screen and (max-width: 1200px) {
    html {
        font-size: 15px;
    }
}

@media screen and (max-width: 992px) {
    html {
        font-size: 14px;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .about-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .about-text, .about-image {
        width: 100%;
    }
    
    .nominees-slider {
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    
    .nominee-card {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .testimonial-item {
        flex: 0 0 100%;
    }
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem;
        transition: right var(--transition-medium);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1001;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
        width: 100%;
    }
    
    .nav-menu a.btn-nominate,
    .nav-menu a.btn-tickets {
        display: block;
        text-align: center;
        margin-top: 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    html {
        font-size: 13px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .nominee-card {
        flex: 0 0 100%;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .form-group input,
    .form-group button {
        width: 100%;
    }
}
