:root {
    --primary-color: #4b5548;
    --secondary-color: #000000;
    --text-color-dark: #333;
    --text-color-light: #000000;
    --toggle-color: #333;
    --bg-light: #fff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--secondary-color);
    color: var(--text-color-dark);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    position: relative;
}

/* Navbar Styles */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    width: 100%;
    top: -5px;
    left: 0;
    z-index: 1000;
}

.nav-logo-link {
    z-index: 1002;
    transition: transform 0.3s ease;
}

.nav-logo-link:hover {
    transform: scale(1.05);
}

.nav-logo {
    height: 150px;
}

.nav-menu {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 50px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color-light);
    font-size: 1.1rem;
    position: relative;
    /* letter-spacing: 0.5px; Added for subtle spacing */
    transition: color 0.3s ease, letter-spacing 0.3s ease, transform 0.3s ease;
    /* Added for rich effect */
}

.nav-link:hover {
    color: var(--primary-color);
    /* letter-spacing: 1.5px; Increased letter-spacing on hover */
    transform: translateY(-2px);
    /* Subtle lift on hover */
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Mobile Toggle Button */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.nav-toggle .bar {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--toggle-color);
    margin: 6px 0;
    border-radius: 2px;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

/* Responsive and Cinematic Effect */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-logo-link.desktop-logo {
        display: none;
    }

    .nav-logo-link.mobile-logo {
        display: none;
        /* Hidden by default */
    }

    .nav-toggle {
        display: block;
        order: 3;
    }

    .nav-menu {
        display: none;
        /* Hidden by default on mobile */
    }

    /* Active menu state */
    .nav-menu.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        clip-path: circle(0% at 50% 50%);
        /* New animation start state */
        transition: clip-path 0.8s cubic-bezier(0.86, 0, 0.07, 1);
        z-index: 999;
    }

    .nav-menu.active {
        clip-path: circle(150% at 50% 50%);
        /* New animation end state */
    }

    .nav-logo-link.mobile-logo {
        display: block;
        position: relative;
        transform: none;
        left: auto;
        order: 0;
        margin-bottom: 30px;
        opacity: 0;
        animation: fadeInLinks 0.8s ease forwards 0.3s;
    }

    .nav-links {
        flex-direction: column;
        gap: 1.5rem;
        opacity: 0;
    }

    .nav-menu.active .nav-links {
        animation: fadeInLinks 0.8s ease forwards 0.3s;
    }

    .nav-menu.active .nav-links li {
        animation: slideInLinks 0.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
        animation-delay: var(--i);
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .nav-link::after {
        height: 3px;
        bottom: -8px;
    }
}

/* Toggle button animation */
.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    /* Adjusted */
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    /* Adjusted */
}

/* Keyframes for cinematic effect */
@keyframes fadeInLinks {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLinks {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Top Tagline Section */

/* Top Banner */
.top-banner {
    width: 100%;
    height: 40px;
    background-color: #000000;
    color: #ba9860;
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 10px;
}

.top-banner p {
    margin: 0;
}

/* Main Section */

/* Hero Section */
.hero-section {
    width: 100%;
    height: calc(100vh - 80px);
    /* Adjust based on navbar height */
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease-in-out, visibility 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(255, 255, 255, 0.2); */
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    text-align: left;
}



/* Product Info */
.hero-product-info {
    max-width: 500px;
    background-color: rgba(168, 158, 158, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    opacity: 0;
    transform: translateY(20px);
    animation: fadeInSlideUp 0.8s ease forwards 0.5s;
}

/* Text elements */
.hero-product-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #e0d9d4;
    margin-bottom: 10px;
}

.hero-product-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
}

.hero-product-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #f0f0f0;
    margin-bottom: 30px;
}

.shop-now-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #fff;
    color: #4b5548;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.shop-now-btn:hover {
    background-color: #ccc;
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section {
        height: 80vh;
        /* Use full viewport height for a grander look */
    }

    .hero-slide {
        /* Align content to the bottom of the hero section */
        align-items: flex-end;
        padding: 20px;
    }

    .hero-slide-bg {
        /* The image will now cover the entire hero section */
        background-size: cover;
        background-position: 50% 50%;
        /* Center the image */
    }

    .hero-slide-bg::after {
        /* Add a gradient or darker overlay for text readability */
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent 70%);
    }

    .hero-content {
        /* Position content over the image */
        position: relative;
        z-index: 3;
        width: 100%;
        padding: 0;
        /* Remove extra padding */
        display: flex;
        justify-content: center;
        text-align: center;
    }

    .hero-product-info {
        max-width: 100%;
        padding: 25px;
        /* Adjust padding to be more compact */
        text-align: center;
        /* Glass effect with a slightly darker color for better contrast */
        background-color: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    }

    .hero-product-title {
        font-size: 2rem;
        /* Make the title smaller for mobile */
    }

    .hero-product-tagline {
        font-size: 0.9rem;
    }

    .hero-product-description {
        font-size: 0.8rem;
    }
}

/* Scroling Section */

/* <!-- <-------  Reel section

                                    ---------->  */
/* Video Reel Section */
.video-reel-section {
    padding: 80px 0;
    background-color: #fffcfc;
    color: rgb(0, 0, 0);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
    color: #000000;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #000000;
}

.video-reel-container {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0;
    scrollbar-width: none;
    /* Hide scrollbar for Firefox */
    -ms-overflow-style: none;
    /* Hide scrollbar for IE/Edge */
}

.video-reel-container::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome/Safari */
}

.video-reel-item {
    position: relative;
    min-width: 300px;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.video-reel-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-reel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    font-size: 1.1rem;
}


/* ????????????????????? REEl SECTION???????????????????????????????????????? */

/* Responsive Design */
@media (max-width: 768px) {
    .video-reel-item {
        min-width: 250px;
        height: 400px;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .video-reel-item {
        min-width: 200px;
        height: 350px;
    }
}


/* Product Section */
.products-section {
    padding: 50px 20px;
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
}

.product-cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* For small screens */
@media (max-width: 1024px) {
    .product-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .product-cards-container {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    border: #ba9860 solid 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.image-slider {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.image-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.image-track img {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .slider-btn {
    opacity: 1;
}

.slider-btn.prev-btn {
    left: 10px;
}

.slider-btn.next-btn {
    right: 10px;
}

.product-details {
    padding: 20px;
    text-align: center;
}

.product-details h3 {
    font-size: 1.25rem;
    margin: 0 0 10px;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin: 0 0 15px;
}

.buy-btn {
    background-color: #ba9860;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.buy-btn:hover {
    background-color: #cea461;
}

/* Popup styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow-y: auto;
    max-height: 90vh;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: #888;
    cursor: pointer;
}

.popup-header {
    text-align: center;
    margin-bottom: 20px;
}

.popup-header h3 {
    font-size: 2rem;
    margin: 0;
}

.popup-product-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.popup-product-info img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.popup-product-text p {
    margin: 5px 0;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.submit-btn {
    width: 100%;
    background-color: #ba9860;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #218838;
}

.product-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

/* Style for the new View button */
.view-btn {
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #ccc;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background-color: #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* New Popup for detailed view */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.view-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 900px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow-y: auto;
    max-height: 90vh;
}

.popup-product-main {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.popup-image-container {
    flex: 1;
}

.popup-image-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.popup-details-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.popup-details-container h3 {
    font-size: 2.5rem;
    margin: 0 0 10px;
}

.popup-details-container p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

#view-to-buy-btn {
    align-self: flex-start;
}

/* Responsive styles for popup */
@media (max-width: 768px) {
    .popup-product-main {
        flex-direction: column;
    }
}

/* Collaction Section */
.collections-section {
    padding: 40px 20px;
    background-color: #f8f8f8;
    font-family: Arial, sans-serif;
}

.collections-header {
    text-align: center;
    margin-bottom: 20px;
}

.collections-header h2 {
    font-size: 2em;
    font-weight: bold;
    color: #333;
    letter-spacing: 2px;
}

.collections-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    /* Allows items to wrap to a new line */
}

.collection-item {
    flex: 1 1 300px;
    /* Flex-grow, flex-shrink, flex-basis */
    max-width: 400px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.collection-item:hover {
    transform: translateY(-5px);
    /* Subtle hover effect */
}

.collection-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Responsive Design for smaller screens */
@media (max-width: 768px) {
    .collections-container {
        flex-direction: column;
        align-items: center;
    }

    .collection-item {
        max-width: 90%;
    }
}


.footer-section {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
    border: #ba9860 solid 1px;

}

.footer-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    max-width: 900px;
    /* Optional: for better control on large screens */
    margin: 0 auto 20px auto;
}

.footer-nav .nav-group {
    display: flex;
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav .nav-group a {
    text-decoration: none;
    color: #555;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-nav .nav-group a:hover {
    color: #000;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    /* Allows the logo to take up available space */
    padding: 0 40px;
    /* Spacing around the logo */
}

.footer-logo-img {
    max-width: 150px;
    /* Adjust as needed */
    height: auto;
}

.footer-copyright {
    color: #000000;
    font-size: 0.8rem;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-nav {
        flex-direction: column;
    }

    .footer-nav .nav-group {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;
    }
    

    .footer-logo {
        width: 20px;
        margin: 20px 0;
        padding: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {

    .subscription-section .bg-image-left,
    .subscription-section .bg-image-right {
        display: none;
    }

    .subscribe-form {
        flex-direction: column;
        align-items: center;
    }

    .subscribe-form input[type="email"] {
        width: 100%;
        max-width: 300px;
        margin-bottom: 10px;
    }

    .footer-nav {
        flex-direction: column;
    }

    .footer-nav .nav-group {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;
    }

    .footer-logo {
        margin: 20px 0;
    }
}