:root {
    /* Colors */
    --primary-color: #222222; /* Changed from pink to Dark Black/Charcoal to match comment */
    --accent-color: #000000;  /* Pure Black for CTAs */
    --text-light: #ffffff;
    --text-grey: #888888;
    --color-gold: #b89b5e;    /* Gold accent from second section */
    --color-bg: #ffffff;
    --color-light-gray: #f9f9f9;

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --font-sans: 'Montserrat', sans-serif; /* From second section */

    /* Settings */
    --transition-speed: 0.3s;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--primary-color);
    line-height: 1.6;
    background-color: var(--color-bg);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}


header {
    position: absolute; /* Stays at top over the hero image */
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    /* Gradient to help text readability over image */
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%);
    transition: background 0.3s ease;
}


header.scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header.scrolled .logo, 
header.scrolled nav a { color: #000; }

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-light);
    text-transform: uppercase;
}

/* Nav Links & Search Container Grouping */
.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    color: var(--text-light); /* Default white for Hero */
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    position: relative;
    transition: color var(--transition-speed);
}

/* Underline Hover Effect */
nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--text-light);
    transition: width var(--transition-speed);
}

nav:hover::after {
    width: 100%;
}

/* Search Bar (Merged from second section) */
.search-container {
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.5); /* White border for hero */
}

/* Adjust search border if header is scrolled (optional helper) */
header.scrolled .search-container {
    border-bottom: 1px solid #ccc;
}

.search-input {
    background: transparent;
    border: none;
    padding: 5px 10px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-light); /* White text on hero */
    outline: none;
    width: 150px;
    transition: width 0.3s ease;
}

header.scrolled .search-input {
    color: #000;
}

.search-input:focus {
    width: 200px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* =========================================
   3. HERO SECTION
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Background Image with Dark Overlay */
    background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
                      url('Images/logo.jpg');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    /* This animates once on page load */
    animation: fadeIn 1s ease-out;
}

.hero-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: block;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.1;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid var(--text-light);
    color: var(--text-light);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: all var(--transition-speed);
    background: transparent;
    cursor: pointer;
}

.btn:hover {
    background: var(--text-light);
    color: var(--primary-color);
}

.btn-dark {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    align-self: flex-start;
}

.btn-dark:hover {
    background: var(--primary-color);
    color: var(--text-light);
}


.featured-section {
    display: flex;
    flex-wrap: wrap;
    min-height: 80vh;
}

.featured-image {
    flex: 1 1 50%;
    min-height: 500px;
    background-image: url('Images/feature.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
}



.featured-content {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: var(--color-light-gray);
}

.section-tag {
    color: var(--text-grey);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    line-height: 1.2;
}

.section-desc {
    color: #555;
    margin-bottom: 40px;
    font-size: 1rem;
    max-width: 450px;
}


.products-section {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 80px 20px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: #fff;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image-wrapper {
    width: 100%;
    aspect-ratio: 3/4;
    background-color: var(--color-light-gray);
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.05);
}

.product-info {
    text-align: left;
    padding: 0 5px;
}

.product-category {
    font-size: 0.7rem;
    color: var(--text-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.product-price {
    font-size: 0.9rem;
    color: #555;
}


.bottom-typography {
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 2rem;
    padding: 2rem 0;
    border-top: 1px solid #eee;
}

.big-text {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    color: #f0f0f0;
    letter-spacing: 10px;
    text-transform: uppercase;
    user-select: none;
}



/* --- Cool Social Media Icons --- */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;  /* Circle Size */
    height: 45px;
    border: 1px solid #444; /* Dark Grey Border */
    border-radius: 50%; /* Makes it a Circle */
    color: #ccc; /* Light Grey Icon */
    font-size: 1.1rem; /* Icon Size */
    transition: all 0.3s ease; /* Smooth animation */
}

/* The "Cool" Part: Hover Effect */
.social-icons a:hover {
    border-color: var(--color-gold); /* Turns border Gold */
    background-color: var(--color-gold); /* Fills background Gold */
    color: #fff; /* Icon turns White */
    transform: translateY(-5px); /* Icon pops UP slightly */
    box-shadow: 0 5px 15px rgba(184, 155, 94, 0.4); /* Golden Glow Shadow */
}


.contact-section {
    padding: 100px 5%;
    min-height: 80vh;
    background-color: #fff;
}

/* The Flex Container */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Slight shadow for depth */
    border-radius: 4px;
    overflow: hidden;
}

/* LEFT COLUMN: Contact Info */
.contact-info {
    flex: 1 1 400px; /* Grows, but min width 400px */
    padding: 60px 50px;
    background-color: var(--color-light-gray);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-info p {
    color: #666;
    margin-bottom: 40px;
    font-size: 1rem;
}

/* Individual Contact Items (Email, WhatsApp, Location) */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* The Icon Circle */
.contact-icon {
    width: 55px;
    height: 55px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-gold);
    font-size: 1.3rem;
    margin-right: 20px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* Hover Effect on the whole item */
.contact-item:hover .contact-icon {
    background-color: var(--color-gold);
    color: #fff;
    transform: scale(1.1);
}

.contact-text h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-grey);
    margin-bottom: 5px;
}

.contact-text a,
.contact-text span {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-text a:hover {
    color: var(--color-gold);
}

/* RIGHT COLUMN: Google Map */
.contact-map {
    flex: 1 1 400px;
    min-height: 500px;
    position: relative;
}

/* Make iframe fill the container */
.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}


/* Responsive */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }
    .contact-info {
        padding: 40px 20px;
    }
    .contact-map {
        height: 400px;
    }
}





footer {
    background-color: var(--primary-color);
    color: var(--color-light-gray);
    padding: 40px 5%;
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    margin: 0 15px;
    color: #aaa;
}

.footer-links a:hover {
    color: var(--text-light);
}


@media (max-width: 1024px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .hero-title {
        font-size: 3rem;
    }
    
    nav {
        display: none; /* Hidden on mobile for simplicity */
    }

    .menu-toggle {
        display: block;
    }

    .featured-section {
        flex-direction: column;
    }

    .featured-image, 
    .featured-content {
        flex: 1 1 100%;
        width: 100%;
    }

    .featured-content {
        padding: 40px 20px;
        text-align: center;
    }
    
    .section-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .btn-dark {
        align-self: center;
    }
}

@media (max-width: 600px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
    
    .big-text {
        font-size: 3rem;
    }

    .nav-wrapper {
        display: none; /* Hide nav on very small screens if needed */
    }
}


@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
