/* General Styles */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
html { scroll-behavior: smooth; }
body { line-height: 1.6; color: #333; }
a { text-decoration: none; color: inherit; }

/* Navbar */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 1rem 5%; background-color: #8B4513; color: white; position: sticky; top: 0; z-index: 1000; }
.logo { font-size: 1.5rem; font-weight: bold; }
.nav-links { list-style: none; display: flex; }
.nav-links li { margin-left: 20px; }
.nav-links a:hover { color: #FFD700; }
.hamburger { display: none; cursor: pointer; }


/* Hero */
/* =========================================
   HERO SLIDESHOW STYLES
   ========================================= */
.hero {
    position: relative;
    height: 80vh; /* Full screen height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden; /* Clips images if they are too big */
}

/* 1. The Container for Images */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2; /* Puts it at the very back */
}

/* 2. The Individual Images */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers area without stretching */
    opacity: 0; /* Hidden by default */
    transition: opacity 1.5s ease-in-out; /* Smooth fade effect */
    transform: scale(1);
}

/* 3. The Active Image (Visible) */
.slide.active {
    opacity: 1;
    transform: scale(1.05); /* Optional: Slow zoom effect */
    transition: opacity 1.5s ease-in-out, transform 6s linear;
}

/* 4. The Dark Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Black with 60% opacity */
    z-index: -1; /* Sits behind text, in front of images */
}

/* 5. The Text Content */
.hero-content {
    position: relative;
    z-index: 1; /* Sits on top of everything */
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

/* Buttons */
.btn { display: inline-block; background: #D2691E; color: white; padding: 10px 20px; border-radius: 5px; margin-top: 20px; transition: all 0.3s ease; border: none; cursor: pointer; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.btn:hover { transform: translateY(-3px) scale(1.05); background: #A0522D; box-shadow: 0 10px 20px rgba(210, 105, 30, 0.4); }

/* Sections */
.section { padding: 60px 20px; }
.container { max-width: 1100px; margin: 0 auto; text-align: center; }
h2 { font-size: 2.5rem; margin-bottom: 30px; color: #8B4513; }

/* Features */
.features { display: flex; justify-content: space-around; flex-wrap: wrap; margin-top: 40px; }
.feature-box { flex-basis: 30%; padding: 20px; margin-bottom: 20px; box-shadow: 0 0 10px rgba(0,0,0,0.1); border-radius: 8px; transition: all 0.4s ease; }
.feature-box:hover { transform: translateY(-10px); background: #fff; border: 1px solid #e0e0e0; }
.feature-box i { font-size: 2rem; color: #D2691E; margin-bottom: 15px; }

/* Gallery */
.bg-light { background-color: #f4f4f4; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.gallery-item img { width: 100%; border-radius: 8px; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item { overflow: hidden; border-radius: 8px; }

/* === NEW: ORDER FORM STYLING === */
.form-wrapper-centered { max-width: 600px; margin: 0 auto; background: white; padding: 30px; border-radius: 10px; box-shadow: 0 0 20px rgba(0,0,0,0.1); border-top: 5px solid #D2691E; }
.form-group { margin-bottom: 15px; text-align: left; }
.form-group label { display: block; margin-bottom: 5px; font-weight: bold; color: #8B4513; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 5px; transition: all 0.3s; }
.form-group input:focus, .form-group textarea:focus { border-color: #D2691E; box-shadow: 0 0 8px rgba(210, 105, 30, 0.3); outline: none; }
#order { scroll-margin-top: 80px; }

/* === NEW: CONTACT SECTION STYLING === */
.contact-only-wrapper { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; }
.contact-card, .map-card { flex: 1; min-width: 300px; max-width: 500px; background: white; padding: 20px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); text-align: center; }
.map-card iframe { border-radius: 8px; }
.social-links { margin: 20px 0; display: flex; gap: 10px; justify-content: center; }
.social-btn { padding: 10px 15px; border-radius: 5px; color: white; font-weight: bold; transition: transform 0.2s; }
.social-btn:hover { transform: translateY(-2px); }
.fb { background-color: #1877F2; }
.yt { background-color: #FF0000; }

/* Footer */
.footer { background-color: #2c1a0e; color: #e0e0e0; padding-top: 60px; margin-top: 50px; font-size: 0.95rem; }
.footer-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; padding-bottom: 40px; }
.footer-col h3 { color: #D2691E; margin-bottom: 20px; font-size: 1.2rem; border-bottom: 2px solid #D2691E; display: inline-block; padding-bottom: 5px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a:hover { color: #FFD700; margin-left: 5px; transition: 0.3s; }
.footer-socials { display: flex; gap: 15px; }
.social-icon { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background-color: #3e2b1f; border-radius: 50%; color: white; transition: 0.3s; border: 1px solid #555; }
.social-icon:hover { transform: translateY(-5px); }
.fb-icon:hover { background: #1877F2; border-color: #1877F2; }
.yt-icon:hover { background: #FF0000; border-color: #FF0000; }
.map-icon:hover { background: #34A853; border-color: #34A853; }
.footer-bottom { background-color: #1a0f08; text-align: center; padding: 20px; border-top: 1px solid #3e2b1f; font-size: 0.85rem; color: #888; }

/* Scroll Reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Modal Popup */
.modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.7); align-items: center; justify-content: center; backdrop-filter: blur(5px); }
.modal-content { background-color: white; padding: 30px; border-radius: 10px; text-align: center; width: 90%; max-width: 400px; box-shadow: 0 5px 15px rgba(0,0,0,0.3); border-top: 5px solid #8B4513; animation: slideDown 0.4s ease-out; position: relative; }
.close-btn { position: absolute; top: 10px; right: 20px; font-size: 25px; cursor: pointer; color: #aaa; }
@keyframes slideDown { from { transform: translateY(-50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: block; }
    .hero h1 { font-size: 2rem; }
    .contact-only-wrapper { flex-direction: column; }
}
/* WhatsApp Green Color for Contact Section Button */
.wa {
    background-color: #25D366;
}

/* WhatsApp Hover Effect for Footer Icon */
.wa-icon:hover {
    background: #25D366;
    border-color: #25D366;
}
/* =========================================
   MEET THE ARTISANS STYLES
   ========================================= */
.makers-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.makers-title {
    font-size: 1.8rem;
    color: #8B4513;
    margin-bottom: 30px;
    font-family: 'Segoe UI', serif;
}

.makers-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.maker-card {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border-bottom: 4px solid #D2691E; /* Clay colored bottom */
}

.maker-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.maker-img {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #D2691E;
    padding: 3px;
    background: white;
}

.maker-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.maker-card h4 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 5px;
}

.maker-role {
    display: block;
    font-size: 0.9rem;
    color: #D2691E;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.maker-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}
/* =========================================
   ARTISAN SOCIAL BUTTONS
   ========================================= */
.maker-social {
    margin-top: 20px;
    border-top: 1px solid #eee; /* Divider line */
    padding-top: 15px;
}

.maker-fb-btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: white;
    color: #1877F2; /* Facebook Blue text */
    border: 1px solid #1877F2;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
}

.maker-fb-btn i {
    margin-right: 5px;
}

.maker-fb-btn:hover {
    background-color: #1877F2;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(24, 119, 242, 0.3);
}
/* Contact Section Button */
.ig {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* Footer Icon Hover */
.ig-icon:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-color: #d6249f;
}

/* Artisan Card Button */
.maker-ig-btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: white;
    color: #e1306c; /* Instagram Pink */
    border: 1px solid #e1306c;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-left: 5px; /* Space between FB and Insta */
}

.maker-ig-btn i {
    margin-right: 5px;
}

.maker-ig-btn:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(220, 39, 67, 0.3);
}
/* =========================================
   GALLERY UPGRADES & LIGHTBOX
   ========================================= */

/* View All Button */
.view-all-container {
    text-align: center;
}

.btn-outline {
    background: transparent;
    border: 2px solid #D2691E;
    color: #D2691E;
    margin-top: 0;
    font-weight: bold;
}

.btn-outline:hover {
    background: #D2691E;
    color: white;
}

/* Lightbox (Full Screen Viewer) */
.lightbox {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 3000; /* Sit on top of everything */
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95); /* Deep black background */
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    text-align: center;
    position: relative;
    top: 50%;
    transform: translateY(-50%); /* Vertically Center */
}

#lightboxImg {
    width: auto;
    max-width: 100%;
    max-height: 80vh;
    border: 4px solid white;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from {transform:scale(0.8); opacity: 0;} 
    to {transform:scale(1); opacity: 1;}
}

/* Close Button (X) */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 3001;
}

.lightbox-close:hover {
    color: #D2691E;
}

/* Next/Prev Buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.3s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.5);
    z-index: 3001;
}

.next { right: 0; border-radius: 3px 0 0 3px; }
.prev { left: 0; border-radius: 3px 0 0 3px; }

.prev:hover, .next:hover {
    background-color: #D2691E;
}

/* Mobile Fix */
@media only screen and (max-width: 700px){
    .lightbox-content { width: 100%; }
    .prev, .next { font-size: 20px; padding: 10px; }
}
/* =========================================

/* =========================================
   ADVANCED ANIMATED ABOUT SECTION
   ========================================= */

/* --- 1. FEATURE BOXES (ICONS) --- */
.features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 40px;
    perspective: 1000px; /* Needed for 3D effect */
}

.feature-box {
    flex-basis: 30%;
    padding: 30px 20px;
    margin-bottom: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-radius: 15px;
    border-bottom: 3px solid transparent;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1); /* Bouncy transition */
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Hover Effect: Lift & Glow */
.feature-box:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(210, 105, 30, 0.2); /* Clay glow */
    border-bottom: 3px solid #D2691E;
}

/* Icon Animation: Spin & Color Change */
.feature-box i {
    font-size: 2.5rem;
    color: #D2691E;
    margin-bottom: 15px;
    transition: transform 0.6s ease;
    display: inline-block;
}

.feature-box:hover i {
    transform: rotateY(180deg) scale(1.2);
    color: #8B4513;
}

/* Background Shine Effect */
.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255, 0.6), transparent);
    transition: 0.6s;
    z-index: -1;
}

.feature-box:hover::before {
    left: 100%; /* Sweeps across the card */
}


/* --- 2. ARTISAN CARDS (MAKERS) --- */
.makers-section {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.makers-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.maker-card {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    transition: all 0.5s ease;
    border: 1px solid rgba(0,0,0,0.05);
    
    /* Idle Floating Animation */
    animation: floating 4s ease-in-out infinite;
}

/* Stagger the animation so they don't float together */
.maker-card:nth-child(1) { animation-delay: 0s; }
.maker-card:nth-child(2) { animation-delay: 2s; }

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Hover Effect: Stop floating, Zoom in */
.maker-card:hover {
    animation-play-state: paused; /* Stop floating on hover */
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(139, 69, 19, 0.2);
    border-color: #D2691E;
}

/* Profile Image Animation */
.maker-img {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    border-radius: 50%;
    padding: 5px;
    background: white;
    border: 2px dashed #D2691E; /* Dashed border looks artistic */
    transition: all 0.5s ease;
    position: relative;
}

.maker-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.5s ease;
}

/* Image spins and border becomes solid on hover */
.maker-card:hover .maker-img {
    border-style: solid;
    border-color: #8B4513;
    transform: rotate(5deg);
}

.maker-card:hover .maker-img img {
    transform: scale(1.1); /* Zoom photo inside circle */
}

/* Role Badge */
.maker-role {
    display: inline-block;
    background: #fff0e6; /* Light orange bg */
    color: #D2691E;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* Social Buttons Reveal Effect */
.maker-social {
    margin-top: 25px;
    opacity: 0.7; /* Slightly faded initially */
    transform: translateY(10px);
    transition: all 0.4s ease;
}

/* Slide up and glow on hover */
.maker-card:hover .maker-social {
    opacity: 1;
    transform: translateY(0);
}

.maker-fb-btn, .maker-ig-btn {
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.maker-fb-btn:hover, .maker-ig-btn:hover {
    transform: scale(1.1) rotate(-3deg); /* Fun pop effect */
}

/* =========================================
   STYLISH ORDER FORM
   ========================================= */

/* The Card Container */
.form-wrapper-centered {
    max-width: 650px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    /* Soft, deep shadow for floating effect */
    box-shadow: 0 20px 50px rgba(139, 69, 19, 0.15); 
    border-top: 6px solid #D2691E; /* Chocolate top accent */
    position: relative;
    overflow: hidden;
}

/* Background decoration (Optional subtle circle) */
.form-wrapper-centered::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: rgba(210, 105, 30, 0.1);
    border-radius: 50%;
    z-index: 0;
}

/* Form Group Layout */
.form-group {
    margin-bottom: 25px;
    text-align: left;
    position: relative;
    z-index: 1;
}

/* Stylish Labels */
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    color: #8B4513;
    text-transform: uppercase;
    letter-spacing: 1px; /* Spaced out letters */
}

/* Input Fields (The Box you type in) */
.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: #f8f4f0; /* Very light clay/cream color */
    border: 2px solid #e0e0e0;
    border-radius: 10px; /* Rounded corners */
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
}

/* When you click inside an input */
.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    background-color: #fff;
    border-color: #D2691E;
    outline: none;
    box-shadow: 0 0 0 4px rgba(210, 105, 30, 0.1); /* Soft orange glow ring */
    transform: translateY(-2px); /* Slight lift */
}

/* The Submit Button */
#submitBtn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px; /* Pill shape */
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%); /* Gradient */
    box-shadow: 0 10px 20px rgba(139, 69, 19, 0.3);
    margin-top: 10px;
}

#submitBtn:hover {
    background: linear-gradient(135deg, #A0522D 0%, #E9967A 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(139, 69, 19, 0.4);
}

/* Custom Select Arrow (Makes dropdowns look better) */
.form-group select {
    appearance: none; /* Removes ugly default arrow */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238B4513' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
    cursor: pointer;
}