/* style.css */
body {
    margin: 0;
    font-family: 'Playfair Display', serif;
    color: #000;
    background-color: #f8f8f8;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid #ddd;
    position: relative;
}

.nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 1rem;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
}

.menu-icon {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-icon span {
    width: 25px;
    height: 3px;
    background-color: #000;
}

.close-icon {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #000;
}

@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }

    .nav {
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        background: #fff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 20px;
        gap: 15px;
        display: none;
        width: 100%;
    }

    .nav.active {
        display: flex;
    }

    .close-icon {
        display: block;
        align-self: flex-end;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
    }
}

.about-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}

.about-text {
    max-width: 500px;
    margin-bottom: 20px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.about-images {
    display: flex;
    gap: 20px;
}

.about-image {
    width: 200px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.socials a {
    text-decoration: none;
}

.socials img {
    width: 16px;
    margin-right: 4%;
    transition: transform 0.5s;
}

.socials img:hover {
    cursor: pointer;
    transform: translateY(-5px);
}

.brands-section {
    padding: 40px 20px;
    text-align: center;
    background-color: #f8f8f8;
}

.brands-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #000;
    margin-bottom: 25px;
}

.brands-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
    white-space: nowrap;
}

.marquee-content {
    display: inline-flex;
    animation: marquee 19s linear infinite;
    gap: 50px;
}

.marquee-content span {
    font-size: 20px;
    font-family: 'Playfair Display', serif;
    color: #333;
    font-weight: 500;
    transition: color 0.7s ease;
}

.marquee-content span:hover {
    color: #ff69b4;
    /* Highlight color on hover */
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@media screen and (max-width: 768px) {
    .marquee-content span {
        font-size: 16px;

    }
}

/* General Styles */
.youtube-section {
    padding: 40px 20px;
    text-align: center;
    background: #f8f8f8;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    color: #000;
}

/* Carousel Styles */
.carousel {
    display: flex;
    align-items: center;
    position: relative;
    max-width: 900px;
    margin: auto;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-slide iframe {
    width: 100%;
    max-width: 800px;
    height: 450px;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.carousel-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    transition: background 0.3s ease;
}

.carousel-btn:hover {
    background: #555;
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

/* Info Section */
.info-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px;
    gap: 20px;
}

.info-card {
    flex: 1;
    text-align: center;
    padding: 20px;
    border-right: 1px solid #ddd;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Playfair Display', serif;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #000;
}

.info-link {
    font-size: 1rem;
    font-style: italic;
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.info-link:hover {
    color: #000;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* TikTok Section */
.tiktok-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #fefaf3;
    font-family: 'Playfair Display', serif;
}

.tiktok-section h2 {
    font-size: 2rem;
    color: #555;
    margin-bottom: 20px;
}

.tiktok-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.tiktok-item {
    flex: 1;
    max-width: 250px;
    text-align: center;
    position: relative;
}

.mockup {
    position: relative;
    width: 260px;
    height: 400px;
    margin: 0 auto;
    border-top: 7px solid black;
    border-bottom: 2px solid black;
    border-right: 2px solid black;
    border-left: 2px solid black;
}

.mockup .phone {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
}

.mockup iframe {
    position: absolute;
    top: 3%;
    left: 2%;
    width: 95%;
    height: 95%;
    z-index: 2;
}

.tiktok-item p {
    font-size: 1rem;
    color: #666;
    margin-top: 10px;
}

/* Gallery Section */
.gallery-section {
    padding: 40px;
    background-color: #000;
    color: #fff;
    text-align: center;
}

.gallery-title {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
    opacity: 0.8;
}


.footer-copyright {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: #555;
    border-top: 1px solid #ddd;
}

@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }

    .nav {
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        background: #fff;
        box-shadow: -4px 0 6px rgba(0, 0, 0, 0.1);
        padding: 20px 30px;
        gap: 20px;
        display: none;
        width: 70%;
        height: 100vh;
        z-index: 1000;
        animation: slideIn 0.3s ease;
    }

    .nav.active {
        display: flex;
    }

    .close-icon {
        display: flex;
        align-self: flex-end;
        background: none;
        border: none;
        font-size: 2rem;
        cursor: pointer;
        color: #000;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        list-style: none;
        margin-top: 20px;
    }

    .nav-links a {
        text-decoration: none;
        color: #000;
        font-size: 1.2rem;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .nav-links a:hover {
        color: #555;
    }

    @keyframes slideIn {
        from {
            transform: translateX(100%);
        }

        to {
            transform: translateX(0);
        }
    }

    .about-images {
        display: flex;
        gap: 20px;
    }

    .about-image {
        width: 50%;
        height: auto;
        object-fit: cover;
        border-radius: 8px;
    }

    .carousel-slide iframe {
        height: 250px;
    }

    .carousel-btn {
        font-size: 1.2rem;
        padding: 8px 12px;
    }

    .info-section {
        gap: 1px;
    }

    .info-card h3 {
        font-size: 0.9rem;
    }

    .info-link {
        font-size: 0.7rem;
    }

    .tiktok-container {
        flex-direction: column;
        align-items: center;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .gallery-title {
        font-size: 1.4rem;
    }

    .footer-copyright {
        text-align: center;
        padding: 20px;
        font-size: 0.9rem;
        color: #555;
        border-top: 1px solid #ddd;
    }
}