/* === HAMBURGER MENU === */

/* Hamburger menu styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 120;
}
.hamburger .bar {
    width: 28px;
    height: 4px;
    background: #fff;
    box-shadow: 0 0 8px #e60026cc, 0 2px 8px #000a;
    margin: 3px 0;
    border-radius: 2px;
    transition: background 0.3s;
}
.hamburger:hover .bar {
    background: #e60026;
}
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 70vw;
    max-width: 320px;
    height: 100vh;
    background: #111114ee;
    box-shadow: -2px 0 24px #000a;
    z-index: 110;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem 2rem;
    gap: 1.5rem;
    list-style: none;
    transition: transform 0.3s cubic-bezier(.77,0,.18,1);
    transform: translateX(100%);
}
.mobile-menu.open {
    display: flex;
    transform: translateX(0);
}
.mobile-menu li {
    width: 100%;
}
.mobile-menu a {
    color: #fff;
    font-size: 1.3rem;
    text-decoration: none;
    display: block;
    padding: 0.7rem 0;
    border-bottom: 1px solid #23232b;
    transition: color 0.2s;
}
.mobile-menu a:hover:not(.disabled) {
    color: #e60026;
}

@media (max-width: 900px) {
    .main-nav {
        flex-direction: row;
        gap: 0.7rem;
        padding: 0 0.5rem;
        justify-content: space-between;
        align-items: center;
    }
    .nav-links {
        display: none !important;
    }
    .hamburger {
        display: flex !important;
        margin-left: auto;
        padding: 0 !important;
    }
}

@media (max-width: 900px) {
    /* ...existing code... */
    .hamburger {
        padding: 0 !important;
    }
}
/* === GALLERY CAROUSEL === */
.carousel-section {
    width: 100%;
    background: #18181a;
    padding: 1.2rem 0 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.carousel-title {
    color: #e60026;
    font-size: 2.2rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    font-family: 'Montserrat', 'Century Gothic', Arial, sans-serif;
    font-weight: 400;
    text-align: center;
}
.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    position: relative;
}
.carousel-btn {
    background: rgba(0,0,0,0.7);
    color: #e60026;
    border: none;
    font-size: 2.5rem;
    padding: 0.3em 0.7em;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s, color 0.2s;
    margin: 0 0.5rem;
    box-shadow: 0 2px 12px #000a;
}
.carousel-btn:hover {
    background: #e60026;
    color: #fff;
}
.carousel-track-wrapper {
    overflow: hidden;
    width: 100%;
    max-width: 700px;
    border-radius: 1.2rem;
    box-shadow: 0 4px 32px #000a;
    background: #111114;
}
.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(.77,0,.18,1);
    will-change: transform;
}
.carousel-img {
    min-width: 100%;
    max-width: 100%;
    height: 380px;
    object-fit: contain;
    background: #111114;
    border-radius: 1.2rem;
    box-shadow: 0 2px 16px #000a;
    user-select: none;
    pointer-events: none;
}
@media (max-width: 900px) {
    .carousel-track-wrapper {
        max-width: 95vw;
    }
    .carousel-img {
        height: 220px;
    }
}
@media (max-width: 600px) {
    .carousel-section {
        padding: 0.2rem 0 2rem 0 !important;
        margin-top: 0 !important;
    }
    .carousel-track-wrapper {
        position: static !important;
        left: auto !important;
        width: 100vw !important;
        max-width: 100vw !important;
        border-radius: 0 !important;
        margin-left: 0 !important;
    }
    .carousel-img {
        width: 100vw !important;
        max-width: 100vw !important;
        height: auto !important;
        max-height: 60vw;
        border-radius: 0 !important;
        margin: 0 !important;
        border: none !important;
    }
    .carousel-btn {
        position: absolute !important;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        background: rgba(0,0,0,0.5);
        font-size: 2rem;
        padding: 0.3em 0.7em;
    }
    .carousel-btn:first-child {
        left: 0.5rem;
    }
    .carousel-btn:last-child {
        right: 0.5rem;
    }
}
body {
    margin: 0;
    font-family: 'Montserrat', 'Century Gothic', Arial, sans-serif;
    background: #18181a;
    color: #f2f2f2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    letter-spacing: 0.01em;
}


header {
    background: linear-gradient(90deg, #18181a 80%, #23232b 100%);
    box-shadow: 0 2px 12px #000a;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-frame {
    border-bottom: 4px solid #e60026;
    box-sizing: border-box;
    background: #000;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-logo img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 0 16px #e60026cc);
    background: #000;
    border-radius: 50%;
    padding: 0.3rem;
    box-sizing: content-box;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: inline-block;
}

.nav-links a {
    color: #f2f2f2;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 1px;
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}

.nav-links a:hover:not(.disabled) {
    background: #e60026;
    color: #fff;
}

.nav-links .disabled {
    opacity: 0.5;
    pointer-events: none;
}

footer {
    background: linear-gradient(90deg, #18181a 80%, #23232b 100%);
    color: #f2f2f2;
    padding: 1.5rem 0 1rem 0;
    text-align: center;
    font-size: 1rem;
    letter-spacing: 1px;
    box-shadow: 0 -2px 12px #000a;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
}

.footer-social {
    color: #e60026;
    text-decoration: none;
    margin: 0 0.2rem;
    font-weight: bold;
    transition: color 0.2s;
}
.footer-social:hover:not(.disabled) {
    color: #fff;
    text-shadow: 0 0 8px #e60026cc;
}
.footer-social.disabled {
    opacity: 0.5;
    pointer-events: none;
}

header, footer {
    background: #111114;
    color: #f2f2f2;
    padding: 1.5rem 0;
    text-align: center;
    letter-spacing: 2px;
}

main {
    flex: 1;
}


/* HERO SECTION */

.hero {
    position: relative;
    min-height: 50vh;
    background: linear-gradient(120deg, #18181a 80%, #1a1a1d 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 20, 0.72);
    z-index: 1;
    pointer-events: none;
}

.hero-content-centered {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    width: 100%;
    max-width: 1200px; /* Increased for desktop */
    margin: 0 auto;
    padding: 0 2vw; /* Reduced horizontal padding for desktop */
    margin-top: 0.5rem;
    box-sizing: border-box;
}

@media (max-width: 900px) {
    .hero-content-centered {
        max-width: 900px;
        padding: 0.1rem 2rem 0 2rem;
        margin-top: 0;
    }
}
@media (max-width: 600px) {
    .hero-content-centered {
        max-width: 900px;
        padding: 0.1rem 1rem 0 1rem;
        margin-top: 0;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    .hero {
        min-height: 4vh !important; /* Reduce hero height on mobile */
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    .carousel-section {
        padding: 0.2rem 0 2rem 0 !important;
        margin-top: 0 !important;
    }
}

.hero-bg {
    background: url('../images/cover1.jpg') center center/cover no-repeat, #18181a;
}

.hero-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2.2rem 3.5vw 0.5rem 2vw;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.hero-logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 8px #e60026cc);
    background: rgba(0,0,0,0.2);
    border-radius: 50%;
}

.hero-nav {
    display: flex;
    gap: 2.5rem;
    margin-top: 0.5rem;
}
.hero-link {
    color: #f2f2f2;
    text-decoration: none;
    font-family: 'Montserrat', 'Century Gothic', Arial, sans-serif;
    font-size: 1.25rem;
    letter-spacing: 1.5px;
    transition: color 0.2s;
    position: relative;
}
.hero-link:hover {
    color: #e60026;
}

.hero-content-left {
    position: relative;
    z-index: 1;
    margin-top: 10vh;
    margin-left: 7vw;
    max-width: 700px;
    text-align: left;
    background: rgba(0,0,0,0.45);
    padding: 2.5rem 2.5rem 2.5rem 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px #000a;
}


.hero-title {
    font-size: 7vw;
    min-font-size: 3rem; /* Ensures minimum size on large screens */
    font-family: 'Montserrat', 'Century Gothic', Arial, sans-serif;
    font-weight: 400;
    color: #fff;
    margin: 0.2em 0 0.1em 0;
    letter-spacing: 0.1em;
    line-height: 1.05;
    text-shadow: 0 4px 32px #000a;
    word-break: break-word;
}
@media (min-width: 1200px) {
    .hero-title {
        font-size: 5rem;
    }
}
.hero-subtitle {
    font-size: 2.5vw;
    color: #fff;
    font-family: 'Montserrat', 'Century Gothic', Arial, sans-serif;
    font-weight: 300;
    margin-bottom: 0.7em;
    margin-top: 0.1em;
    text-shadow: 0 2px 12px #000a;
}
.hero-line {
    border: none;
    border-top: 3px solid #fff;
    margin: 1.2em 0 1.2em 0;
    width: 100%;
    opacity: 0.85;
}
.hero-desc {
    font-size: 1.7vw;
    color: #f2f2f2;
    line-height: 1.7;
    font-family: 'Montserrat', 'Century Gothic', Arial, sans-serif;
    font-weight: 300;
    margin: 0;
    text-shadow: 0 2px 12px #000a;
}
.dropcap {
    float: left;
    font-size: 3.5vw;
    line-height: 0.7;
    font-family: 'Montserrat', 'Century Gothic', Arial, sans-serif;
    font-weight: 400;
    color: #fff;
    margin-right: 0.18em;
    margin-top: 0.08em;
    text-shadow: 0 2px 12px #000a;
}

.covers {
    background: #1a1a1d;
    padding: 0.7rem 1rem 2rem 1rem;
    text-align: center;
}

.covers h2 {
    font-size: 2rem;
    color: #e60026;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.cover-gallery {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cover-gallery img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 16px #000a;
    border: 2px solid #23232b;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cover-gallery img:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 6px 32px #e6002677;
    border-color: #e60026;
}


@media (max-width: 900px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 1.3rem;
    }
    .hero-desc {
        font-size: 1.2rem;
    }
    .dropcap {
        font-size: 2em;
    }
    .hero-content-centered {
        padding: 0.1rem 2rem 0 2rem;
        margin-top: 0;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-desc {
        font-size: 1rem;
    }
    .dropcap {
        font-size: 1.5em;
    }
    .hero-content-centered {
        padding: 0.1rem 1rem 0 1rem;
        margin-top: 0;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    .hero {
        min-height: 60vh !important; /* Reduce hero height on mobile */
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    .carousel-section {
        padding: 0.2rem 0 2rem 0 !important;
        margin-top: 0 !important;
    }
}

.hero-home {
    min-height: 50vh;
}
.hero-gallery {
    min-height: 30vh;
}
@media (max-width: 600px) {
    .hero-home {
        min-height: 60vh !important;
    }
    .hero-gallery {
        min-height: 20vh !important;
    }
}
