/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation Bar */
.navbar {
    background-color: #1a1a1a;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #c4a47c;
}

.nav-links li a.active {
    color: #c4a47c;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #c4a47c;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #a88a62;
}

/* Featured Products */
.featured-products {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.featured-products h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.product-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.view-more-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.view-more-button:hover {
    background-color: #333;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #c4a47c;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.social-links a {
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #c4a47c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        margin-top: 1rem;
        flex-direction: column;
    }

    .nav-links li {
        margin: 0.5rem 0;
    }

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

    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .product-card img {
        height: 200px;
    }
}

.chat-frame {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 360px;
    height: 600px;
    border: none;
    z-index: 1000;
}

.chat-close:hover {
    opacity: 0.8;
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 2rem;
    background-color: #f5f5f5;
}

.reviews-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.review-stars {
    color: #c4a47c;
    margin-bottom: 1rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1rem;
}

.review-card h4 {
    color: #666;
}

/* Location Section */
.location-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

.location-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.location-info {
    padding: 2rem;
}

.location-info h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-info i {
    color: #c4a47c;
}

.hours ul {
    list-style: none;
    margin-top: 1rem;
}

.hours li {
    margin-bottom: 0.5rem;
}

.hours span {
    font-weight: bold;
    color: #1a1a1a;
}

.location-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.location-map iframe {
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .location-container {
        grid-template-columns: 1fr;
    }
    
    .location-map {
        min-height: 300px;
    }
}

/* Mobile Menu Styles */
.hamburger-menu {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
    position: fixed;
    top: 20px;
    right: 20px;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff;
    margin: 6px 0;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: rgba(26, 26, 26, 0.98);
    padding-top: 80px;
    transition: right 0.3s ease;
    z-index: 999;
    backdrop-filter: blur(10px);
}

.mobile-menu.active {
    right: 0;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }

    .nav-container {
        padding: 1rem;
    }

    .nav-links {
        flex-direction: column;
        padding: 0;
    }

    .nav-links li {
        margin: 0;
        padding: 0;
    }

    .nav-links li a {
        display: flex;
        align-items: center;
        padding: 15px 25px;
        font-size: 1rem;
        color: #fff;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links li a i {
        margin-right: 12px;
        font-size: 1.1rem;
        color: #c4a47c;
    }

    .nav-links li a:hover {
        background-color: rgba(196, 164, 124, 0.1);
    }

    .mobile-menu {
        display: block;
    }

    .logo img {
        height: 50px;
    }
}

.hero-content .hero-logo {
    max-width: 300px;
    width: 70%;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.3));
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    position: relative;
    padding: 20px;
}

@media screen and (max-width: 768px) {
    .hero-content .hero-logo {
        max-width: 250px;
        width: 60%;
    }
}

@media screen and (max-width: 480px) {
    .hero-content .hero-logo {
        max-width: 200px;
        width: 50%;
    }
}

/* Desktop Navigation */
.navbar {
    background-color: #1a1a1a;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.desktop-nav {
    display: none; /* Hidden by default for mobile */
}

/* Desktop styles */
@media screen and (min-width: 768px) {
    .desktop-nav {
        display: flex;
        align-items: center;
        gap: 2rem;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .desktop-nav li {
        margin: 0;
    }

    .desktop-nav .nav-link {
        color: #fff;  /* White text for dark background */
        text-decoration: none;
        font-size: 1rem;
        font-weight: 500;
        transition: color 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .desktop-nav .nav-link:hover {
        color: #c4a47c;  /* Match your brand color */
    }

    .desktop-nav .nav-link.active {
        color: #c4a47c;
    }

    .desktop-nav .nav-link i {
        font-size: 1.1rem;
    }

    /* Hide mobile elements on desktop */
    .hamburger-menu {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }

    /* Adjust logo size for desktop */
    .logo img {
        height: 50px;
    }
}
