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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    background-color: #FAF6F0;
}

h1, h2 {
    font-family: 'Times New Roman', serif;
}


:root {
    --color-gold: #C9A96E; 
    --color-dark: #1F1F1F;
    --color-turquoise: #20B2AA; 
    --color-sand: #FAF6F0; 
}


header {
    background-color: var(--color-dark);
    padding: 15px 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--color-gold);
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    font-weight: 400;
    transition: background-color 0.3s, color 0.3s;
    border-bottom: 2px solid transparent;
}


nav ul li a.active,
nav ul li a:hover {
    color: var(--color-gold);
    border-bottom: 2px solid var(--color-gold);
}


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

.page-title {
    font-size: 3em;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-gold);
}


.page-image-container {
    width: 100%;
    margin-bottom: 40px;
}

.page-image {
    width: 100%;
    height: auto;
    max-height: 400px; 
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}


.info-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.card {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--color-turquoise);
    text-align: left;
}

.card h3 {
    color: var(--color-gold);
    margin-bottom: 10px;
    font-size: 1.5em;
}


.transport-list {
    list-style: none;
}

.transport-list li {
    background: #fff;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 5px solid var(--color-gold);
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}


.booking-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.booking-form label {
    display: block;
    margin: 15px 0 5px;
    font-weight: 700;
    color: var(--color-dark);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
}

.cta-button {
    display: block;
    width: 100%;
    background-color: var(--color-turquoise);
    color: #fff;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    font-size: 1.1em;
    font-weight: 700;
    margin-top: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #1a8f87;
}


footer {
    background-color: var(--color-dark);
    color: var(--color-sand);
    text-align: center;
    padding: 25px 0;
    margin-top: 60px;
}


@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }
    nav ul {
        margin-top: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    nav ul li a {
        padding: 8px 10px;
    }
    .page-title {
        font-size: 2.2em;
    }
}