/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Alaska-inspired warm color palette */
    --primary-orange: rgb(255, 81, 0);
    --deep-orange: rgba(255, 213, 73, 0.78);
    --forest-brown: rgb(61, 33, 12);
    --dark-brown: #654321;
    --warm-white: #FFF8DC;
    --cream: #F5F5DC;
    --gold: #DAA520;
    --shadow-dark: rgba(0, 0, 0, 0.3);
    --shadow-light: rgba(255, 255, 255, 0.1);

    /* Glassmorphism variables */
    --glass-bg: rgba(255, 248, 220, 0.15);
    --glass-border: rgb(255, 81, 0);
    --glass-shadow: 0 8px 32px rgba(206, 75, 0, 0.1);
    --glass-blur: blur(10px);
}

body {
    font-family: 'Roboto Slab', Georgia, 'Times New Roman', Times, serif;
    line-height: 1.6;
    color: var(--warm-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
}

/* ===== NAVIGATION ===== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

.logo h1 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--primary-orange);
    text-align: center;

    margin: 0 auto;
    text-shadow: 2px 2px 4px var(--shadow-dark);
}

.logo p {
    font-size: 0.9rem;
    color: var(--warm-white);
    margin: 0;
    opacity: 0.9;
}

.nav-tabs {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-tab {
    background: transparent;
    border: 2px solid var(--glass-border);
    color: var(--warm-white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto Slab', serif;
    font-weight: 500;
}

.nav-tab:hover,
.nav-tab.active {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(210, 105, 30, 0.4);
}

.nav-phone {
    background: var(--forest-brown);
    color: var(--warm-white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--forest-brown);
}

.nav-phone:hover {
    background: var(--deep-orange);
    border-color: var(--deep-orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.4);
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/images/hero/forrest_sun.webp");
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*     background: linear-gradient(45deg,
            rgba(139, 69, 19, 0.7) 0%,
            rgba(210, 105, 30, 0.5) 50%,
            rgba(184, 134, 11, 0.6) 100%); */
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    margin-top: 80px;
}

/* ===== TAB CONTENT ===== */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== CARD CONTAINERS ===== */
.card-container {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    gap: 2rem;
    max-width: 50vw;
    margin: 0 auto;
}

.single-focus {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* ===== ACCOMMODATION CARDS ===== */
.accommodation-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.accommodation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-orange);
}

.accommodation-card.large {
    max-width: 500px;
    width: 100%;
}

.card-image {
    width: 100%;
    height: 30vh;
    background-size: contain;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.accommodation-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content h2 {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.card-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.card-content li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--warm-white);
}

.card-content li::before {
    content: '🏔️';
    position: absolute;
    left: 0;
    top: 0.3rem;
}

/* ===== CTA BUTTONS ===== */
.cta-button {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--deep-orange) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(210, 105, 30, 0.4);
    background: linear-gradient(135deg, var(--deep-orange) 0%, var(--gold) 100%);
    color: white;
    text-decoration: none;
}

.cta-button.irresistible {
    animation: pulse 2s infinite;
    box-shadow: 0 0 20px rgba(210, 105, 30, 0.3);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 20px rgba(210, 105, 30, 0.3);
    }

    50% {
        box-shadow: 0 0 30px rgba(210, 105, 30, 0.6);
    }

    100% {
        box-shadow: 0 0 20px rgba(210, 105, 30, 0.3);
    }
}

/* ===== ACTIVITY CARDS ===== */
.activity-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-orange);
}

.activity-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.activity-card:hover .activity-image img {
    transform: scale(1.1);
}

.activity-content {
    padding: 1rem;
}

.activity-content h3 {
    color: var(--primary-orange);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.activity-content p {
    color: var(--warm-white);
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(90deg, var(--dark-brown) 0%, var(--forest-brown) 100%);
    padding: 1rem 0 1rem;
    border-top: 1px solid var(--primary-orange);
}

footer h3 {
    color: var(--primary-orange);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.bl {
    color: var(--primary-orange);
}

.lodge {
    color: var(--gold);
}

.contact-info {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-info a {
    color: var(--warm-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-orange);
}

.contact-info i {
    margin-right: 0.5rem;
    color: var(--primary-orange);
}

.copyright {
    border-top: 1px solid var(--glass-border);
    padding-top: 1rem;
    opacity: 0.8;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .nav-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .card-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .activities-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 1rem;
        margin-top: 120px;
    }

    .accommodation-card {
        padding: 1rem;
    }

    .card-content h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .nav-tabs {
        flex-direction: column;
        width: 100%;
    }

    .nav-tab,
    .nav-phone {
        width: 100%;
        text-align: center;
    }

    .hero-content {
        margin-top: 180px;
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
    }
}