/* Base Styles */
:root {
    --primary-color: #1a5276;
    --secondary-color: #3498db;
    --accent-color: #2c3e50;
    --text-color: #333;
    --light-text: #777;
    --bg-color: #fff;
    --light-bg: #ecf0f1;
    --header-font: 'Raleway', sans-serif;
    --body-font: 'Source Sans Pro', sans-serif;
    --transition: all 0.3s ease;
    --border-radius: 4px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;700&family=Source+Sans+Pro:wght@300;400;600&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
}

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

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

ul {
    list-style-type: none;
}

img, svg {
    max-width: 100%;
    height: auto;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--header-font);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

p {
    margin-bottom: 1rem;
}

/* Header Styles */
header {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--box-shadow);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    margin-right: 10px;
}

.logo h1 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: white;
    font-weight: 500;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
#hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="400" viewBox="0 0 1200 400"><rect width="1200" height="400" fill="%231a5276"/><path d="M0,150 C200,100 400,200 600,120 S800,180 1000,100 S1200,150 1200,120 L1200,400 L0,400 Z" fill="%233498db" opacity="0.7"/><path d="M0,200 C200,170 400,230 600,180 S800,250 1000,190 S1200,220 1200,200 L1200,400 L0,400 Z" fill="%2385c1e9" opacity="0.5"/></svg>');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 120px 0 80px;
}

#hero h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

#hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section:nth-child(even) {
    background-color: var(--light-bg);
}

.section h2 {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

/* Gallery */
.gallery-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.gallery-item {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.gallery-item p {
    padding: 15px;
    text-align: center;
    font-weight: 600;
    margin: 0;
}

/* Attractions */
.attractions-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.attraction {
    flex: 1;
    min-width: 300px;
    padding: 25px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.attraction h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.attraction ul {
    margin-top: 15px;
}

.attraction li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.attraction li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Contact Section */
#contact {
    text-align: center;
    background-color: var(--light-bg);
}

#contact p {
    max-width: 500px;
    margin: 0 auto 1rem;
}

/* Footer */
footer {
    background-color: var(--accent-color);
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.footer-logo img {
    margin-bottom: 15px;
}

.footer-links {
    flex: 1;
    min-width: 200px;
}

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

.footer-links ul li a {
    color: #ddd;
}

.footer-links ul li a:hover {
    color: white;
}

/* Media Queries */
@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        padding: 20px 0;
        flex-direction: column;
        text-align: center;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .gallery-container, .attractions-container {
        flex-direction: column;
        align-items: center;
    }

    .gallery-item, .attraction {
        width: 100%;
    }

    #hero h2 {
        font-size: 2rem;
    }
}

@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none;
    }
}
