/* --- GOOGLE FONTS IMPORT --- */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Poppins:wght@400;600;700&display=swap');

/* --- VARIABLES & RESET --- */
:root {
    --primary-color: #008080;    /* Teal - Ocean */
    --secondary-color: #FF7F50;  /* Coral - Sunset */
    --bg-light: #f9fbfb;         /* Off-white */
    --text-dark: #333333;
    --text-light: #ffffff;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: #2c3e50;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

/* --- NAVIGATION BAR --- */
header {
    background-color: #fff;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links li a {
    font-weight: 600;
    font-size: 0.95rem;
    color: #555;
}

.nav-links li a:hover, .nav-links li a.active {
    color: var(--primary-color);
}

.btn-book {
    background-color: var(--secondary-color);
    color: white !important;
    padding: 8px 20px;
    border-radius: 25px;
}

.btn-book:hover {
    background-color: #e06030;
    transform: translateY(-2px);
}

/* --- FOOTER --- */
footer {
    background-color: #1a252f;
    color: white;
    padding: 3rem 2rem;
    margin-top: 50px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.social-links a {
    margin-right: 15px;
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #34495e;
    font-size: 0.9rem;
    color: #bdc3c7;
}

/* --- RESPONSIVE UTILS --- */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }
    .nav-links {
        margin-top: 1rem;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}