@charset "utf-8";
/* CSS Document */

:root {
    --warm-white: #FCFBF9;
    --cream: #FAF6F0;
    --soft-beige: #F1EAE0;
    --olive-green: #4A533C;
    --sage-green: #8A9A86;
    --text-dark: #2C2E2A;
    --text-muted: #6E726B;
    --muted-gold: #C5A059;
    --white: #FFFFFF;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition-smooth: cubic-bezier(0.25, 1, 0.5, 1);
    --shadow-soft: 0 12px 32px rgba(74, 83, 60, 0.05);
    --shadow-hover: 0 20px 40px rgba(74, 83, 60, 0.1);
    --border-radius: 16px;
    --border-radius-sm: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background-color: var(--warm-white); font-family: var(--font-body); color: var(--text-dark); line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.section-padding { padding: 120px 0; }
.bg-cream { background-color: var(--cream); }

h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--text-dark); font-weight: 600; }
h2 { font-size: 2.8rem; line-height: 1.2; margin-bottom: 24px; }
p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 16px; }

.section-subtitle { display: inline-block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 3px; color: var(--muted-gold); font-weight: 600; margin-bottom: 16px; }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 80px auto; }

.btn-primary { display: inline-block; background-color: var(--olive-green); color: var(--white); padding: 14px 36px; font-size: 0.85rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; border: none; border-radius: 30px; transition: all 0.4s var(--transition-smooth); cursor: pointer; box-shadow: 0 4px 12px rgba(74, 83, 60, 0.15); }
.btn-primary:hover { background-color: var(--sage-green); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(74, 83, 60, 0.25); }

/* Navigation Styling */
.main-header { position: fixed; top: 0; left: 0; width: 100%; background-color: rgba(252, 251, 249, 0.95); backdrop-filter: blur(10px); z-index: 1000; box-shadow: 0 2px 20px rgba(0, 0, 0, 0.02); }
.header-container { display: flex; justify-content: space-between; align-items: center; max-width: 1320px; margin: 0 auto; padding: 20px 40px; }
.logo { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 600; color: var(--text-dark); text-decoration: none; letter-spacing: 1px; }
.logo span { color: var(--muted-gold); }
.nav-menu ul { display: flex; list-style: none; gap: 40px; }
.nav-link { text-decoration: none; font-size: 0.85rem; font-weight: 500; color: var(--text-dark); letter-spacing: 1px; text-transform: uppercase; transition: color 0.3s ease; position: relative; padding: 6px 0; }
.nav-link:hover, .nav-link.active { color: var(--muted-gold); }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background-color: var(--muted-gold); transition: width 0.3s ease; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.menu-toggle { display: none; }

/* Custom Image Logo Framework */
.logo-brand img {
    height: 63px;          /* Restricts height so it fits seamlessly in your navbar */
    width: auto;           /* Automatically calculates proportional width to avoid stretching */
    display: block;
    transition: transform 0.3s ease;
}

.logo-brand:hover img {
    transform: scale(1.03); /* Adds a subtle interactive scaling effect when hovered */
}

/* Hero Slider Section */
.hero-slider-section { position: relative; height: 100vh; min-height: 650px; width: 100vw; background-color: var(--cream); overflow: hidden; }
.slider-container { position: relative; width: 100%; height: 100%; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; opacity: 0; transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1); z-index: 1; }
.slide.active { opacity: 1; z-index: 2; }
.slide-image-wrapper { position: absolute; top: 0; right: 0; width: 100%; height: 100%; overflow: hidden; }
.slide-image-wrapper::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, var(--cream) 0%, rgba(250,246,240,0) 0%); }
.slide-image-wrapper img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.33); transition: transform 6s ease; }
.slide.active .slide-image-wrapper img { transform: scale(1); }
.slide-content { position: relative; width: 68%; padding-left: 5%; z-index: 3; transform: translateY(30px); transition: transform 1s var(--transition-smooth) 0.2s; }
.slide.active .slide-content { transform: translateY(0); }
.slide-badge { display: inline-block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--white); margin-bottom: 20px; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}
.slide-content h2 { font-size: 4.2rem; line-height: 1.1; font-weight: 600; margin-bottom: 24px; color: var(--white); text-shadow: 0 2px 10px rgba(32, 36, 20, 0.88), 0 4px 20px rgba(32, 36, 26, 0.3);
}
.slide-content p { font-size: 1.05rem; max-width: 480px; margin-bottom: 40px; color: rgba(255, 255, 255, 0.9); text-shadow: 0 1px 4px rgba(32, 36, 26, 0.5);
}

.slider-btn { 
    position: absolute; 
    bottom: 40px;          /* Aligns them vertically near the bottom of the slider */
    transform: none;       /* Clears the previous center alignment rule */
    background: var(--white); 
    border: none; 
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    font-size: 1.1rem; 
    color: var(--olive-green); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    cursor: pointer; 
    box-shadow: var(--shadow-soft); 
    transition: all 0.3s ease; 
    z-index: 10; 
}

/* Position the buttons in the bottom right quadrant, side-by-side */
.slider-btn.prev { 
    right: 110px;          /* Placed slightly to the left of the Next button */
    left: auto;            /* Overrides the original left-side alignment */
}

.slider-btn.next { 
    right: 50px;           /* Snapped closely to the right margin edge */
}

.slider-btn:hover { 
    background: var(--olive-green); 
    color: var(--white); 
}
.slider-dots { 
    position: absolute; 
    bottom: 55px;          /* Aligned cleanly with the horizontal line of the new arrow layout */
    left: 5%; 
    display: flex; 
    gap: 12px; 
    z-index: 10; 
}

/* Individual pagination dots styling */
.dot { 
    width: 10px; 
    height: 10px; 
    border-radius: 50%; 
    /* Uses your brand color with 25% opacity so it's clearly visible when inactive */
    background-color: rgba(74, 83, 60, 0.25); 
    cursor: pointer; 
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); 
}

/* Dynamic active state: lights up solid and scales up when the slide changes */
.dot.active { 
    background-color: var(--olive-green); /* Becomes fully opaque green */
    transform: scale(1.4);                 /* Grows slightly larger to give instant visual feedback */
}

/* About Us Layout styling */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-side { position: relative; padding: 30px; }
.image-accent-box { position: absolute; top: 0; left: 0; width: 85%; height: 85%; background-color: var(--soft-beige); border-radius: var(--border-radius); z-index: 1; }
.about-image-side img { position: relative; width: 100%; border-radius: var(--border-radius); box-shadow: var(--shadow-soft); z-index: 2; transition: transform 0.5s ease; }
.about-text-side .lead-text { font-size: 1.2rem; font-family: var(--font-heading); color: var(--olive-green); line-height: 1.5; margin-bottom: 24px; }

/* Elegant Card Components Setup */
.product-category-group { margin-bottom: 80px; }
.category-title { font-size: 1.8rem; margin-bottom: 32px; position: relative; padding-bottom: 12px; border-bottom: 1px solid var(--soft-beige); }
.category-title::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 60px; height: 2px; background-color: var(--olive-green); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.product-card { background: var(--white); border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--shadow-soft); transition: all 0.4s var(--transition-smooth); }
.product-img { height: 240px; overflow: hidden; background-color: var(--soft-beige); }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.product-card:hover .product-img img { transform: scale(1.06); }
.product-info { padding: 24px; }
.product-info h4 { font-size: 1.3rem; margin-bottom: 10px; }
.product-info p { font-size: 0.88rem; line-height: 1.6; margin-bottom: 0; }

/* Why Us Section styling */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card { background: var(--white); border-radius: var(--border-radius); padding: 32px 24px; text-align: center; box-shadow: var(--shadow-soft); border: 1px solid rgba(74, 83, 60, 0.02); transition: all 0.4s var(--transition-smooth); }
.why-icon-wrapper { width: 80px; height: 80px; border-radius: 50%; background-color: var(--cream); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px auto; }
.artisan-icon { width: 120%; height: 120%; object-fit: contain; font-size: 1.6rem; color: var(--olive-green); }
.why-card h3 { font-size: 1.25rem; margin-bottom: 14px; }
.why-card p { font-size: 0.85rem; line-height: 1.6; margin-bottom: 0; }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

/* How to Order Component styling */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 64px; }
.step-card { position: relative; padding: 24px 0; }
.step-number { font-family: var(--font-heading); font-size: 3.5rem; color: var(--muted-gold); line-height: 1; margin-bottom: 16px; opacity: 0.7; }
.step-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.order-actions-container { display: flex; align-items: center; justify-content: center; gap: 60px; background-color: var(--white); padding: 48px; border-radius: var(--border-radius); box-shadow: var(--shadow-soft); max-width: 900px; margin: 0 auto; }
.buttons-block { display: flex; flex-direction: column; gap: 16px; flex: 1; }
.btn-action { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 16px 32px; border-radius: 30px; text-decoration: none; font-size: 0.9rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; transition: all 0.3s ease; }
.btn-whatsapp { background-color: #25D366; color: var(--white); }
.btn-call { background-color: var(--olive-green); color: var(--white); }
.qr-card { text-align: center; border-left: 1px solid var(--soft-beige); padding-left: 60px; }
.qr-code-placeholder { background: var(--cream); padding: 16px; border-radius: var(--border-radius-sm); display: inline-block; margin-bottom: 12px; }
.qr-card p { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; margin: 0; }

/* Delivery Badges Matrix styling */
.badge-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; max-width: 1000px; margin: 0 auto; }
.delivery-badge { background-color: var(--cream); color: var(--olive-green); padding: 10px 24px; font-size: 0.9rem; font-weight: 500; border-radius: 40px; border: 1px solid var(--soft-beige); transition: all 0.3s var(--transition-smooth); }
.delivery-badge:hover { background-color: var(--olive-green); color: var(--white); border-color: var(--olive-green); transform: scale(1.05); }

/* Contact Us & Form Elements styling */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: start; }
.contact-desc { font-size: 1.05rem; margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 32px; margin-bottom: 48px; }
.detail-item { display: flex; gap: 20px; align-items: flex-start; }
.detail-icon { font-size: 1.4rem; line-height: 1; color: var(--muted-gold); background: var(--white); width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-soft); }
.detail-item h4 { font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted-gold); margin-bottom: 4px; }
.detail-item p, .detail-item a { font-size: 1rem; color: var(--text-dark); text-decoration: none; margin: 0; }
.social-channels { display: flex; gap: 24px; }
.social-link { text-decoration: none; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.social-link:hover { color: var(--muted-gold); }
.artisan-form { background: var(--white); padding: 48px; border-radius: var(--border-radius); box-shadow: var(--shadow-soft); }
.artisan-form h3 { font-size: 1.8rem; margin-bottom: 28px; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.form-group input, .form-group textarea { width: 100%; padding: 14px 18px; border-radius: var(--border-radius-sm); border: 1px solid var(--soft-beige); background-color: var(--warm-white); font-family: var(--font-body); font-size: 0.9rem; }
.w-100 { width: 100%; }

/* Footer Area styling */
.main-footer { background-color: #20241A; color: rgba(255, 255, 255, 0.7); padding: 80px 0 40px 0; }
.footer-top { display: flex; justify-content: space-between; border-bottom: 1px solid rgba(255, 255, 255, 0.08); padding-bottom: 48px; margin-bottom: 40px; }
.footer-brand { max-width: 400px; }
.footer-brand h3 { color: var(--white); font-size: 2rem; margin-bottom: 16px; }
.footer-brand h3 span { color: var(--muted-gold); }
.footer-nav h4 { color: var(--white); font-family: var(--font-body); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; }
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { color: rgba(255, 255, 255, 0.5); text-decoration: none; font-size: 0.88rem; transition: color 0.3s ease; }
.footer-nav a:hover { color: var(--muted-gold); }
.footer-bottom { text-align: center; font-size: 0.8rem; color: rgba(255, 255, 255, 0.4); }

/* Footer Image Logo adjustment */
.footer-logo {
    height: 63px;          /* Retains the clean height scale */
    width: auto;
    display: block;
    margin-bottom: 20px;
    
    /* Removed background, padding, and border-radius to completely delete the box */
    background: none;     
    padding: 0;
    border-radius: 0;

    /* CRITICAL: Converts the black text to crisp white so it's perfectly visible on the dark footer */
    filter: brightness(0) invert(1); 
}

.product-specs {
    list-style-type: none;     /* Removes default ugly black dots */
    padding: 0;                /* Removes default browser indentation */
    margin: 12px 0;            /* Nice spacing above and below the list */
    
    /* CHANGE THIS LINE */
    font-size: 0.85rem;        /* This automatically copies the exact size of your paragraph text */
    
    color: #555555;            
    line-height: 1.5;
}

.product-specs li::before {
    content: "•";              
    position: absolute;
    left: 3;
    color: #8A9A86;            
    
    /* Tweak this if the dot feels too big or too small */
    font-size: 1rem;           
    
    top: 0px;                  /* Adjusted to align perfectly with the new text size */
}