/* Color Palette & Variables */
:root {
--gold: #D4AF37;
--gold-light: #F9E596;
--pastel-blue: #AEC6CF;
--pastel-pink: #FFD1DC;
--white: #FFFFFF;
--off-white: #FAFAFA;
--text-dark: #333333;
--text-light: #666666;
--shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
--transition: all 0.3s ease;
}

/* Base Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
}

body {
font-family: 'Poppins', sans-serif;
color: var(--text-dark);
background-color: var(--off-white);
line-height: 1.6;
}

h1, h2, h3, h4, .logo, .emotional-touch {
font-family: 'Playfair Display', serif;
}

a {
text-decoration: none;
color: inherit;
}

ul {
list-style: none;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.section-padding {
padding: 80px 0;
}

.bg-light {
background-color: var(--white);
}

.section-title {
text-align: center;
font-size: 2.5rem;
margin-bottom: 40px;
color: var(--text-dark);
}

.section-title::after {
content: '';
display: block;
width: 60px;
height: 3px;
background: var(--gold);
margin: 10px auto 0;
}

/* Buttons */
.btn {
display: inline-block;
padding: 12px 30px;
border-radius: 30px;
font-weight: 500;
cursor: pointer;
transition: var(--transition);
border: none;
}

.btn-primary {
background: linear-gradient(135deg, var(--gold), #B8860B);
color: var(--white);
box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
background: var(--pastel-blue);
color: var(--white);
}

.btn-secondary:hover {
background: #9ab4bd;
}

/* Header */
header {
position: fixed;
top: 0;
width: 100%;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
z-index: 1000;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
transition: var(--transition);
}

.nav-wrapper {
display: flex;
justify-content: space-between;
align-items: center;
height: 80px;
}

.logo {
font-size: 1.8rem;
font-weight: 700;
color: var(--text-dark);
}

.logo span {
color: var(--gold);
font-size: 1.2rem;
font-family: 'Poppins', sans-serif;
font-weight: 300;
}

.nav-links {
display: flex;
gap: 30px;
}

.nav-links a {
font-weight: 500;
transition: var(--transition);
}

.nav-links a:hover {
color: var(--gold);
}

.mobile-toggle {
display: none;
font-size: 1.5rem;
background: none;
border: none;
cursor: pointer;
}

/* Hero Section */
.hero {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;

/* Yaha background image aur ek dark overlay add kiya hai */
background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('banner.jpeg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;

padding-top: 80px;
}

/* Background dark hone ki wajah se text ko white kiya gaya hai */
.hero h1 {
font-size: 3.5rem;
margin-bottom: 20px;
color: var(--white); /* White color */
}

.hero p {
font-size: 1.2rem;
color: var(--off-white); /* Light white color */
margin-bottom: 30px;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}

/* Features Grid */
.features {
background: var(--white);
padding: 40px 0;
margin-top: -50px;
position: relative;
z-index: 10;
}

.feature-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
text-align: center;
}

.feature-card {
padding: 20px;
background: var(--off-white);
border-radius: 15px;
box-shadow: var(--shadow);
}

.feature-card h3 {
color: var(--gold);
margin-bottom: 10px;
font-family: 'Poppins', sans-serif;
font-size: 1.1rem;
}

/* Product Cards */
.product-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.product-card {
background: var(--white);
border-radius: 20px;
overflow: hidden;
box-shadow: var(--shadow);
transition: var(--transition);
}

.product-card:hover {
transform: translateY(-10px);
}

.product-card img {
width: 100%;
height: 250px;
object-fit: cover;
}

.product-info {
padding: 20px;
text-align: center;
}

.product-info h3 {
margin-bottom: 10px;
}

.product-info p {
color: var(--text-light);
font-size: 0.9rem;
margin-bottom: 15px;
}

/* Gallery */
.gallery-filters {
display: flex;
justify-content: center;
gap: 15px;
margin-bottom: 30px;
flex-wrap: wrap;
}

.filter-btn {
padding: 8px 20px;
border: 2px solid var(--pastel-blue);
background: transparent;
border-radius: 20px;
cursor: pointer;
transition: var(--transition);
font-family: 'Poppins', sans-serif;
}

.filter-btn.active, .filter-btn:hover {
background: var(--pastel-blue);
color: var(--white);
}

.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 15px;
}

.gallery-item {
border-radius: 15px;
overflow: hidden;
cursor: pointer;
height: 250px;
}

.gallery-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.gallery-item:hover img {
transform: scale(1.1);
}

/* About Section */
.about-wrapper {
display: flex;
align-items: center;
gap: 50px;
}

.about-text, .about-image {
flex: 1;
}

.emotional-touch {
color: var(--pastel-pink);
font-size: 1.8rem;
margin: 20px 0;
font-style: italic;
}

.about-image img {
width: 100%;
border-radius: 20px;
box-shadow: var(--shadow);
}

/* Testimonials */
.testimonial-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}

.testimonial-card {
background: var(--off-white);
padding: 30px;
border-radius: 15px;
border-left: 5px solid var(--gold);
font-style: italic;
}

.testimonial-card h4 {
margin-top: 15px;
text-align: right;
color: var(--gold);
}

/* Contact Form */
.contact-wrapper {
display: flex;
gap: 50px;
background: var(--white);
padding: 40px;
border-radius: 20px;
box-shadow: var(--shadow);
}

.contact-info, .contact-form {
flex: 1;
}

.contact-info a {
color: var(--pastel-blue);
font-weight: 500;
}

.contact-form {
display: flex;
flex-direction: column;
gap: 15px;
}

.contact-form input, .contact-form textarea {
padding: 15px;
border: 1px solid #ddd;
border-radius: 10px;
font-family: 'Poppins', sans-serif;
outline: none;
transition: var(--transition);
}

.contact-form input:focus, .contact-form textarea:focus {
border-color: var(--pastel-blue);
}

/* Footer */
footer {
background: var(--text-dark);
color: var(--white);
padding: 60px 0 20px;
}

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 40px;
margin-bottom: 40px;
}

.footer-brand h3 {
color: var(--gold);
margin-bottom: 10px;
}

.footer-links ul li {
margin-bottom: 10px;
}

.footer-links a:hover, .social-link:hover {
color: var(--pastel-pink);
}

.footer-bottom {
text-align: center;
border-top: 1px solid rgba(255,255,255,0.1);
padding-top: 20px;
font-size: 0.9rem;
}

/* Floating Actions */
.floating-wa {
position: fixed;
bottom: 30px;
left: 30px;
background: #25D366;
border-radius: 50%;
width: 60px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
z-index: 100;
transition: var(--transition);
}

.floating-wa:hover {
transform: scale(1.1);
}

#scrollTopBtn {
position: fixed;
bottom: 30px;
right: 30px;
background: var(--gold);
color: white;
border: none;
width: 45px;
height: 45px;
border-radius: 50%;
font-size: 1.2rem;
cursor: pointer;
opacity: 0;
visibility: hidden;
transition: var(--transition);
z-index: 99;
box-shadow: var(--shadow);
}

#scrollTopBtn.show {
opacity: 1;
visibility: visible;
}

/* Modals */
.modal, .lightbox {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.8);
z-index: 2000;
justify-content: center;
align-items: center;
}

.modal-content {
background: var(--white);
padding: 30px;
border-radius: 20px;
max-width: 500px;
width: 90%;
text-align: center;
position: relative;
animation: fadeIn 0.3s;
}

.modal-content img {
width: 100%;
border-radius: 15px;
margin-bottom: 20px;
}

.close-modal, .close-lightbox {
position: absolute;
top: 15px;
right: 20px;
font-size: 1.5rem;
cursor: pointer;
color: var(--text-dark);
}

.close-lightbox {
color: var(--white);
top: 30px;
right: 40px;
font-size: 2.5rem;
}

.lightbox-content {
max-width: 90%;
max-height: 90%;
border-radius: 10px;
animation: fadeIn 0.3s;
}

/* Animations */
@keyframes fadeIn {
from { opacity: 0; transform: scale(0.9); }
to { opacity: 1; transform: scale(1); }
}

.fade-in {
animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
.nav-links {
display: none;
flex-direction: column;
position: absolute;
top: 80px;
left: 0;
width: 100%;
background: var(--white);
padding: 20px;
box-shadow: 0 10px 10px rgba(0,0,0,0.05);
}

.nav-links.active {
display: flex;
}

.mobile-toggle {
display: block;
}

.hero h1 {
font-size: 2.5rem;
}

.about-wrapper, .contact-wrapper {
flex-direction: column;
}
}