* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins',sans-serif;
    background: #0b0b0b;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
}

a {
    text-decoration: none;
}

.container {
    width: min(90%,1300px);
    margin: auto;
}

/* HEADER */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0,0,0,.95);
    border-bottom: 1px solid #d8a11a;
    backdrop-filter: blur(10px);
}

.nav {
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
}

    .logo span {
        font-size: 2.4rem;
        font-weight: 800;
        color: #d8a11a;
        line-height: 1;
    }

    .logo small {
        letter-spacing: 3px;
        font-size: .95rem;
    }

.nav-links {
    display: flex;
    gap: 45px;
}

    .nav-links a {
        color: #fff;
        font-weight: 600;
        transition: .3s;
    }

        .nav-links a:hover {
            color: #d8a11a;
        }

.phone {
    color: #d8a11a;
    font-weight: 600;
}

.menu-toggle {
    display: none;
    color: #d8a11a;
    font-size: 1.8rem;
    cursor: pointer;
}

/* HERO */

.hero {
    min-height: 100vh;
    background: url("../images/hero/storefront.jpg") center center/cover;
    position: relative;
    display: flex;
    align-items: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.65);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin-left: 8%;
}

.hero h1 {
    font-size: 6rem;
    line-height: 1;
    color: #d8a11a;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    transition: .3s;
}

.btn-primary {
    background: #d8a11a;
    color: #000;
}

.btn-outline {
    border: 2px solid #d8a11a;
    color: #fff;
}

.btn:hover {
    transform: translateY(-3px);
}

/* GENERAL */

.section {
    padding: 100px 0;
}

    .section h2 {
        text-align: center;
        color: #d8a11a;
        font-size: 2.5rem;
        margin-bottom: 50px;
    }

/* PRODUCTS */

.categories {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 25px;
}

.card {
    background: #151515;
    border: 1px solid #222;
    border-radius: 16px;
    padding: 35px 20px;
    text-align: center;
    transition: .3s;
}

    .card:hover {
        border-color: #d8a11a;
        transform: translateY(-5px);
    }

    .card i {
        color: #d8a11a;
        font-size: 2.4rem;
        margin-bottom: 15px;
    }

/* FEATURES */

.features {
    padding: 80px 0;
    background: #101010;
}

    .features .container {
        display: grid;
        grid-template-columns: repeat(4,1fr);
        gap: 30px;
    }

.feature {
    text-align: center;
}

    .feature i {
        color: #d8a11a;
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

/* SPECIALTIES */

.specialties {
    padding: 100px 0;
}

    .specialties h2 {
        text-align: center;
        color: #d8a11a;
        margin-bottom: 50px;
        font-size: 2.5rem;
    }

.specialty-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 20px;
}

.specialty-card {
    background: #151515;
    border: 1px solid #222;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: .3s;
}

    .specialty-card:hover {
        border-color: #d8a11a;
        transform: translateY(-5px);
    }

    .specialty-card .icon {
        font-size: 3rem;
        margin-bottom: 15px;
    }

    .specialty-card h3 {
        color: #d8a11a;
        margin-bottom: 12px;
        font-size: 1.1rem;
    }

    .specialty-card p {
        color: #ccc;
        font-size: .95rem;
    }

/* GALLERY */

.gallery {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

    .gallery img {
        height: 280px;
        object-fit: cover;
        border-radius: 12px;
    }

/* ABOUT */

.about {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    border-radius: 20px;
}

.about-text h2 {
    color: #d8a11a;
    margin-bottom: 20px;
}

.about-text p {
    color: #ddd;
    margin-bottom: 15px;
}

/* CONTACT */

.contact {
    padding: 100px 0;
    background: #101010;
}

    .contact h2 {
        text-align: center;
        color: #d8a11a;
        margin-bottom: 40px;
    }

.contact-box {
    max-width: 700px;
    margin: auto;
    background: #171717;
    border: 1px solid #2b2b2b;
    border-radius: 16px;
    padding: 40px;
}

    .contact-box p {
        margin-bottom: 20px;
    }

    .contact-box i {
        width: 30px;
        color: #d8a11a;
    }

.map-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #d8a11a;
    color: #000;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
}

/* FOOTER */

footer {
    padding: 60px 0;
    border-top: 1px solid #222;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}

.footer-logo {
    color: #d8a11a;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.socials {
    display: flex;
    gap: 15px;
}

    .socials a {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: #1a1a1a;
        color: #d8a11a;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid #222;
    text-align: center;
}

    .footer-bottom p {
        color: #777;
        font-size: .9rem;
        margin: 0;
    }

    .footer-bottom span {
        margin: 0 10px;
        color: #444;
    }

    .footer-bottom a {
        color: #d8a11a;
        font-weight: 600;
        text-decoration: none;
    }

        .footer-bottom a:hover {
            color: #fff;
        }

/* FOOTER */
.typewriter-link {
    color: #777;
    text-decoration: none;
}

    .typewriter-link:hover {
        color: #d8a11a;
    }

.cursor {
    margin-left: -1px;
    color: #777;
    animation: blink .8s infinite;
}

@keyframes blink {
    0%,50% {
        opacity: 1;
    }

    51%,100% {
        opacity: 0;
    }
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid #222;
    text-align: center;
}

    .footer-bottom p {
        color: #777;
        font-size: .9rem;
        margin: 0;
    }

.typewriter-link {
    color: #777;
    text-decoration: none;
}

    .typewriter-link:hover {
        color: #d8a11a;
    }



@keyframes blink {
    0%,50% {
        opacity: 1;
    }

    51%,100% {
        opacity: 0;
    }
}
/* FOOTER */

/* WHATSAPP */

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 9999;
}

/* TABLET */

@media(max-width:1100px) {

    .specialty-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .features .container {
        grid-template-columns: repeat(2,1fr);
    }

    .gallery {
        grid-template-columns: repeat(2,1fr);
    }
}

/* MOBILE */

@media(max-width:900px) {

    .phone {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 85px;
        left: 0;
        width: 100%;
        background: #0b0b0b;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 30px 0;
    }

        .nav-links.active {
            display: flex;
        }

    .hero {
        text-align: center;
    }

    .hero-content {
        margin: auto;
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 3.8rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .socials {
        justify-content: center;
    }
}

@media(max-width:600px) {

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .section,
    .specialties,
    .about,
    .contact {
        padding: 70px 0;
    }

    .categories,
    .gallery,
    .specialty-grid {
        grid-template-columns: 1fr;
    }

    .features .container {
        grid-template-columns: 1fr;
    }

    .contact-box {
        padding: 25px;
    }

}


