/* ====================== ETERNALLY FROZEN TATTOO - FULL STYLES.CSS (March 2026) ====================== */
/* Perfect match for your current index.html + ice theme + readability */

* {
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    padding-top: 100px;
    margin: 0;
}

/* HERO - EXACT MATCH FOR YOUR CURRENT HTML */
.hero {
    position: relative;
    min-height: 100vh;
    background: url('images/hero.webp') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(5, 15, 45, 0.75), rgba(10, 30, 70, 0.92));
    z-index: 1;
}

.hero-logo {
    position: relative;
    z-index: 3;
    max-height: 260px;
    width: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 12px 40px rgba(0, 212, 255, 0.4));
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem 1.5rem;
    max-width: 960px;
}

.hero-title {
    font-size: clamp(3.2rem, 9vw, 7rem);
    font-weight: 900;
    letter-spacing: 0.06em;
    color: #ffffff;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.95);
    margin-bottom: 1rem;
    line-height: 1.05;
}

.hero-subtitle {
    font-size: clamp(1.3rem, 4vw, 2.1rem);
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
    margin-bottom: 0.5rem;
    opacity: 0.98;
}

.hero-location {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-book {
    display: inline-block;
    background: transparent;
    border: 4px solid #d4af37;
    color: #d4af37;
    padding: 1.25rem 3.5rem;
    font-size: clamp(1.25rem, 4vw, 1.8rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.4s ease;
}

.btn-book:hover {
    background: #d4af37;
    color: #000;
    transform: scale(1.05);
}

/* ABOUT SECTION */
.about-section {
    padding: 4rem 1.5rem;
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;
}

.about-section img {
    margin-bottom: 2rem;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    max-width: 100%;
}

/* MOBILE */
@media (max-width: 640px) {
    body {
        padding-top: 90px;
    }

    .hero-logo {
        max-height: 180px;
    }

    .hero-content {
        padding: 1.5rem 1rem;
    }
}
/* NAV HEADER - FOR SEPARATE header.html (ice theme) */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
}

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

.nav-logo {
    max-height: 55px;
    width: auto;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    margin-left: 2.5rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #d4af37;
    /* gold accent */
}

/* Fix hero so it doesn't fight the fixed header */
.hero {
    min-height: 85vh;
    /* was 100vh — this stops the massive scroll */
}

/* Body padding for fixed header */
body {
    padding-top: 95px;
}