* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    background: #000;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    color: #c59d5f;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    
}

nav a {
    color: #fff;
    margin-left: 25px;
    text-decoration: none;
    font-weight: 500;
}

/* HERO */
.hero {
    height: 90vh;
    background: url("https://plus.unsplash.com/premium_photo-1677698817982-3c1fbb913e8e?q=80&w=687&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D") center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.hero-text {
    background: rgba(0,0,0,0.65);
    padding: 40px;
    border-radius: 12px;
    color: #fff;
    max-width: 600px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    background: #c59d5f;
    color: #000;
    padding: 12px 30px;
    margin-top: 15px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

/* SECTIONS */
section {
    padding: 70px 8%;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.bg-light {
    background: #f4f4f4;
}

.bg-dark {
    background: #000;
    color: #fff;
    text-align: center;
}

.section-title.light {
    color: #fff;
}

/* ABOUT */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* PRODUCTS */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-card h3 {
    padding: 15px;
    color: #c59d5f;
}

/* LOCATIONS */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.location-card {
    background: #c59d5f;
    color: #000;
    padding: 40px;
    text-align: center;
    font-weight: 700;
    border-radius: 12px;
    font-size: 20px;
}

/* FOOTER */
footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 15px;
}

/* WHATSAPP */
.whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #25D366;
    color: #fff;
    font-size: 24px;
    padding: 15px 18px;
    border-radius: 50%;
    text-decoration: none;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    nav {
        display: none;
    }

    .hero h1 {
        font-size: 30px;
    }
}
