:root {
    --primary-font: 'Raleway', sans-serif;
    --secondary-font: 'Playfair Display', serif;
}

body {
    font-family: var(--primary-font);
    line-height: 1.6;
}

.navbar {
    background-color: transparent;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar .navbar-brand,
.navbar .nav-link {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.navbar .nav-link:hover {
    color: #fff;
}

.navbar.scrolled {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar.scrolled .navbar-brand,
.navbar.scrolled .nav-link {
    color: #333;
}

.navbar.scrolled .nav-link:hover {
    color: #000;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar.scrolled .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-brand {
    font-family: var(--primary-font);
    font-size: 1.25rem;
    font-weight: 700;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-perspective: 1000;
    perspective: 1000;
}

/* Overlay on hero image */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 500px;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--secondary-font);
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-family: var(--primary-font);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.hero-section .parallax-bg {
    position: absolute;
    height: 100%;
    width: 100%;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem; /* Smaller font on mobile */
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

.section {
    padding: 3rem 0;
}

.section-title {
    font-family: var(--secondary-font);
    margin-bottom: 2rem;
    text-align: center;
}

/* Updated Parallax Sections */
.parallax-section {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transform: translate3d(0,0,0);
    -webkit-transform: translate3d(0,0,0);
    perspective: 1000;
    -webkit-perspective: 1000;
}
.parallax-section-first {
    height: 60vh;
}

.parallax-section-second {
    height: 40vh;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    will-change: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    height: 180%;
}

@media (max-width: 768px) {
    .parallax-section {
        min-height: 300px;
    }
    .parallax-section-first {
        height: 45vh;
    }
    .parallax-bg {
        height: 140%;
    }
}

.event-card {
    text-align: center;
    padding: 2rem;
}

.btn-custom {
    background-color: transparent;
    border: 2px solid #333;
    color: #333;
    padding: 0.75rem 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: #333;
    color: white;
}

footer {
    background-color: #f8f9fa;
    padding: 2rem 0;
    text-align: center;
}