/* Global Styles */
:root {
    --charcoal: #333a3f;
    --off-white: #f8f7f3;
    --emerald: #084c61;
    --burnt-orange: #d16638;
    --light-gray: #e9e9e9;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--off-white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1,
h2,
h3,
h4 {
    font-weight: 600;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--burnt-orange);
    margin: 15px auto 0;
}

p {
    margin-bottom: 20px;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
.btn {
    background-color: var(--emerald);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: var(--transition);
    display: inline-block;
}

button:hover,
.btn:hover {
    background-color: #06374a;
    transform: translateY(-2px);
}

.whatsapp-btn {
    background-color: #25D366;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-btn:hover {
    background-color: #1da851;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: var(--box-shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

/* Responsive logo text size and no-wrap */
.logo {
    font-size: 2rem;
    font-weight: 700;
    white-space: nowrap;
    display: inline-block;
}
.logo span {
    color: var(--burnt-orange);
}
@media (max-width: 600px) {
    .logo {
        font-size: 1.1rem;
        letter-spacing: 0;
    }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.menu-items {
    display: flex;
    list-style: none;
    gap: 30px;
}

.menu-items li a {
    color: var(--charcoal);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.menu-items li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--burnt-orange);
    transition: var(--transition);
}

.menu-items li a:hover {
    color: var(--burnt-orange);
}

.menu-items li a:hover:after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero {
    position: relative;
    height: 600px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/api/placeholder/1200/600');
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: stretch;
    text-align: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

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

/* Products Section */
.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.category-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.category-img {
    height: 200px;
    overflow: hidden;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.category-content {
    padding: 20px;
}

.category-content h3 {
    margin-bottom: 10px;
    font-weight: 600;
}

/* Offers Section */
.offers {
    background-color: var(--light-gray);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.offer-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    position: relative;
}

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--burnt-orange);
    color: white;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 4px;
}

.offer-img {
    height: 180px;
    overflow: hidden;
}

.offer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-content {
    padding: 20px;
}

.offer-content h3 {
    margin-bottom: 5px;
}

.price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.current-price {
    font-weight: 600;
    color: var(--emerald);
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
}

/* Services Section */
.services {
    background-color: white;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    background-color: var(--off-white);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--emerald);
    margin-bottom: 20px;
}

/* About Section */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Section */
.contact {
    background-color: var(--light-gray);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    font-size: 1.2rem;
    color: var(--emerald);
}

.map {
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
footer {
    background-color: var(--charcoal);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--burnt-orange);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--burnt-orange);
    transform: translateY(-3px);
}

.footer-links h4 {
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.footer-links h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 30px;
    height: 2px;
    background-color: var(--burnt-orange);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--burnt-orange);
    margin-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Glass Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    padding: 2.5rem 2rem;
    max-width: 420px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .menu-items {
        position: fixed;
        top: 80px;
        left: -100%;
        background-color: white;
        width: 100%;
        height: calc(100vh - 80px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        gap: 20px;
    }

    .menu-items.active {
        left: 0;
    }

    .about,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .hero {
        margin-top: 80px; /* Height of the fixed header */
        height: 500px;
    }

    .hero-container {
        height: 100%;
    }

    .hero {
        height: 500px;
    }

    .hero-container {
        height: 100%;
    }

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

@media (max-width: 480px) {
    section {
        padding: 60px 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .hero {
        margin-top: 80px; /* Height of the fixed header */
        height: 400px;
    }

    .hero-container {
        height: 100%;
    }

    .glass-effect {
        max-width: 95vw;
        padding: 1.5rem 0.7rem;
    }

    .hero {
        height: 400px;
    }

    .hero-container {
        height: 100%;
    }

    .glass-effect {
        max-width: 95vw;
        padding: 1.5rem 0.7rem;
    }

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

    .about-content h2,
    .contact h2 {
        text-align: left;
    }

    .about-content h2:after,
    .contact h2:after {
        margin-left: 0;
    }
}