:root {
    --primary-pink: #fdf5f5;
    --accent-gold: #b38b4d;
    --dark-brown: #3d3028;
    --white: #ffffff;
    --nude: #f4ece6;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; background: var(--nude); color: var(--dark-brown); line-height: 1.6; }
h1, h2, h3, .logo { font-family: 'Playfair Display', serif; }

/* Navbar */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.2rem 8%; background: var(--white);
    position: fixed; width: 100%; top: 0; z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}
.logo { font-size: 1.6rem; color: var(--accent-gold); letter-spacing: 3px; }
.nav-links { display: flex; list-style: none; }
.nav-links a { text-decoration: none; color: var(--dark-brown); margin-left: 2rem; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; }
.nav-links a:hover { color: var(--accent-gold); }

/* Hero */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1526045431048-f857369aba09?auto=format&fit=crop&q=80&w=1600') center/cover;
    display: flex; align-items: center; justify-content: center; text-align: center; color: white;
}
.pre-title { text-transform: uppercase; letter-spacing: 5px; font-size: 0.8rem; margin-bottom: 10px; display: block; }
.hero h1 { font-size: clamp(2rem, 5vw, 4rem); margin-bottom: 15px; }
.hero h1 span { font-style: italic; color: var(--nude); }

/* Buttons */
.btn { padding: 14px 35px; border-radius: 0; text-decoration: none; display: inline-block; transition: 0.4s; font-size: 0.9rem; letter-spacing: 1px; margin: 10px; cursor: pointer; }
.primary { background: var(--accent-gold); color: white; border: 1px solid var(--accent-gold); }
.primary:hover { background: transparent; color: white; }
.secondary { border: 1px solid white; color: white; }
.secondary:hover { background: white; color: var(--dark-brown); }

/* Services */
.section { padding: 80px 8%; }
.section-title { text-align: center; margin-bottom: 50px; font-size: 2.5rem; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.service-card { background: white; transition: 0.3s; border: 1px solid #eee; }
.service-card:hover { transform: translateY(-10px); }
.service-img { height: 350px; background-size: cover; background-position: center; }
.service-card h3 { padding: 20px 20px 10px; color: var(--accent-gold); }
.service-card p { padding: 0 20px 20px; font-size: 0.9rem; }

/* Gallery */
.gallery-bg { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; }
.gallery-item { position: relative; height: 400px; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.overlay { position: absolute; bottom: 0; left: 0; width: 100%; background: rgba(179, 139, 77, 0.8); color: white; padding: 15px; transform: translateY(100%); transition: 0.4s; text-align: center; }
.gallery-item:hover .overlay { transform: translateY(0); }
.gallery-item:hover img { transform: scale(1.1); }

/* Booking Section */
.booking-container { display: grid; grid-template-columns: 1fr 1fr; background: var(--white); box-shadow: 0 10px 40px rgba(0,0,0,0.05); }
.booking-info { padding: 50px; background: var(--dark-brown); color: white; }
.booking-form { padding: 50px; display: flex; flex-direction: column; gap: 15px; }
.booking-form input, .booking-form select { padding: 12px; border: 1px solid #ddd; outline: none; }

/* Footer */
.main-footer { background: #1a1a1a; color: #ccc; padding: 60px 8% 20px; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 40px; }
.footer-column h4 { color: var(--white); margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 10px; }
.footer-column ul a { color: #ccc; text-decoration: none; transition: 0.3s; }
.footer-column ul a:hover { color: var(--accent-gold); padding-left: 5px; }
.footer-bottom { text-align: center; border-top: 1px solid #333; padding-top: 20px; font-size: 0.8rem; }

/* WhatsApp */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: #25d366; color: white; padding: 12px 25px; border-radius: 50px; display: flex; align-items: center; text-decoration: none; z-index: 1001; gap: 10px; font-weight: 500; box-shadow: 0 5px 20px rgba(0,0,0,0.2); }
.whatsapp-float img { width: 25px; filter: brightness(0) invert(1); }

@media (max-width: 768px) {
    .booking-container { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .footer-content { grid-template-columns: 1fr; }
}
/* Pricing Section Styling */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.price-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #f0e6e6;
    transition: 0.3s;
    position: relative;
}

.price-card.featured {
    border: 2px solid var(--accent-gold);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--accent-gold);
    color: white;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.price-card h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.price-card .price {
    font-size: 2.2rem;
    color: var(--accent-gold);
    font-weight: bold;
    margin-bottom: 25px;
}

.price-card ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.price-card ul li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 0.9rem;
}

.price-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}
/* Hero Section Revised */
.hero {
    height: 100vh;
    /* This image features a relevant Pakistani/South Asian bridal look */
    background: url('https://images.unsplash.com/photo-1595476108010-b4d1f102b1b1?auto=format&fit=crop&q=80&w=1920') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Dark overlay to make the white text pop against the detailed bridal image */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Adjust transparency as needed */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    /* Optional: glassmorphism effect for a premium feel */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-weight: 300;
}
