/* Global Style Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Navigation Bar Styles */
.navbar {
    background-color: #1a5f7a; /* Iceland Blue Main Color */
    color: white;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

.navbar a:hover {
    text-decoration: underline;
}

/* Hero Carousel Styles */
.hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 8px;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Card General Styles (Season Highlights, Popular Attractions) */
.season-highlights, .popular-attractions {
    padding: 2rem;
    text-align: center;
}

.season-highlights h2, .popular-attractions h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a5f7a;
}

.highlight-card, .attraction-card {
    display: inline-block;
    width: 30%;
    margin: 0 1rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.highlight-img, .attraction-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.highlight-card h3, .attraction-card h3 {
    padding: 1rem;
    color: #1a5f7a;
}

.highlight-card p, .attraction-card p {
    padding: 0 1rem 1rem;
}

/* Form Styles */
.contact-form-section {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a5f7a;
    text-align: center;
}

.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.required {
    color: red;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.submit-btn {
    background-color: #1a5f7a;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
}

.submit-btn:hover {
    background-color: #0f4c67;
}

/* Footer Styles */
.footer {
    background-color: #1a5f7a;
    color: white;
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
}

/* Responsive Adaptation (Tablet/Mobile) */
@media (max-width: 768px) {
    .navbar ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .highlight-card, .attraction-card {
        width: 100%;
        margin: 1rem 0;
    }

    .contact-form-section {
        padding: 1rem;
    }
}