/* General Body and Font */
body {
    font-family: 'Swatch it', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h2, h3 {
    font-family: 'montserrat', sans-serif;
}

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #111;
    padding: 20px;
    color: white;
}

.navbar .logo h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
}

.nav-links a:hover {
    color: #e60012;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    padding-top: 20%;
}

.hero-content h2 {
    font-size: 48px;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    margin: 20px 0;
}

.hero-content .btn {
    background-color: #e60012;
    padding: 12px 30px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.hero-content .btn:hover {
    background-color: #111;
}

/* Features Section */
.features {
    text-align: center;
    padding: 50px 0;
}

.features h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.feature-card {
    display: inline-block;
    width: 30%;
    text-align: center;
    margin: 0 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 50px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Collection Section */
.collection {
    padding: 50px 0;
    text-align: center;
}

.collection h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.collection-gallery {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.collection-item {
    width: 30%;
}

.collection-item img {
    width: 100%;
    border-radius: 10px;
}

/* Shop Section */
.shop {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.shop h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.shop-items {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.shop-item {
    background-color: #fff;
    width: 45%;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.shop-item img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.shop-item h4 {
    font-size: 24px;
    font-weight: 600;
}

.shop-item p {
    font-size: 20px;
    color: #e60012;
}

.shop-btn {
    background-color: #e60012;
    padding: 12px 30px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.shop-btn:hover {
    background-color: #111;
}

/* Footer Section */
footer {
    background-color: #111;
    color: white;
    text-align: center;
    padding: 20px;
}

.social-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    color: white;
    font-size: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .shop-items {
        flex-direction: column;
    }

    .shop-item {
        width: 100%;
    }

    .collection-gallery {
        flex-direction: column;
    }

    .feature-card {
        width: 100%;
        margin-bottom: 30px;
    }

    .navbar .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .hero-content h2 {
        font-size: 32px;
    }
}
