/* CSS */

/* Custom Font */
.bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

html {
    scroll-behavior: smooth;
}

section {
    transform: translateY(20px);

    animation: fadeInUp 0.9s ease-out forwards;
    animation-delay: 0.3s;

}


@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


body {
    background-color: #121313;
    margin: 0;
}

/* ------------------- Header area ------------------- */
header {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.6rem;

}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 90px;
    margin-right: 110px;
    
}

.navbar ul {
    list-style: none;
}

.nav-links {
    display: flex;
    gap: 1.8rem;
    justify-content: right;
}


.nav-links a.selected {
    color: #D72638;
}


.logo {
    text-decoration: none;
    display: inline-block;
    line-height: 1;
}

.logo-main {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    color: #D72638;
    letter-spacing: 4px;
}

.logo-sub {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.18rem;
    color: #F2F2F2;
    letter-spacing: 2px;

}

.logo:hover {
    filter: brightness(1.2);
    transition: filter 0.3s ease;
}

.nav-links a {
    letter-spacing: 1px;
    text-decoration: none;
    color: #F2F2F2;
    transition: color 0.2s ease, transform 0.2s ease;
}


.nav-links a:hover {
    color: #D72638;
    text-decoration: underline;
    text-underline-offset: 0.7rem;
}

.nav-links .active {
    color: #D72638;
}



/* Hero Section */
.hero-section {
    /* height: 70vh; */
    display: flex;
    align-items: center;
    margin-left: 5%;
}

.hero-content {
    max-width: 50%;
    color: #F2F2F2;
    margin-right: 3%;
}

.hero-section h1 {
    font-size: 4rem;
    color: #D72638;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    margin: 0;
}

.hero-section p {
    font-size: 1.20rem;
    margin: 1rem 0 2rem;
    font-family: 'Open Sans', sans-serif;
    line-height: 2rem;
}

.hero-btn {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    background-color: #D72638;
    color: #F2F2F2;
    padding: 0.70rem 1.6rem;
    text-decoration: none;
    border-radius: 15px;
    font-weight: bold;
    transition: 0.3s;
}

.hero-btn:hover {
    background-color: #a81e2b;
}

.hero-img {
    max-width: 53%;
}


/* Featured Products */
.featured-section {
    margin: 0 5% 0 5%;
}

.featured-section h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.7rem;
    letter-spacing: 2px;
    color: #F2F2F2;
}

.featured-product-grid {
    display: flex;
    gap: 2.6rem;
    flex-wrap: wrap;
}


.featured-product-card {
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.featured-product-label {
    background-color: #D72638;
    color: #F2F2F2;
    padding: 0.75rem;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.featured-product-card img {
    width: 100%;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;

}

.featured-product-card:hover {
    transform: translateY(-4px);
}






/* About Us Section */
.about-container {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
    line-height: 1.8rem;
}

.about-container h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    color: #D72638;
    margin-bottom: 1.6rem;
    text-align: center;
}

.about-container p {
    margin-bottom: 1.8rem;
    color: #F2F2F2;
    font-size: 1.1rem;
    font-family: 'Open Sans', sans-serif;

}

footer {
    text-align: center;
    padding: 2rem 0;
    font-size: 1.2rem;
    color: #666;
    border-top: 1px solid #222;
    margin-top: 4rem;
}

