/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    line-height: 1.6;
    color: #222;
    padding: env(safe-area-inset-top, 0)
    env(safe-area-inset-right, 0)
    env(safe-area-inset-bottom, 0)
    env(safe-area-inset-left, 0);
}

/* Container */
.container {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.grid {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

h1 {
    font-size: clamp(1.5rem, 2vw + 1rem, 3rem);
}

p {
    font-size: clamp(1rem, 1vw + 0.5rem, 1.25rem);
}

/* Header */
header {
    background: #000000;
    color: #ffd700;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .logo {
    display: inline-block;
    font-size: 28px;
    font-weight: bold;
}

header nav {
     float: right; 
    color: #ffd700;
    flex-wrap: wrap;
}

header nav ul {
    list-style: none;
}

header nav ul li {
    display: inline;
    margin-left: 25px;
}

header nav ul li a {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
}

.nav-list {
    display: inline-flex;
    column-gap: 2rem;
    flex-wrap: wrap;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: opacity 2.5s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 0;
}

.hero-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slider .slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 15px;
}

.hero-slider .btn {
    display: inline-block;
    background: #000000;
    color: #ffd700;
    padding: 12px 25px;
    margin-top: 15px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

/* Sections */
section {
    padding: 60px 0;
}

section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 36px;
    color: #ffd700;
}

section p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

/* About Features */
.features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.feature-card {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    margin: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

/* Products Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 25px;
}

.product-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 15px rgba(0, 0, 0, 0.2);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

.social {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social img {
    width: 40px;
    height: 40px;
    padding-right: 10px;
    transition: transform 0.3s ease;
}

.social img:hover {
    transform: translateY(-5px);
}

/* Contact Form */
.contact form {
    max-width: 600px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
}

.contact input,
.contact textarea {
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact button {
    padding: 12px;
    background: #e67e22;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

/* Footer */
footer {
    background: #000000;
    color: #ffd700;
    text-align: center;
    padding: 10px 0;
}

.address img {
    align-items: center;
    background: #F3F2F2;
    padding: 15px 0;
    width: 250px;
    height: 200px;
}

.address p {
    text-align: left;
    margin-left: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    header nav {
        display: none;
    }

    .menu-toggle {
        display: block;
        float: right;
        margin-top: -30px;
        margin-right: 20px;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }

    .container {
        padding: 0.5rem;
    }
}