/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #22a9e1;
    --color-white: #FFFFFF;
    --color-light: #E8EBEC;
    --color-dark: #101218;
    --color-gray: #3B4244;
    --color-black: #000000;
    
    --font-heading: 'Fjalla One', sans-serif;
    --font-body: 'Raleway', sans-serif;
}

body {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-light);
    background-color: var(--color-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--color-primary);
}

h1 {
    font-size: 90px;
    line-height: 1.4em;
}

h2 {
    font-size: 70px;
    line-height: 1.25em;
}

h3 {
    font-size: 60px;
    line-height: 1.2em;
}

h4 {
    font-size: 40px;
    line-height: 1.2em;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-full {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: inherit;
    font-size: 14px;
    font-weight: inherit;
    text-transform: uppercase;
    line-height: 1em;
    border: 2px solid;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

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

.btn-outline-white:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
}

/* Top Info Bar */
.top-info-bar {
    background-color: #0693e3;
    color: var(--color-white);
    padding: 8px 0;
    font-size: 14px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.top-info-container {
    max-width: 1390px;
    margin: 0 auto;
    padding: 0 35px;
    text-align: center;
}

.top-info-bar a {
    color: var(--color-white);
    text-decoration: none;
}

.top-info-bar a:hover {
    text-decoration: underline;
}

/* Header */
.site-header {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    border-bottom: 1px solid #eaeaea;
    z-index: 1000;
    padding: 10px 0;
}

.header-container {
    max-width: 1390px;
    margin: 0 auto;
    padding: 0 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.site-logo {
    max-width: 148px;
    height: auto;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
}

.main-navigation a {
    display: flex;
    align-items: center;
    height: 70px;
    padding: 0 15px;
    color: var(--color-black);
    font-size: 17px;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: var(--color-primary);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-icon {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    position: relative;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    left: 0;
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    bottom: -8px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    margin-top: 106px;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    padding-left: 100px;
    max-width: 1200px;
    position: relative;
    z-index: 10;
    text-align: left;
    color: var(--color-white);
    padding-left: 100px;
    max-width: 1200px;
}

.hero-title {
    color: #FBCD39;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon img {
    width: 24px;
    height: 24px;
    filter: invert(1);
}

/* Family Getaway Section */
.family-getaway-section {
    background-color: #0693e3;
    padding: 60px 20px 60px 20px;
}

.getaway-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: var(--color-white);
    padding: 40px;
    border-radius: 8px;
}

.getaway-content h2 {
    color: var(--color-primary);
    margin-bottom: 20px;
}

.getaway-content p {
    color: var(--color-dark);
    font-size: 16px;
    line-height: 1.8;
}

/* Everyone Section */
.everyone-section {
    background-color: #0693e3;
    padding: 100px 20px;
    margin-top: 0;
    color: var(--color-white);
}

.everyone-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.everyone-content h2 {
    color: var(--color-white);
    margin-bottom: 20px;
}

.everyone-content p {
    margin-bottom: 30px;
    font-size: 16px;
}

/* Feature Cards */
.feature-cards-section {
    margin: 0;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.feature-card {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    transition: background 0.3s ease;
}

.feature-card:hover .card-overlay {
    background: rgba(0, 0, 0, 0.7);
}

.card-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 20px;
}

.card-content h3 {
    color: var(--color-white);
    font-size: 40px;
    margin-bottom: 20px;
}

/* Reviews Section */
.reviews-section {
    background-color: var(--color-white);
    padding: 80px 20px;
}

.reviews-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.review-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-content {
    flex: 1;
}

.review-text {
    color: var(--color-dark);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.review-author {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 16px;
}

/* Map Section */
.map-section {
    background-color: var(--color-gray);
    padding: 0;
}

.map-container {
    width: 100%;
    height: 350px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
.site-footer {
    background-color: var(--color-white);
}

.footer-top {
    padding: 40px 20px;
    text-align: center;
}

.footer-logo img {
    max-width: 200px;
}

.footer-nav {
    background-color: var(--color-white);
    padding: 40px 20px;
    border-top: 1px solid #eaeaea;
}

.footer-navigation ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-navigation a {
    color: var(--color-black);
    transition: color 0.3s ease;
}

.footer-navigation a:hover {
    color: var(--color-primary);
}

.footer-social {
    text-align: center;
    margin-bottom: 20px;
}

.social-link {
    color: var(--color-dark);
    font-size: 16px;
}

.social-link:hover {
    color: var(--color-primary);
}

.footer-copyright {
    text-align: center;
    color: var(--color-black);
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 42px;
    height: 42px;
    background-color: var(--color-white);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: all 0.3s ease;
}

.scroll-to-top:hover {
    background-color: var(--color-primary);
}

.scroll-to-top svg {
    width: 20px;
    height: 20px;
    fill: var(--color-primary);
    transform: rotate(180deg);
}

.scroll-to-top:hover svg {
    fill: var(--color-white);
}

.scroll-to-top.visible {
    display: flex;
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 70px;
    }
    
    h2 {
        font-size: 50px;
    }
    
    h3 {
        font-size: 40px;
    }
    
    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 50px;
    }
    
    h2 {
        font-size: 35px;
    }
    
    h3 {
        font-size: 30px;
    }
    
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        border-top: 1px solid #eaeaea;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    
    .main-navigation.active {
        display: block;
    }
    
    .main-navigation ul {
        flex-direction: column;
    }
    
    .main-navigation a {
        height: auto;
        padding: 15px 20px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .feature-cards {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        height: 300px;
    }
    
    .footer-navigation ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .header-container {
        padding: 0 20px;
    }
    
    .hero-section {
        min-height: 500px;
    }
    
    .everyone-section {
        padding: 60px 20px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}
