* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('https://i.pinimg.com/736x/0c/c4/22/0cc4223d5336ed6b5f8de995826fcc44.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hamburger {
    position: fixed;
    top: 30px;
    left: 30px;
    width: 35px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.logo {
    position: fixed;
    top: 0px;
    right: 30px;
    z-index: 100;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.5s;
}

.logo img {
    height: 200px;
    width: auto;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -350px;
    width: 320px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    padding: 100px 30px 40px;
    transition: left 0.5s ease;
    z-index: 1000;
    overflow-y: auto;
}

.sidebar.active {
    left: 0;
}

.menu {
    list-style: none;
}

.menu > li {
    margin-bottom: 15px;
}

.menu-item {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 15px 10px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.menu-item:hover,
.menu-item.active {
    border-bottom-color: #fff;
}

.has-dropdown {
    position: relative;
}

.dropdown-trigger {
    cursor: pointer;
}

.dropdown-trigger.expanded {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 5px;
}

.submenu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    margin-left: 20px;
}

.submenu.active {
    max-height: 500px;
    margin-top: 10px;
}

.submenu li {
    margin-bottom: 10px;
}

.submenu a {
    display: block;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    padding: 10px 15px;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
}

.submenu a:hover {
    color: #fff;
    border-left-color: #fff;
    padding-left: 20px;
}

.social-submenu a {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icon {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.sidebar-cta {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button {
    display: block;
    text-align: center;
    color: #000;
    background: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

.hero-content {
    position: absolute;
    top: 62%;          /* Changed from 50% - moves DOWN */
    left: 160px;       /* Changed from 80px - moves RIGHT */
    transform: translateY(-50%);
    z-index: 10;
    max-width: 1150px;
}


.hero-title {
    color: #bebebe;
    font-family: 'Anton', sans-serif;
    font-size: 72px;
    font-weight: 800;
    line-height: 1.0;
    margin-bottom: 100px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.3s;
}



.hero-cta {
    display: inline-block;
    color: #000;
    background: #fff;
    text-decoration: none;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.9s;
}

.hero-cta:hover {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.social-icons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 20px;
    z-index: 100;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.2s;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #fff;
    transform: translateY(-5px);
}

.social-link svg {
    width: 22px;
    height: 22px;
    fill: #000;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 50px;
    }

    .hero-content {
        left: 40px;
    }

    .hero-title {
        font-size: 42px;
    }

    .sidebar {
        width: 280px;
        left: -280px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        left: 20px;
    }

    .hero-title {
        font-size: 32px;
    }
}