/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
    transition: background 0.5s ease;
}

/* Gallery Preloader */
.gallery-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.gallery-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
    transition: filter 0.5s ease;
}

.slide.active img {
    filter: brightness(0.8) contrast(1.1);
}

.gallery-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    color: white;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-overlay h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5), 0 0 20px rgba(212, 175, 55, 0.3);
    letter-spacing: 2px;
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.5), 0 0 20px rgba(212, 175, 55, 0.3);
    }
    to {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.8), 0 0 30px rgba(212, 175, 55, 0.5);
    }
}

.gallery-overlay h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.gallery-overlay p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #cccccc;
}

#start-btn {
    background: linear-gradient(45deg, #d4af37, #b8922e);
    color: #000;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(212, 175, 55, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.7);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(212, 175, 55, 0.7);
    }
}

#start-btn:hover {
    background: linear-gradient(45deg, #b8922e, #d4af37);
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(0,0,0,0.8);
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    transition: background 0.3s ease;
}

header:hover {
    background: rgba(0,0,0,0.95);
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
    color: #d4af37;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
    transition: text-shadow 0.3s ease;
}

.logo h1:hover {
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

.logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.logo h2:hover {
    color: #d4af37;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

nav ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

nav ul li a:hover::before {
    width: 100%;
}

nav ul li a:hover {
    color: #d4af37;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 5rem 2rem;
    position: relative;
    margin-top: 20px;
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5), 0 0 10px rgba(212, 175, 55, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #cccccc;
}

.btn {
    display: inline-block;
    background: linear-gradient(45deg, #d4af37, #b8922e);
    color: #000;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    animation: pulse 2s infinite;
}

.btn:hover {
    background: linear-gradient(45deg, #b8922e, #d4af37);
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

/* Packages Section */
.packages {
    padding: 4rem 5%;
    background: #111;
    position: relative;
}

.packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.5));
    z-index: -1;
}

.packages h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
    position: relative;
}

.packages h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #d4af37;
    border-radius: 3px;
}

.package-card {
    background: linear-gradient(145deg, #1a1a1a, #222);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #444;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.8s ease;
}

.package-card:hover::before {
    left: 100%;
}

.package-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
    z-index: 1;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #d4af37;
    position: relative;
}

.package-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, transparent);
}

.package-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #d4af37;
    text-shadow: 0 0 3px rgba(212, 175, 55, 0.5);
    position: relative;
    z-index: 1;
}

.package-header h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #d4af37;
    border-radius: 2px;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(45deg, #333, #444);
    padding: 5px 15px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.price:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.package-body ul {
    list-style: none;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.package-body ul::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: #d4af37;
    border-radius: 3px;
}

.package-body ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    color: #cccccc;
    transition: color 0.3s ease;
    position: relative;
}

.package-body ul li:hover {
    color: #ffffff;
    padding-left: 2rem;
}

.package-body ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
    transition: color 0.3s ease;
}

.package-body ul li:hover::before {
    color: #ffffff;
    transform: scale(1.2);
}

.package-body p {
    margin-bottom: 1rem;
    color: #ffffff;
}

.package-contact {
    background: linear-gradient(145deg, #2a2a2a, #333);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    border-left: 4px solid #d4af37;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.package-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.1);
}

.package-contact h4 {
    margin-bottom: 1rem;
    color: #d4af37;
    font-weight: 600;
    position: relative;
}

.package-contact h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #d4af37;
    border-radius: 2px;
}

.contact-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-icons a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 15px;
    background: linear-gradient(45deg, #333, #444);
    color: #ffffff;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.contact-icons a:hover {
    background: linear-gradient(45deg, #d4af37, #b8922e);
    color: #000;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.contact-icons i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.contact-icons a:hover i {
    transform: scale(1.2) rotate(10deg);
}

/* Contact Section */
.contact {
    padding: 4rem 5%;
    background: #111;
    text-align: center;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.5));
    z-index: -1;
}

.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
    position: relative;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #d4af37;
    border-radius: 3px;
}

.contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    background: linear-gradient(145deg, #1a1a1a, #222);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    width: 280
    px;
    transition: transform 0.3s ease;
}