* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #000000;

}

.nav-container {
    position: relative;
}

.backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 40;
    display: none;
}

.backdrop.active {
    display: block;
}

.nav {
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    position: relative;
    z-index: 50;
}

.nav-content {
    max-width: 1024px;
    margin: 0 auto;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
    padding: 0 16px;
}

.nav-logo {
    color: white;
    transition: color 0.2s;
}

.nav-logo:hover {
    color: rgba(255, 255, 255, 0.8);
}

.nav-logo svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.desktop-menu {
    display: none;
}
.content-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
    height: calc(100vh - 48px); /* Subtract navbar height */
}

.body-text {
    flex: 0 1 45%;
    position: relative;
    color: #000000;
    font-family: 'Arial', sans-serif;
    color: #dccfcf;
    line-height: 1.6;
    transform: none;
    top: 0;
    left: 0;
}

.slider-container {
    flex: 0 1 45%;
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.slider {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: none; /* Hide all slides by default */
}

.slide.active {
    opacity: 1;
    display: block; /* Show only active slide */
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (min-width: 768px) {
    .desktop-menu {
        display: flex;
        gap: 32px;
    }
}

.nav-item {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.nav-item:hover {
    color: white;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 24px;
}

.icon-button {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
}

.icon-button:hover {
    color: white;
}

.search-icon,
.bag-icon {
    width: 16px;
    height: 16px;
}

.menu-button {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

@media (min-width: 768px) {
    .menu-button, .mobile-menu {
        display: none;
    }
}

.menu-button-bar {
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
}

.menu-button.active .menu-button-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-button.active .menu-button-bar:nth-child(2) {
    opacity: 0;
}

.menu-button.active .menu-button-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
    
    top: 48px;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 45;
    padding: 24px 16px;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-menu.active {
    position: fixed;
    transform: translateY(0);
}

.mobile-nav-item {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 18px;
    padding: 8px 0;
    transition: color 0.2s;
}

.mobile-nav-item:hover {
    color: white;
}