/* --- RESET & FOUNDATION --- */
:root {
    --gold: #C5A059;
    --black: #111111;
    --dark-grey: #1a1a1a;
    --white: #ffffff;
    --cream: #f4f4f4;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; background: var(--white); color: var(--black); line-height: 1.6; }

/* --- NAVIGATION --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 8%;
    background: var(--black);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--gold);
}
.logo { font-family: 'Playfair Display', serif; color: var(--white); font-size: 1.6rem; letter-spacing: 2px; }
.logo span { color: var(--gold); }

.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a { text-decoration: none; color: var(--white); font-size: 0.9rem; transition: 0.3s; text-transform: uppercase; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

/* --- HAMBURGER --- */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 25px; height: 3px; background: var(--gold); transition: 0.3s; }

/* --- LOGO & STAR STYLING --- */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px; /* Space between star and text */
}

.star-icon {
    width: 28px; /* Size of the star */
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.star-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 5px rgba(197, 160, 89, 0.8)); /* Outer Glow */
    animation: starPulse 3s infinite ease-in-out, starRotate 10s infinite linear;
}

/* THE SHINE EFFECT */
.star-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 2px;
    background: white;
    box-shadow: 0 0 15px 5px white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: shineFlash 4s infinite;
    opacity: 0;
}

/* --- ANIMATIONS --- */

/* 1. Subtle pulsing glow */
@keyframes starPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 5px rgba(197, 160, 89, 0.8)); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 12px rgba(197, 160, 89, 1)); }
}

/* 2. Very slow rotation for elegance */
@keyframes starRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 3. A quick 'sparkle' flash every few seconds */
@keyframes shineFlash {
    0%, 80% { opacity: 0; scale: 0; }
    85% { opacity: 1; scale: 1.5; }
    90% { opacity: 0; scale: 0; }
}

/* --- HERO --- */


/* --- HERO SECTION WITH ANIMATION --- */
.hero {
    height: 85vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('images/887ElTcDNkJCAwXiLymvFMgRi0p.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    overflow: hidden; /* Prevents scrollbars during animation */
}

/* This container holds the H1, P, and Button */
.hero-content {
    /* Name of animation | Duration | Speed Curve | Delay */
    animation: fadeInUp 1.5s ease-out forwards;
    opacity: 0; /* Start invisible */
}

.hero h1 { 
    font-family: 'Playfair Display', serif; 
    font-size: clamp(2.5rem, 8vw, 4.5rem); 
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-gold { 
    display: inline-block; 
    padding: 1rem 2.5rem; 
    background: var(--gold); 
    color: var(--white); 
    text-decoration: none; 
    font-weight: 600; 
    border-radius: 2px; 
    transition: 0.3s; 
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-gold:hover { 
    background: #b08e48; 
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* --- THE KEYFRAMES --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px); /* Start 50px lower */
    }
    to {
        opacity: 1;
        transform: translateY(0); /* End at original position */
    }
}
/* --- SECTIONS --- */
.section-title { text-align: center; margin: 4rem 0; font-family: 'Playfair Display', serif; font-size: 2.5rem; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; padding: 0 8%; }
.card { background: var(--cream); padding: 3rem; text-align: center; border-top: 4px solid var(--gold); transition: 0.3s; }
.card:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* --- TESTIMONIAL SLIDER --- */
.testimonials { background: var(--black); color: var(--white); padding: 6rem 5%; text-align: center; }
.slider-container { position: relative; max-width: 800px; margin: auto; }
.slide { display: none; padding: 20px; }
.slide.active { display: block; animation: fadeEffect 0.8s; }
.slide img { width: 100px; height: 100px; border-radius: 50%; border: 3px solid var(--gold); margin-bottom: 1.5rem; object-fit: cover; }
.slide p { font-style: italic; font-size: 1.2rem; margin-bottom: 1rem; color: #ccc; }
@keyframes fadeEffect { from { opacity: 0; } to { opacity: 1; } }

.slider-nav button { background: none; border: none; color: var(--gold); font-size: 2rem; cursor: pointer; position: absolute; top: 50%; }
#prevBtn { left: -50px; } #nextBtn { right: -50px; }

/* --- FOOTER --- */
footer { background: var(--black); color: #888; padding: 4rem 8% 1rem; border-top: 1px solid #333; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; margin-bottom: 3rem; }
.footer-info h3 { color: var(--gold); font-family: 'Playfair Display', serif; margin-bottom: 1rem; }
.footer-links h4, .footer-contact h4 { color: var(--white); margin-bottom: 1rem; }
.footer-links ul { list-style: none; }
.footer-links a { color: #888; text-decoration: none; display: block; margin-bottom: 0.5rem; }
.footer-bottom { text-align: center; font-size: 0.8rem; border-top: 1px solid #222; padding-top: 1rem; }

/* --- RESPONSIVE --- */
@media screen and (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links {
        position: fixed; top: 70px; right: -100%; width: 100%; height: 100vh;
        background: var(--black); flex-direction: column; align-items: center;
        padding-top: 4rem; transition: 0.5s;
    }
    .nav-links.active { right: 0; }
    #prevBtn { left: 0; } #nextBtn { right: 0; }
    .hamburger.toggle span:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
    .hamburger.toggle span:nth-child(2) { opacity: 0; }
    .hamburger.toggle span:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }
}

/* --- GALLERY PAGE STYLING --- */
.gallery-hero {
    text-align: center;
    padding: 80px 20px 40px;
    background: #fff;
}
.tagline { color: var(--gold); letter-spacing: 3px; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; }
.gallery-hero h1 { font-family: 'Playfair Display', serif; font-size: 3rem; margin: 10px 0; }
.gold-accent { width: 60px; height: 3px; background: var(--gold); margin: 0 auto; }

.gallery-container { padding: 0 5% 100px; }

/* STRICT 2-COLUMN GRID (MOBILE & TABLET) */
.strict-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* FORCES 2 COLUMNS */
    gap: 15px;
}

.gallery-card {
    position: relative;
    aspect-ratio: 1 / 1.2; /* Slightly taller than square for a premium look */
    background: #000;
    overflow: hidden;
    border-radius: 4px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
    opacity: 0.9;
}

/* CONTENT OVERLAY */
.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 10px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    text-align: center;
    transform: translateY(20px);
    transition: 0.4s ease;
}

.card-content h3 { color: #fff; font-size: 1rem; margin-bottom: 10px; font-weight: 400; }

/* SHOP BUTTON */
.shop-btn {
    display: inline-block;
    padding: 8px 15px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.shop-btn:hover { background: var(--gold); color: #fff; }

/* HOVER ANIMATION */
.gallery-card:hover img { transform: scale(1.1); opacity: 0.6; }
.gallery-card:hover .card-content { transform: translateY(0); }

/* PC STYLES (4 COLUMNS) */
@media screen and (min-width: 1024px) {
    .strict-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    .card-content h3 { font-size: 1.3rem; }
}

/* MOBILE FIX FOR VERY SMALL PHONES */
@media screen and (max-width: 400px) {
    .strict-grid { gap: 10px; }
    .card-content h3 { font-size: 0.8rem; }
    .shop-btn { padding: 5px 10px; font-size: 0.6rem; }
}


/* --- SERVICES PAGE STYLING --- */
.services-hero {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 100px 20px;
    border-bottom: 5px solid var(--gold);

     background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('https://img.freepik.com/premium-photo/abstract-stars-background-generative-ai_705708-9408.jpg') center/cover;
}

.services-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
}

.service-detail {
    padding: 80px 8%;
}

.service-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-image img {
    width: 100%;
    display: block;
    transition: 0.5s;
}

.service-text {
    flex: 1;
}

.service-num {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    opacity: 0.3;
    display: block;
}

.service-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 20px;
    position: relative;
}

.service-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gold);
}

.service-text p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.1rem;
}

.service-text ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-text ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-weight: 600;
}

.service-text ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* ZIG-ZAG REVERSE */
.reverse .service-container {
    flex-direction: row-reverse;
}

/* --- RESPONSIVE SERVICES --- */
@media screen and (max-width: 992px) {
    .service-container, .reverse .service-container {
        flex-direction: column;
        text-align: center;
    }
    
    .service-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .services-hero h1 {
        font-size: 2.5rem;
    }
}

/* --- ABOUT PAGE STYLING --- */
.about-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('https://img.freepik.com/premium-photo/abstract-stars-background-generative-ai_705708-9408.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.gold-text { color: var(--gold); text-transform: uppercase; letter-spacing: 4px; font-weight: 600; font-size: 0.9rem; }

.owner-section { padding: 100px 8%; background: #fff; }

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.owner-image { flex: 1; position: relative; }
/* Decorative Gold Frame */
.owner-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    z-index: 0;
}
.owner-image img { position: relative; width: 100%; z-index: 1; filter: grayscale(10%); display: block; }

.owner-text { flex: 1; }
.owner-text h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 20px; color: var(--black); }
.quote { font-style: italic; font-size: 1.3rem; color: var(--gold); margin-bottom: 20px; border-left: 3px solid var(--gold); padding-left: 20px; line-height: 1.4; }
.signature { display: block; margin-top: 30px; font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--gold); }

/* PHILOSOPHY SECTION */
.philosophy-section { background: var(--black); color: #fff; padding: 80px 8%; text-align: center; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 40px; }
.value-item .icon { font-size: 2.5rem; display: block; margin-bottom: 15px; }
.value-item h4 { color: var(--gold); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.value-item p { color: #ccc; font-size: 0.95rem; }

/* TEAM SECTION */
.team-section { padding: 100px 8%; text-align: center; background: #fdfdfd; }
.section-title { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 10px; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 50px; }
.team-member { background: #fff; border: 1px solid #eee; padding: 20px; transition: 0.4s ease; }
.team-member:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,0.05); }
.member-img { overflow: hidden; margin-bottom: 20px; }
.member-img img { width: 100%; transition: 0.5s; filter: brightness(90%); }
.team-member:hover .member-img img { transform: scale(1.05); filter: brightness(100%); }
.member-info h4 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 5px; }
.member-info span { color: var(--gold); font-size: 0.85rem; font-weight: 600; display: block; margin-bottom: 15px; text-transform: uppercase; }

/* --- RESPONSIVE MOBILE ADJUSTMENTS --- */
@media screen and (max-width: 992px) {
    .about-container { flex-direction: column; text-align: center; }
    .owner-image::before { display: none; } /* Simpler look for mobile */
    .quote { border-left: none; border-top: 2px solid var(--gold); padding: 20px 0; margin-top: 20px; }
    .values-grid { grid-template-columns: 1fr; }
    .about-hero { height: 40vh; }
}

/* --- CONTACT PAGE STYLING --- */
.contact-page { background: #f9f9f9; padding-bottom: 100px; }

.contact-hero {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 100px 20px;
     background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('https://img.freepik.com/premium-photo/abstract-stars-background-generative-ai_705708-9408.jpg') center/cover;
}

.contact-hero h1 { font-family: 'Playfair Display', serif; font-size: 3rem; margin-bottom: 10px; }

.contact-container {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: -50px auto 0;
    padding: 0 20px;
}

/* LUXURY FORM */
.contact-form-wrapper {
    flex: 1.5;
    background: #fff;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    border-radius: 8px;
    border-style: dotted;
    border: 2px solid var(--gold);
}


.luxury-form {
    border: 2px solid var(--gold);
}
.luxury-form .form-group { margin-bottom: 25px; }

.luxury-form label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #444;
}

.luxury-form input, 
.luxury-form select, 
.luxury-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    background: #fdfdfd;
    font-family: 'Poppins', sans-serif;
    transition: 0.3s;
}

.luxury-form input:focus { border-color: var(--gold); outline: none; background: #fff; }

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--black);
    color: var(--gold);
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.4s;
}

.submit-btn:hover { background: var(--gold); color: var(--white); }

/* INFO & MAP */
.contact-info-wrapper { flex: 1; }

.info-card {
    background: var(--black);
    color: #fff;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
}

.info-card h3 { color: var(--gold); font-family: 'Playfair Display', serif; margin-bottom: 20px; }

.map-box {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* --- RESPONSIVE CONTACT --- */
@media screen and (max-width: 992px) {
    .contact-container { flex-direction: column; margin-top: 20px; }
    .contact-hero h1 { font-size: 2.2rem; }
}

/* --- FEATURED SAMPLES SECTION --- */
.featured-samples {
    padding: 80px 8%;
    background: var(--white);
}


.section-subtitle {
    text-align: center;
    /* Changed from -3.5rem to -4.5rem to pull it higher up toward the H2 */
    margin-top: -5.5rem; 
    /* Reduced from 4rem to 3rem to bring the photos below a bit closer */
    margin-bottom: 3rem; 
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    display: block; /* Ensures it respects the margins correctly */
}
.sample-container {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.sample-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.sample-row.reverse {
    flex-direction: row-reverse;
}

.sample-image {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.sample-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.sample-row:hover .sample-image img {
    transform: scale(1.05);
}

.sample-text {
    flex: 1;
}

.sample-tag {
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
}

.sample-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--black);
}

.sample-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

.text-link {
    text-decoration: none;
    color: var(--black);
    font-weight: 600;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 5px;
    transition: 0.3s;
}

.text-link:hover {
    color: var(--gold);
    padding-right: 10px;
}

/* --- MOBILE RESPONSIVENESS FOR SAMPLES --- */
@media screen and (max-width: 992px) {
    .sample-row, .sample-row.reverse {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .sample-image img {
        height: 350px;
    }
    
    .sample-text h3 {
        font-size: 2rem;
    }
    
    .sample-container {
        gap: 60px;
    }
}

.hero-content h1 {
    animation: fadeInUp 1.2s ease-out forwards;
}

.hero-content p {
    animation: fadeInUp 1.2s ease-out 0.3s forwards; /* 0.3s delay */
    opacity: 0;
}

.btn-gold {
    animation: fadeInUp 1.2s ease-out 0.6s forwards; /* 0.6s delay */
    opacity: 0;
}