:root {
    --primary-dark: #0f172a; /* Dark Blue */
    --accent-gold: #d4af37; /* Gold accent */
    --text-white: #f8fafc;
    --glass-bg: rgba(15, 23, 42, 0.4);
    --glass-border: rgba(255, 255, 255, 0.15);
}

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

body {
    font-family: 'Outfit', sans-serif;
   
}

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

.text-gold {
    color: var(--accent-gold);
    background: linear-gradient(135deg, #d4af37 0%, #ffdf73 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Slider */
.hero-slider {
    width: 100%;
    height: 550px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-slider {
        height: 100vh; /* Full screen on mobile */
        min-height: 500px;
    }
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background Image with Zoom Animation */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1);
    transition: transform 8s ease; /* Smooth zoom transition */
}

/* Zoom effect when slide is active */
.swiper-slide-active .slide-bg {
    transform: scale(1.1);
}

/* Dark Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.3) 100%);
    z-index: 2;
}

/* Animated Floating Shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 3;
    animation: float 8s infinite ease-in-out alternate;
}

.shape-1 {
    width: 350px;
    height: 350px;
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 250px;
    height: 250px;
    bottom: -80px;
    right: 5%;
    animation-delay: 2s;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(15, 23, 42, 0.2));
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-40px) rotate(20deg); }
}

/* Content & Glass Card */
.slide-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.glass-card {
    max-width: 650px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease 0.4s;
}

.swiper-slide-active .glass-card {
    opacity: 1;
    transform: translateY(0);
}

.slide-title {
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: 1.2rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.02em;
}

.slide-subtitle {
    font-size: 1.3rem;
    color: #e2e8f0;
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.5;
}

/* Primary Button */
.btn {
    display: inline-block;
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-primary:hover {
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
    transform: translateY(-3px);
}

.btn-primary:hover::before {
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .glass-card {
        padding: 2.5rem;
        max-width: 550px;
    }
    
    .slide-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .glass-card {
        padding: 2rem;
        border-radius: 20px;
        text-align: center;
        margin: 0 15px;
        background: rgba(15, 23, 42, 0.6);
    }
    
    .slide-title {
        font-size: 2.4rem;
    }
    
    .slide-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .overlay {
        background: linear-gradient(180deg, rgba(15, 23, 42, 0.5) 0%, rgba(15, 23, 42, 0.9) 100%);
    }

    .shape-1 {
        width: 200px;
        height: 200px;
        top: -50px;
    }
}

/* Swiper Controls Customization */
.swiper-button-next,
.swiper-button-prev {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-color: var(--accent-gold);
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: 800;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--text-white);
    opacity: 0.4;
    transition: all 0.3s ease;
    margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
    width: 35px;
    border-radius: 6px;
    background: var(--accent-gold);
    opacity: 1;
}

/* Hide navigation arrows on small screens */
@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}
