:root {
    --primary-color: #004a99;
    --secondary-color: #f2f2f2;
    --accent-color: #ff6b6b;
    --text-color: #333;
    --light-text: #666;
    --white: #ffffff;
    --dark-bg: #1a1a1a;
    --container-width: 1200px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo span {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #003366;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.btn-secondary:hover {
    background-color: #e0e0e0;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1513622470522-26c3c8a854bc?auto=format&fit=crop&w=1920&q=80' );
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.hero-btns .btn {
    margin: 0 10px;
}

/* Destinations */
.destinations {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
}

.card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.card-body {
    padding: 20px;
}

.card-body h3 {
    margin-bottom: 10px;
}

.card-body p {
    color: var(--light-text);
    margin-bottom: 15px;
}

.affiliate-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* Hygge Box Section */
.hygge-box {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.hygge-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hygge-text {
    flex: 1;
}

.hygge-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hygge-text p {
    font-size: 18px;
    margin-bottom: 20px;
}

.features {
    list-style: none;
    margin-bottom: 30px;
}

.features li {
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary-color);
}

.hygge-image {
    flex: 1;
}

.hygge-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-info .logo {
    margin-bottom: 20px;
}

.footer-links h4, .footer-contact h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
    font-size: 14px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0,0,0,0.9);
    color: var(--white);
    padding: 20px 0;
    z-index: 2000;
    display: none; /* Hidden by default, shown via JS */
}

.cookie-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-btns .btn {
    margin-left: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links, .cta-nav {
        display: none;
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .hygge-content {
        flex-direction: column;
    }
    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
    }
    .cookie-btns {
        margin-top: 15px;
    }
}

/* Affiliate & Essentials Styling */
.affiliate-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.essentials {
    padding: 80px 0;
    background-color: var(--white);
}

.essentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.essential-item {
    padding: 30px;
    border-radius: 10px;
    background-color: #fcfcfc;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.essential-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.essential-item .icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.essential-item h3 {
    margin-bottom: 15px;
}

.essential-item p {
    color: var(--light-text);
    margin-bottom: 20px;
}

.disclosure {
    font-size: 12px;
    margin-top: 10px;
    color: #666;
}

/* Coming Soon Banner */
.coming-soon-banner {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8c42 100%);
    color: var(--white);
    padding: 15px 0;
    text-align: center;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.coming-soon-banner p {
    margin: 0;
}

/* Coming Soon Modal */
.coming-soon-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.coming-soon-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.coming-soon-content h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 28px;
}

.coming-soon-content p {
    color: var(--light-text);
    margin-bottom: 25px;
    line-height: 1.6;
}

.coming-soon-content .btn {
    margin-top: 10px;
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--text-color);
}

/* Coming Soon Link Styling */
.coming-soon-link {
    opacity: 0.8;
    cursor: not-allowed;
}

.coming-soon-link:hover {
    opacity: 1;
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    display: none; /* Hidden on desktop */
    justify-content: space-around;
    padding: 10px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1500;
}

.sticky-btn {
    flex: 1;
    margin: 0 5px;
    padding: 12px;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
}

@media (max-width: 768px) {
    .mobile-sticky-bar {
        display: flex;
    }
    .hero {
        height: 60vh;
    }
    .section-title {
        font-size: 28px;
    }
    .btn {
        width: 100%;
        text-align: center;
        padding: 15px; /* Larger touch target */
    }
    .footer-grid {
        text-align: center;
    }
}
