/* Base Styles */
:root {
    --primary-color: #2A2A2A; /* Keeping your original dark color */
    --secondary-color: #FFFFFF; /* White for text */
    --accent-color: #F5F5F5; /* Light gray background */
    --light-color: #FFFFFF; /* White */
    --dark-color: #000000; /* Black */
    --text-color: #2A2A2A; /* Your original text color */
    --text-light: #777777; /* Gray for secondary text */
    --bg-light: #F5F5F5; /* Your original light background */
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --section-padding: 80px 0;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1, h2, h3, h4 {
    font-family: 'Brandon Grotesque', 'League Spartan', sans-serif;
    font-weight: 500;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    margin: 1rem auto;
}

.section-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.cta-button:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

/* Header Styles */
/*.main-header {*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    padding: 20px 0;*/
/*    background-color: rgba(255, 255, 255, 0.95);*/
/*    z-index: 1000;*/
/*    transition: var(--transition);*/
/*    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);*/
/*}*/

/*.main-header.scrolled {*/
/*    padding: 15px 0;*/
/*    background-color: rgba(255, 255, 255, 0.98);*/
/*    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);*/
/*}*/

/*.header-container {*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*}*/

/*.logo a {*/
/*    font-family: 'Brandon Grotesque', sans-serif;*/
/*    font-size: 1.8rem;*/
/*    font-weight: 700;*/
/*    color: var(--primary-color);*/
/*    letter-spacing: 2px;*/
/*}*/

/*.main-nav ul {*/
/*    display: flex;*/
/*    list-style: none;*/
/*}*/

/*.main-nav ul li {*/
/*    margin-left: 30px;*/
/*}*/

/*.main-nav ul li a {*/
/*    font-family: 'Brandon Grotesque', sans-serif;*/
/*    font-weight: 500;*/
/*    font-size: 1rem;*/
/*    text-transform: uppercase;*/
/*    letter-spacing: 1px;*/
/*    position: relative;*/
/*}*/

/*.main-nav ul li a::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: -5px;*/
/*    left: 0;*/
/*    width: 0;*/
/*    height: 2px;*/
/*    background-color: var(--secondary-color);*/
/*    transition: var(--transition);*/
/*}*/

/*.main-nav ul li a:hover::after {*/
/*    width: 100%;*/
/*}*/

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('media/landing_bg.webp') no-repeat center center/cover;
    color: var(--light-color);
    text-align: center;
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: 2px;
}

.hero-text-black {
    color: var(--light-color); /* Your original black text */
    font-weight: 600;
}

.hero-text-white {
    color: var(--light-color); /* Your original white text */
    font-weight: 600;
}

/* Intro Section */
.intro-section {
    padding: var(--section-padding);
    background: url('media/mainmap.webp') no-repeat center center/cover;
    background-color: rgba(255, 255, 255, 0.7);
    background-blend-mode: lighten;
}

/* Destinations Section */
.destinations-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.destination-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 400px;
    cursor: pointer;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.destination-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--light-color);
    text-align: left;
}

.destination-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.destination-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

/* About Section */
.about-section {
    padding: var(--section-padding);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text {
    padding-right: 30px;
}

.about-text .section-title {
    text-align: left;
}

.about-text .section-title::after {
    margin: 1rem 0;
}

.about-text .section-text {
    text-align: left;
    margin-bottom: 2rem;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.responsive-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image:hover .responsive-image {
    transform: scale(1.05);
}

/* Footer Styles */
.main-footer {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 60px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: 'Brandon Grotesque', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

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

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

.footer-column ul li a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .about-content {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: var(--light-color);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 40px 20px;
        transition: var(--transition);
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        width: 100%;
    }
    
    .main-nav ul li {
        margin: 15px 0;
        text-align: center;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .about-text .section-title,
    .about-text .section-text {
        text-align: center;
    }
    
    .about-text .section-title::after {
        margin: 1rem auto;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .destination-card {
        height: 350px;
    }
    
    .cta-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}