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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #000000;
    color: #FFFFFF;
    overflow-x: hidden;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-container {
    max-width: 1536px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logoImg {
    height: 2.5rem;
    width: auto;
    margin-right: 1rem;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logoImg:hover {
    transform: scale(1.05);
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.3em;
    color: #F377AD;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-btn {
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 0.875rem;
    letter-spacing: 0.3em;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-btn:hover {
    color: #F377AD;
}

/* HAMBURGER MENU */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 100;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #FFFFFF;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    z-index: 90;
    transition: right 0.4s ease;
    overflow-y: auto;
    border-left: 1px solid rgba(224, 18, 26, 0.3);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 6rem 2rem 2rem;
}

.mobile-menu-section {
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu-title {
    width: 100%;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    padding: 1.2rem 1rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.mobile-menu-title:hover {
    color: #F377AD;
    background-color: rgba(224, 18, 26, 0.05);
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.mobile-menu-section.active .dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: rgba(255, 255, 255, 0.02);
}

.mobile-menu-section.active .mobile-submenu {
    max-height: 500px;
}

.mobile-submenu-link {
    display: block;
    color: #CCCCCC;
    text-decoration: none;
    padding: 1rem 1.5rem 1rem 2rem;
    font-size: 1rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-submenu-link:hover {
    color: #FFFFFF;
    background-color: rgba(224, 18, 26, 0.1);
    border-left-color: #F377AD;
    padding-left: 2.5rem;
}

.desktop-only {
    display: flex;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }
    
    .desktop-only {
        display: none;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 90%;
    }
    
    .mobile-menu-title {
        font-size: 1.1rem;
        padding: 1rem 0.8rem;
    }
    
    .mobile-submenu-link {
        font-size: 0.95rem;
        padding: 0.9rem 1.2rem 0.9rem 1.5rem;
    }
}

/* BACKDROP */
.backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 40;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

/* SIDEBAR */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 30%;
    background-color: #000000;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 50;
    transform: translateX(-100%);
    transition: transform 0.5s ease-in-out;
    padding: 2rem;
}

.sidebar.active {
    transform: translateX(0);
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.sidebar-title {
    font-size: 1.5rem;
    letter-spacing: 0.3em;
    font-weight: 300;
}

.close-btn {
    background: none;
    border: none;
    color: #FFFFFF;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.close-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-link {
    display: block;
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.sidebar-link:hover {
    color: #F377AD;
    border-bottom-color: rgba(213, 99, 148, 0.5);
}

/* HERO SLIDER */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.slides-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
}

.slide-content {
    position: absolute;
    bottom: 6rem;
    left: 3rem;
    max-width: 42rem;
    transition: all 0.7s ease;
}

.slide:not(.active) .slide-content {
    opacity: 0;
    transform: translateY(2rem);
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-title {
    font-size: 4.5rem;
    font-weight: bold;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.slide-description {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    font-weight: 300;
    color: #E5E5E5;
    line-height: 1.6;
}

.cta-btn {
    margin-top: 2rem;
    padding: 0.75rem 2rem;
    background-color: #F377AD;
    border: none;
    color: #FFFFFF;
    letter-spacing: 0.3em;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #F377AD;
}

/* NAVIGATION ARROWS */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: none;
    color: #FFFFFF;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.arrow:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.arrow-left {
    left: 2rem;
}

.arrow-right {
    right: 2rem;
}

/* SLIDE INDICATORS */
.indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    display: flex;
    gap: 0.75rem;
}

.indicator {
    width: 3rem;
    height: 0.25rem;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

.indicator.active {
    background-color: #F377AD;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .sidebar {
        width: 80%;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
}

footer{
    background-color: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    text-align: center;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    color: #888888;
} 