/* ========================================
   SHPDK - Kosovo Wood Convention 8th Edition
   Modern Professional Stylesheet
   ======================================== */

/* CSS Variables - Wood Theme Colors */
:root {
    --primary-color: #8B4513;
    --primary-dark: #6F3609;
    --secondary-color: #D2691E;
    --accent-color: #F2BE1A;
    --accent-light: #FFD700;
    --dark-color: #2D1B00;
    --dark-brown: #3E2723;
    --light-beige: #F5F5DC;
    --cream: #FFF8DC;
    --white: #FFFFFF;
    --black: #000000;
    --gray: #6C7A89;
    --light-gray: #E4E2F4;
    --success: #4CAF50;
    --warning: #FF9800;
    --danger: #F44336;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.2);
    --transition: all 0.3s ease;
    --border-radius: 10px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-brown);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.btn i {
    margin-right: 8px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgb(45, 27, 0);
    padding: 15px 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: var(--dark-color);
    padding: 10px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    transition: var(--transition);
    margin-right: 30px; /* adds space between logo and first menu item */
    vertical-align: middle; /* keeps it aligned with the menu items */
}

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

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 5px;
    transition: var(--transition);
    font-size: 15px;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: var(--primary-color);
}

.flag-icon {
    width: 20px;
    height: 15px;
    margin-right: 5px;
    vertical-align: middle;
}

/* Dropdown */
.dropdown-item {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: var(--transition);
}

.dropdown-item:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    margin-top: 10px;
}

.dropdown-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid var(--light-gray);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--dark-brown);
    background-color: transparent;
}

.dropdown-menu a:hover {
    background-color: var(--light-beige);
    color: var(--primary-color);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('../upload/banners/4.jpeg') center/cover no-repeat;
    color: var(--white);
    text-align: center;
    overflow: hidden;
    margin-top: 75px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139,69,19,0.3) 0%, rgba(45,27,0,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--accent-light);
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}

.hero-info {
    margin-bottom: 40px;
}

.hero-location,
.hero-datetime {
    font-size: 22px;
    margin: 10px 0;
    display: inline-block;
    padding: 10px 20px;
    background-color: rgba(0,0,0,0.3);
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.hero-location i,
.hero-datetime i {
    margin-right: 8px;
    color: var(--accent-light);
}

/* Countdown Timer */
.countdown-section {
    margin: 50px 0;
}

.countdown-title {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--accent-light);
}

.countdown {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    width: 130px;
    height: 110px;
    padding: 0;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    box-sizing: border-box;
    text-align: center;
}

.countdown-value {
    font-size: 38px;
    font-weight: bold;
    color: var(--accent-light);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    display: block;
    width: 100%;
    text-align: center;
}

.countdown-label {
    font-size: 15px;
    text-transform: uppercase;
    margin-top: 8px;
    letter-spacing: 1px;
    color: var(--accent-light);
    font-weight: bold;
    display: block;
    width: 100%;
    text-align: center;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 32px;
    color: var(--white);
}

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

.animate-fade-in {
    animation: fadeIn 1s ease;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease 0.6s both;
}

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

.animate-fade-in-delay-4 {
    animation: fadeIn 1s ease 1.2s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
.section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 42px;
    color: var(--dark-brown);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray);
    margin-top: 20px;
}

/* Statistics Section */
.statistics-section {
    background-color: var(--light-beige);
}

.video-container {
    margin-bottom: 60px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.stat-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: var(--gray);
    font-weight: 500;
}

/* Testimonial Section */
.testimonial-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: var(--white);
    padding: 80px 0;
}

.testimonial-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 50px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--accent-light);
    box-shadow: var(--shadow-lg);
}

.testimonial-text {
    position: relative;
}

.quote-icon {
    font-size: 40px;
    color: var(--accent-light);
    opacity: 0.5;
    margin-bottom: 15px;
}

.testimonial-quote {
    font-size: 24px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 25px;
}

.testimonial-author {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--accent-light);
}

.testimonial-position {
    font-size: 16px;
    color: var(--light-beige);
}

/* Objectives Section */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.objective-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.objective-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--accent-color);
}

.objective-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.objective-content h3 {
    font-size: 22px;
    color: var(--dark-brown);
    margin-bottom: 15px;
}

.objective-content p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
}

/* Schedule Section */
.schedule-section {
    background-color: var(--light-beige);
}

.schedule-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.schedule-timeline {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.schedule-panel {
    margin-bottom: 20px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.schedule-panel-header {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.schedule-panel-header:hover {
    background: linear-gradient(to right, var(--primary-dark), var(--primary-color));
}

.schedule-panel-header h3 {
    font-size: 20px;
    margin: 0;
}

.schedule-panel-header i {
    font-size: 18px;
}

.toggle-icon {
    transition: var(--transition);
}

.schedule-panel.active .toggle-icon {
    transform: rotate(180deg);
}

.schedule-panel-body {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.schedule-panel.active .schedule-panel-body {
    max-height: 5000px;
    padding: 25px;
}

.moderator,
.session-title {
    font-size: 18px;
    color: var(--primary-color);
    margin: 20px 0 15px;
    font-weight: 600;
}

.schedule-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--light-gray);
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-time {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 16px;
}

.schedule-content h4 {
    font-size: 18px;
    color: var(--dark-brown);
    margin-bottom: 10px;
}

.schedule-content p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
}

.speakers-list {
    margin-top: 10px;
}

.speakers-list p {
    margin: 8px 0;
    padding-left: 15px;
    position: relative;
}

.speakers-list p:before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.schedule-item.break {
    background-color: var(--cream);
    padding: 15px;
    border-radius: 8px;
    grid-template-columns: 1fr;
}

.schedule-item.break h4 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.schedule-item.highlight {
    background-color: var(--light-beige);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

/* B2B Info Box */
.b2b-info-box {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 100px;
}

.b2b-info-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.b2b-content h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--accent-light);
}

.b2b-time,
.b2b-location {
    font-size: 16px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.b2b-note {
    background-color: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid var(--accent-light);
}

.b2b-note i {
    color: var(--accent-light);
    margin-right: 8px;
}

/* Speakers Section */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
}

.speaker-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.speaker-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.speaker-card.featured {
    border: 3px solid var(--accent-color);
}

.speaker-image {
    position: relative;
    overflow: hidden;
    height: 320px;
}

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

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

.speaker-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--accent-color);
    color: var(--dark-brown);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

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

.speaker-info h3 {
    font-size: 20px;
    color: var(--dark-brown);
    margin-bottom: 10px;
}

.speaker-title {
    font-size: 15px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.speaker-company {
    font-size: 14px;
    color: var(--gray);
}

.view-all-speakers {
    text-align: center;
    margin-top: 40px;
}

.speakers-note {
    font-size: 18px;
    color: var(--gray);
    font-style: italic;
}

/* Gallery Section */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay i {
    font-size: 40px;
    color: var(--white);
}

.load-more-container {
    text-align: center;
    margin-top: 40px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--accent-color);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    padding: 20px;
    user-select: none;
    transition: var(--transition);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--accent-color);
}

/* Sponsors Section */
.sponsors-section {
    background-color: var(--light-beige);
}

.sponsors-category {
    margin-bottom: 60px;
}

.sponsor-tier-title {
    text-align: center;
    font-size: 32px;
    color: var(--dark-brown);
    margin-bottom: 40px;
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    letter-spacing: 1px;
}

.sponsor-tier-title i {
    color: var(--accent-color);
    margin-right: 10px;
}

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

.sponsors-grid.premium {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.sponsor-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.sponsor-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.sponsor-logo {
    color: var(--primary-color);
}

.sponsor-card h4 {
    font-size: 22px;
    color: var(--dark-brown);
    margin-bottom: 10px;
}

.sponsor-card p {
    font-size: 15px;
    color: var(--gray);
}

.sponsor-card-small {
    background: var(--white);
    padding: 25px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.sponsor-card-small:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.sponsor-card-small i {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.sponsor-card-small p {
    font-size: 16px;
    color: var(--dark-brown);
    font-weight: 600;
}

.become-sponsor {
    text-align: center;
    margin-top: 30px;
    padding: 25px 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: var(--border-radius);
}

.become-sponsor h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.become-sponsor p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-logo img {
    height: 100px;
    margin-bottom: 15px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--accent-light);
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 10px;
    color: var(--light-beige);
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--light-beige);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-light);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    margin: 5px 0;
    color: var(--light-beige);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 999;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.back-to-top:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
}

.back-to-top.show {
    display: flex;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .schedule-container {
        grid-template-columns: 1fr;
    }
    
    .b2b-info-box {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background-color: var(--dark-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .dropdown-menu {
        position: relative;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: var(--light-beige);
        margin-top: 10px;
        display: none;
    }

    /* Show menu when active */
    .dropdown-item.active .dropdown-menu {
        display: block;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .countdown {
        gap: 15px;
    }

    .countdown-item {
        padding: 20px 25px;
        min-width: 100px;
    }

    .countdown-value {
        font-size: 40px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .testimonial-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .testimonial-image img {
        margin: 0 auto;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .schedule-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .countdown-item {
        padding: 15px 20px;
        min-width: 80px;
    }

    .countdown-value {
        font-size: 32px;
    }

    .countdown-label {
        font-size: 12px;
    }

    .hero-location,
    .hero-datetime {
        font-size: 16px;
    }
}

/* --- Gara Section --- */
    .gallery-section-1 {
    padding: 60px 5%;
    background-color: #FFFFE0; /* optional background */
    text-align: center;
    }

    .gallery-section-1 .title-section h1 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #222;
    }

/* Image list layout */
    .gallery-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
    }

/* Each image item */
    .gallery-list li {
    flex: 1 1 45%;
    max-width: 500px;
    }

/* Image styling */
    .gallery-list img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4); /* soft gold shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

/* Hover effect */
    .gallery-list img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.6); /* brighter glow on hover */
    }

/* Responsive behavior */
    @media (max-width: 768px) {
    .gallery-list li {
        flex: 1 1 100%;
    }

    .gallery-section-1 .title-section h1 {
        font-size: 1.6rem;
    }
}

    /* --- Loader Styles - Loading --- */
    #loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #a97450, #704214); /* rich wood tone */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    }

    /* Hidden state when page is loaded */
    #loader.hidden {
    opacity: 0;
    visibility: hidden;
    }

    /* Tree image pulsing animation */
    .loader-tree {
    width: 120px;
    height: auto;
    animation: pulseTree 1.8s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4)); /* subtle gold glow */
    }

    /* Pulse effect */
    @keyframes pulseTree {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.85;
    }
    }