/* --- CSS Variables & Reset --- */
:root {
--primary-gold: #d4af37;
--primary-gold-hover: #b59020;
--bg-dark: #0f0f0f;
--bg-card: #1a1a1a;
--text-light: #f5f5f5;
--text-gray: #a0a0a0;
--font-heading: 'Playfair Display', serif;
--font-body: 'Poppins', sans-serif;
--transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
font-family: var(--font-body);
background-color: #000;
color: var(--text-light);
line-height: 1.6;
overflow-x: hidden;
}

a { text-decoration: none; color: #ffd400; transition: var(--transition); }
ul { list-style: none; color: #fff; }
img { max-width: 100%; display: block; }

/* --- Utility Classes --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.btn {
display: inline-block;
padding: 12px 30px;
background: linear-gradient(45deg, var(--primary-gold), #f3d06b);
color: #000;
font-weight: 600;
border-radius: 50px;
text-transform: uppercase;
font-size: 0.9rem;
letter-spacing: 1px;
border: none;
cursor: pointer;
box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5); }

/* --- Header Options Styles --- */
.header-option-centered { text-align: center; margin-bottom: 40px; max-width: 800px; margin-left: auto; margin-right: auto; }
.header-option-centered .icon-box { font-size: 2rem; color: var(--primary-gold); margin-bottom: 15px; }
.header-option-centered h2 { font-family: var(--font-heading); font-size: 2.5rem; color: var(--text-light); margin-bottom: 15px; line-height: 1.2; }
.header-option-centered p { color: var(--text-gray); font-size: 1rem; line-height: 1.6; }

.header-option-left { margin-bottom: 40px; border-left: 4px solid var(--primary-gold); padding-left: 20px; }
.header-option-left .badge { display: inline-block; background: rgba(212, 175, 55, 0.1); color: var(--primary-gold); padding: 5px 12px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; border-radius: 4px; }
.header-option-left h2 { font-family: var(--font-heading); font-size: 2.2rem; color: var(--text-light); margin-bottom: 15px; }
.header-option-left p { color: var(--text-gray); max-width: 600px; }

/* --- Header / Navigation --- */
header {
position: fixed; top: 0; left: 0; width: 100%;
background-color: rgb(233 21 115);
padding: 15px 0; z-index: 1000;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
}
nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: #ffff00; letter-spacing: 2px; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--text-light); position: relative; }
.nav-links a:hover, .nav-links a.active { color: #f1c538; }
.nav-links a::after { content: ''; position: absolute; width: 0; height: 2px; background: var(--primary-gold); bottom: -5px; left: 0; transition: var(--transition); }
.nav-links a:hover::after { width: 100%; }
.mobile-menu-btn { display: none; font-size: 1.5rem; color: var(--text-light); cursor: pointer; }

/* --- home Section --- */
#home {
height: 100vh;
background: url('../images/banner.webp') center/cover no-repeat;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
position: relative;
}


}
.home-content h1 { font-family: var(--font-heading); font-size: 4rem; color: var(--text-light); margin-bottom: 20px; animation: fadeInDown 1s ease; }
.home-content span { color: var(--primary-gold); font-style: italic; }
.home-content p { font-size: 1.2rem; color: #ddd; margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto; animation: fadeInUp 1s ease 0.3s forwards; opacity: 0; }
.home-btn-wrapper { opacity: 0; animation: fadeInUp 1s ease 0.6s forwards; }

/* --- Features Section (Updated with Image Grid) --- */
#features { padding: 50px 0; background-color: var(--bg-dark); }

/* New Image Strip CSS */
.features-image-strip {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 15px;
}
.strip-img-box {
height: auto;
overflow: hidden;
border-radius: 8px;
position: relative;
cursor: pointer;
}
.strip-img-box img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
.strip-img-box:hover img { transform: scale(1.1); }
.strip-overlay {
position: absolute; top: 0; left: 0; width: 100%; height: 100%;
transition: 0.3s;
}
.strip-img-box:hover .strip-overlay { background: rgba(0,0,0,0.1); }

/* Existing Features Grid CSS */
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.feature-card {
background-color: var(--bg-card);
padding: 40px;
text-align: center;
border-radius: 10px;
border: 1px solid rgba(255,255,255,0.05);
transition: var(--transition);
}
.feature-card:hover { transform: translateY(-10px); border-color: var(--primary-gold); }
.feature-icon { font-size: 2.5rem; color: #ffdc6b; margin-bottom: 20px; }
.feature-card h3 { margin-bottom: 15px; font-family: var(--font-heading); }
.feature-card p { color: #fff; font-size: 0.9rem; }

/* --- About Section (Updated for Long Text) --- */
#about { padding: 50px 0; background-color: #0f0f0f; }
.about-wrapper { display: flex; align-items: flex-start; gap: 50px; max-width: 1200px; margin: 0 auto; }
.about-text-content { flex: 2; color: rgb(253 79 165);}
.about-text-content h2 { font-family: var(--font-heading); font-size: 28px; color: rgb(253 79 165); margin-bottom: 25px; line-height: 1.2; }
.about-text-content p { color: #fff; font-size: 1rem; line-height: 1.8; margin-bottom: 20px; text-align: justify; }
.about-image { flex: 1; position: sticky; top: 100px; }
.about-image img { width: 100%; border-radius: 10px; box-shadow: 0 20px 40px rgba(0,0,0,0.5); border: 1px solid var(--primary-gold); }

/* --- Gallery Section (Updated for 6 Profiles) --- */
#gallery { padding: 80px 0; background-color: #141414; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; }
.profile-card {
background-color: var(--bg-card); border-radius: 15px; overflow: hidden;
transition: var(--transition); border: 1px solid rgba(255,255,255,0.05);
display: flex; flex-direction: column;
}
.profile-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.5); border-color: var(--primary-gold); }
.profile-image { width: 100%; height: auto; position: relative; overflow: hidden; }
.profile-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.profile-card:hover .profile-image img { transform: scale(1.1); }
.profile-info { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; }
.profile-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; }
.profile-name { font-family: var(--font-heading); font-size: 1.4rem; color: var(--text-light); }
.profile-age { background-color: var(--primary-gold); color: #000; padding: 2px 8px; border-radius: 4px; font-weight: 600; font-size: 0.85rem; }
.profile-desc { color: var(--text-gray); font-size: 0.9rem; line-height: 1.5; margin-bottom: 20px; flex-grow: 1; }

/* --- Services Section --- */
#services { background-color: #000; padding: 80px 0; }
.services-wrapper { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.service-tag { background: #1a1a1a; padding: 20px 40px; border: 1px solid #333; border-radius: 5px; color: #ccc; transition: 0.3s; }
.service-tag:hover { border-color: var(--primary-gold); color: var(--primary-gold); }
/* --- Gallery Bottom Content Styles --- */
.gallery-bottom-content {
    margin-top: 50px;
    padding: 30px;
    background: rgba(212, 175, 55, 0.05);
    border-left: 4px solid var(--primary-gold);
    border-radius: 0 10px 10px 0;
}

.gallery-bottom-content h3 {
    font-family: var(--font-heading);
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.gallery-bottom-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- Rates Section Styles --- */
#rates {
    padding: 80px 0;
    background-color: #0f0f0f;
    position: relative;
}

.rates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.rate-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.rate-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Highlight the Middle Card */
.rate-card.popular {
    border: 2px solid var(--primary-gold);
    background: linear-gradient(180deg, #1f1f1f 0%, #151515 100%);
}

.rate-card.popular::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--primary-gold);
    color: #000;
    padding: 5px 30px;
    font-size: 0.7rem;
    font-weight: 700;
    transform: rotate(45deg);
}

.plan-name {
    font-size: 1.2rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffff00;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.price span {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 400;
}

.rate-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.rate-features li {
    margin-bottom: 12px;
    color: #ccc;
    display: flex;
    align-items: center;
}

.rate-features li i {
    color: var(--primary-gold);
    margin-right: 10px;
}

.rate-features li.disabled {
    color: #555;
    text-decoration: line-through;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .rates-grid { grid-template-columns: 1fr; }
    .price { font-size: 2rem; }
}

/* --- Contact Section --- */
#contact {
padding: 80px 0; background-color: #000; text-align: center;
background-image: url('https://picsum.photos/seed/redvelvet/1920/600.jpg');
background-blend-mode: overlay; background-size: cover; background-attachment: fixed;
}
.contact-box {
background: rgba(0,0,0,0.8); padding: 50px; border-radius: 20px; max-width: 800px;
margin: 0 auto; border: 1px solid var(--primary-gold);
}
.contact-box h2 { font-family: var(--font-heading); font-size: 2.5rem; color: var(--primary-gold); margin-bottom: 20px; }
.contact-number { font-size: 2rem; font-weight: 700; color: #fff; margin: 20px 0; display: block; }

/* --- Footer --- */
footer { background-color: #0a0a0a; padding: 50px 0 20px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.9rem; color: var(--text-gray); }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h4 { color: var(--text-light); margin-bottom: 20px; font-family: var(--font-heading); font-size: 1.2rem; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a:hover { color: var(--primary-gold); }
.copyright { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); }

/* --- Animations --- */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* --- Responsive Queries --- */
@media (max-width: 992px) {
.home-content h1 { font-size: 3rem; }
.about-wrapper { flex-direction: column; }
.about-image img { box-shadow: 0 10px 0 var(--primary-gold); margin-bottom: 30px; }
.features-image-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
.mobile-menu-btn { display: block; }
.nav-links {
position: absolute; top: 70px; left: 0; width: 100%; background-color: #1a1a1a;
flex-direction: column; padding: 20px; text-align: center; transform: translateY(-150%);
transition: var(--transition); border-bottom: 1px solid var(--primary-gold);
}
.nav-links.active { transform: translateY(0); }
.home-content h1 { font-size: 2.2rem; }
.section-title h2 { font-size: 2rem; }
.contact-box { padding: 30px 20px; }
.contact-number { font-size: 1.5rem; }
.gallery-grid { grid-template-columns: 1fr; }
.features-image-strip { grid-template-columns: 1fr; } /* Stack images on mobile */
}
