/* Basic Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Navigation */
nav {
    background: #2c3e50;
    color: #fff;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.nav-links li {
    padding: 0 15px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #3498db;
}

/* Hero Slider */
.hero-slider {
    min-height: 68vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 8%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(15, 41, 32, 0.68), rgba(15, 41, 32, 0.5));
    z-index: 1;
}

.slide:nth-child(1) {
    background: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1500&q=80') no-repeat center center/cover;
}

.slide:nth-child(2) {
    background: url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=1500&q=80') no-repeat center center/cover;
}

.slide:nth-child(3) {
    background: url('https://images.unsplash.com/photo-1596040033229-a9821ebd058d?auto=format&fit=crop&w=1500&q=80') no-repeat center center/cover;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.slide-eyebrow {
    margin-bottom: 0.75rem;
    color: #b9e6c7;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.slide h1 {
    margin-bottom: 1rem;
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    line-height: 1.05;
}

.slide p:last-child {
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.15rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.25);
    color: white;
    font-size: 1.5rem;
    line-height: 1;
    transform: translateY(-50%);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.slider-prev {
    left: 24px;
}

.slider-next {
    right: 24px;
}

.slider-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    z-index: 3;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 1px solid white;
    border-radius: 50%;
    background: transparent;
}

.dot.active {
    background: white;
}

/* Responsive Grid for Sections */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 2rem auto;
}

section {
    padding: 4rem 0;
    border-bottom: 1px solid #ddd;
}

.section-title {
    text-align: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.destination-card {
    overflow: hidden;
}

.destination-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 5px;
}

.destination-name {
    margin-top: 10px;
    margin-bottom: 6px;
}

/* Contact Form */
.contact-intro {
    text-align: center;
    margin-bottom: 20px;
}

.form-success {
    color: green;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
}

input,
textarea {
    margin-bottom: 1rem;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    padding: 1rem;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.site-footer {
    text-align: center;
    padding: 2rem;
    background: #2c3e50;
    color: white;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    color: white;
    background: rgba(255, 255, 255, 0.08);
    transition: background 0.3s, transform 0.3s;
}

.social-links a:hover {
    background: #3498db;
    transform: translateY(-2px);
}

.social-links svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        display: none; /* Add JS later for a hamburger menu */
    }

    .hero-slider {
        min-height: 70vh;
    }

    .slide {
        padding: 5rem 12%;
    }

    .slide p:last-child {
        font-size: 1rem;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }
}
