/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Montserrat:wght@300;400;500&display=swap');

:root {
    --primary-color: #5d4037; /* A rich, earthy brown for luxury */
    --secondary-color: #8c7365; /* A lighter brown */
    --accent-color: #c8b59f; /* A light, gold-like color */
    --background-color: #f7f3ed; /* Off-white for a clean look */
    --text-color: #333;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Montserrat', sans-serif;
}

body {
    font-family: var(--body-font);
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    scroll-behavior: smooth;
}

h1, h2, h3 {
    font-family: var(--heading-font);
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-container {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-button {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    font-family: var(--body-font);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    color: var(--primary-color);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    transition: transform 0.3s ease-in-out;
}

.nav-links.active {
    transform: translateX(0);
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    right: 0;
    background: var(--accent-color);
    transition: width 0.4s ease;
}

.nav-links a:hover::after {
    width: 100%;
    left: 0;
    background: var(--primary-color);
}

/* Hamburger menu for mobile */
.hamburger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    z-index: 1001;
}

.hamburger-menu .bar {
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

/* Hero Banner */
.hero-banner {
    height: 100vh;
    background-image: url('./hero-banner-CbKkoFUb.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    margin: 0;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
    color: #fff;
}

/* Esteemed Clients */
.clients-section {
    text-align: center;
}

.client-logos-carousel {
    position: relative;
    width: 100%;
    padding: 2rem 0;
}
.logo-grid-wrapper {
    overflow: hidden;
    display: flex;
    width: 100%;
}

.logo-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: nowrap;
    justify-content: space-around;
    animation: scroll-logos 120s linear infinite;
    /* Add the duplicated brands to make it loop seamlessly */
    width: 200%; 
}

.client-logo {
    height: 80px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Categories Section */
.categories-section h2 {
    text-align: center;
}

.category-blocks {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.category-block {
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.3s ease;
    width: 150px;
}

.category-block:hover {
    transform: translateY(-10px);
}

.block-image {
    width: 150px;
    height: 150px;
    background-size: cover;
    background-position: center;
    border-radius: 50% 50% 0 0; /* Semi-circular top */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: border-radius 0.3s ease;
}

.category-block:hover .block-image {
    border-radius: 50%;
}

.category-block h3 {
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--primary-color);
}

/* B2B Banner */
.b2b-banner {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 5rem 5%;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.b2b-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.b2b-content {
    z-index: 1;
}

.b2b-content h2 {
    color: #fff;
}

.b2b-content p {
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.motif {
    width: 120px;
    height: auto;
    opacity: 0.3;
}

.elephant-left {
    transform: scaleX(-1);
}

/* Top 5 Gifts Carousel */
.top-gifts-section h2 {
    text-align: center;
}

.gifts-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding: 1rem 0;
    -webkit-overflow-scrolling: touch;
}

.gifts-carousel::-webkit-scrollbar {
    height: 8px;
}

.gifts-carousel::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 10px;
}

.gift-card {
    flex: 0 0 300px;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
    padding-bottom: 1rem;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

.gift-card:hover {
    transform: translateY(-5px);
}

.gift-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gift-card h3 {
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem;
}

.gift-card p {
    font-size: 0.9rem;
    color: #666;
    padding: 0 1rem;
}

.enquire-button {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 8px 15px;
    margin-top: 1rem;
    cursor: pointer;
    font-family: var(--body-font);
    transition: background-color 0.3s ease;
}

.enquire-button:hover {
    background-color: var(--secondary-color);
}

/* Vouchers Section */
.vouchers-section {
    text-align: center;
}

.voucher-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.voucher-block {
    background-color: #fff;
    padding: 1rem;
    text-align: center;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.voucher-block:hover {
    transform: translateY(-5px);
}

.voucher-block img {
    max-width: 100px;
    margin-bottom: 1rem;
}

.voucher-button {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.voucher-button:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

/* USPs Section */
.usps-section {
    text-align: center;
    background-color: #f0ebe5;
}

.usps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.usp-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.usp-card:hover {
    transform: translateY(-5px);
}

.usp-icon {
    width: 60px;
    height: auto;
    margin-bottom: 1rem;
}

.usp-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Brand Collaborations */
.collaborations-section {
    text-align: center;
}

.collaboration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.collaboration-logo-container {
    padding: 1rem;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collaboration-logo-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.collaboration-logo {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.collaboration-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Contact Section */
.contact-section {
    background-color: var(--secondary-color);
    color: #fff;
}

.contact-section h2, .contact-section h3 {
    color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info p {
    margin: 0.5rem 0;
}

.contact-info a {
    color: #fff;
    text-decoration: underline;
}

.map-embed {
    margin-top: 2rem;
    border: 2px solid #fff;
}

.contact-form-container input, .contact-form-container textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    background-color: #fff;
    color: var(--text-color);
    font-family: var(--body-font);
    box-sizing: border-box; /* Fix for horizontal scroll on mobile */
}

.contact-form-container textarea {
    resize: vertical;
}

.contact-form-container .cta-button {
    width: 100%;
    box-sizing: border-box; /* Fix for horizontal scroll on mobile */
}

/* Enquiry Pop-up */
.enquiry-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.popup-content {
    background-color: #fff;
    padding: 2rem;
    position: relative;
    width: 90%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.close-button {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #aaa;
}

.close-button:hover {
    color: #666;
}

#popup-form input, #popup-form textarea {
    margin-bottom: 1rem;
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
}

#popup-form .cta-button {
    width: 100%;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 4rem 5%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: left;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent-color);
}

.social-icons a {
    color: #fff;
    margin-right: 15px;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #7a6058;
    padding-top: 1rem;
    margin-top: 2rem;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 5%;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        text-align: center;
        background-color: #fff;
        position: fixed; /* Use fixed positioning */
        top: 60px; /* Adjust based on navbar height */
        left: 0;
        height: 100%;
        transform: translateX(-100%);
        padding: 2rem 0;
        box-shadow: 0 4px 5px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
        padding: 1rem 0;
    }

    .nav-links a {
        display: block;
        width: 100%;
    }

    .nav-links a::after {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    /* Hamburger animation */
    .hamburger-menu.open .bar:nth-child(1) {
        transform: translateY(8.5px) rotate(45deg);
    }

    .hamburger-menu.open .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.open .bar:nth-child(3) {
        transform: translateY(-8.5px) rotate(-45deg);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}