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

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

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    background-image: url('kahlil.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 6rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-content .tagline {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.series-link {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    z-index: 2;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.series-link:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
}

.series-link i {
    transition: transform 0.3s ease;
}

.series-link:hover i {
    transform: scale(1.1);
}

.social-icons {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
}

.social-icons a i {
    transition: transform 0.3s ease;
}

.social-icons a:hover i {
    transform: scale(1.1);
}

.reviews-sidebar {
    position: fixed;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.reviews-label {
    font-family: 'Bebas Neue', cursive;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.6);
    writing-mode: vertical-rl;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.review-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.review-logo span {
    font-family: 'Bebas Neue', cursive;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 1.1;
    padding: 0.25rem;
}

.review-logo:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.review-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.review-modal.active {
    display: flex;
}

.review-modal-content {
    position: relative;
    max-width: 700px;
    margin: 2rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

.review-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-modal-close:hover {
    color: white;
}

.review-modal-publication {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.review-modal-quote {
    font-family: 'Inter', serif;
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-style: italic;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Hamburger menu styles */
.hamburger-menu {
    display: none;
    position: fixed;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 200;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hamburger-menu span {
    width: 24px;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
}

.hamburger-menu:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 150;
    padding: 6rem 2rem 2rem;
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-content {
    max-width: 400px;
    margin: 0 auto;
}

.mobile-menu-label {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    margin-bottom: 2rem;
    text-align: center;
}

.mobile-review-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.mobile-review-logo {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mobile-review-logo span {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    letter-spacing: 0.05em;
    padding: 1rem;
}

.mobile-review-logo:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

/* Tablet styles (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-content h1 {
        font-size: 5rem;
    }

    .hero-content .tagline {
        font-size: 1.3rem;
    }

    .reviews-sidebar {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .social-icons {
        bottom: 2.5rem;
        gap: 1.25rem;
    }

    .social-icons a {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .series-link {
        bottom: 2.5rem;
        right: 2.5rem;
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
}

/* Mobile styles (max-width: 768px) */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 2rem;
    }

    .hero-content h1 {
        font-size: 3.5rem;
        margin-bottom: 1rem;
        line-height: 1.1;
    }

    .hero-content .tagline {
        font-size: 1rem;
        letter-spacing: 0.1em;
    }

    /* Hide desktop reviews sidebar */
    .reviews-sidebar {
        display: none;
    }

    /* Show hamburger menu on mobile */
    .hamburger-menu {
        display: flex;
    }

    .social-icons {
        bottom: 2rem;
        gap: 1rem;
    }

    .social-icons a {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .series-link {
        position: fixed;
        top: 1.5rem;
        bottom: auto;
        right: 1.5rem;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        z-index: 200;
    }

    .review-modal-content {
        margin: 1rem;
        padding: 2rem;
    }

    .review-modal-quote {
        font-size: 1.1rem;
    }

    .review-modal-publication {
        font-size: 1.2rem;
    }
}

/* Extra small mobile (max-width: 414px) */
@media (max-width: 414px) {
    .hero-content h1 {
        font-size: 2.8rem;
        margin-bottom: 0.75rem;
    }

    .hero-content .tagline {
        font-size: 0.9rem;
    }

    .social-icons {
        bottom: 1.5rem;
        gap: 0.75rem;
        flex-wrap: wrap;
        max-width: 90%;
        justify-content: center;
    }

    .social-icons a {
        width: 42px;
        height: 42px;
        font-size: 0.95rem;
    }

    .series-link {
        position: fixed;
        top: 1rem;
        bottom: auto;
        right: 1rem;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        z-index: 200;
    }

    .hamburger-menu {
        top: 1rem;
        left: 1rem;
        width: 45px;
        height: 45px;
    }

    .hamburger-menu span {
        width: 20px;
    }

    .mobile-review-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .mobile-review-logo span {
        font-size: 1rem;
        padding: 0.75rem;
    }
}

/* Very small mobile (max-width: 375px) */
@media (max-width: 375px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .tagline {
        font-size: 0.85rem;
        letter-spacing: 0.08em;
    }

    .social-icons {
        gap: 0.6rem;
    }

    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .mobile-menu {
        padding: 5rem 1.5rem 1.5rem;
    }

    .mobile-review-logo span {
        font-size: 0.9rem;
    }
}
