/*
============================================
==        LUXURY HOSPITALITY CSS        ==
============================================

*   **Fonts**
    *   Headings: 'Playfair Display', serif
    *   Body: 'Montserrat', sans-serif

*   **Color Palette**
    *   `--charcoal`: #2C2C2C
    *   `--warm-beige`: #F9F6F1
    *   `--white`: #FFFFFF
    *   `--accent`: #BFA181
    *   `--shadow-color`: rgba(0, 0, 0, 0.08)

*   **Core Principles**
    *   Generous whitespace
    *   Strong typographic hierarchy
    *   Subtle animations & transitions
    *   Responsive, mobile-first design

============================================
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Montserrat:wght@400;500;700&display=swap');

:root {
    --charcoal: #2C2C2C;
    --warm-beige: #F9F6F1;
    --white: #FFFFFF;
    --accent: #BFA181;
    --shadow-color: rgba(0, 0, 0, 0.08);
    --shadow: 0 5px 25px var(--shadow-color);
    --shadow-hover: 0 10px 35px rgba(0, 0, 0, 0.12);
}

/* --- Base & Typography --- */
body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: var(--charcoal);
    background-color: var(--white);
    margin: 0;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--charcoal);
    margin-top: 0;
}

h1 { font-size: 4.5rem; margin-bottom: 1.5rem; line-height: 1.2; }
h2 { font-size: 3.5rem; margin-bottom: 2.5rem; line-height: 1.3; text-align: center; }
h3 { font-size: 1.8rem; margin-bottom: 1rem; line-height: 1.4; }
p { margin-bottom: 1.5rem; }

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.4s ease;
}

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

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Header & Navigation --- */
header {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 10px var(--shadow-color);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(5px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--charcoal);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

nav ul li a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    padding: 1rem 1.5rem;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: var(--accent);
    transition: width 0.4s ease;
}

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

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 95vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    background-size: cover;
    background-position: center;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.1));
}

.hero > * {
    z-index: 2;
}

.hero h1 {
    color: var(--white);
    max-width: 900px;
}

/* --- General Section Styling --- */
main > section {
    padding: 8rem 0;
}

section:nth-of-type(odd) { background-color: var(--warm-beige); }
section:nth-of-type(even) { background-color: var(--white); }

/* --- Card Layouts --- */
.card, .service-card-large, .amenity-card, .category-card, .location-card {
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 2.5rem;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover, .service-card-large:hover, .amenity-card:hover, .category-card:hover, .location-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-cards .card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

/* --- Image Gallery (Masonry) --- */
.image-gallery-masonry {
    column-count: 3;
    column-gap: 1.5rem;
}

.image-gallery-masonry img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

/* --- Buttons --- */
.btn {
    background-color: var(--accent);
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    border: 2px solid var(--accent);
    transition: all 0.4s ease;
}

.btn:hover {
    background-color: transparent;
    color: var(--accent);
}

/* --- Footer --- */
footer {
    background-color: var(--charcoal);
    color: #A0A0A0;
    padding: 5rem 2rem 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
    padding-bottom: 4rem;
}

.footer-about h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-links h3, .footer-contact h3 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links ul { list-style: none; padding: 0; }
.footer-links ul li { margin-bottom: 0.8rem; }
.footer-links ul li a { color: #A0A0A0; }
.footer-links ul li a:hover { color: var(--white); }

.social-media a {
    color: #A0A0A0;
    font-size: 1.3rem;
    margin-right: 1.5rem;
}
.social-media a:hover { color: var(--white); }

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 2rem;
    font-size: 0.9rem;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.8rem; }

    nav ul { display: none; /* For mobile menu */ }

    .footer-container { grid-template-columns: 1fr; }
    .image-gallery-masonry { column-count: 2; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2.2rem; }
    main > section { padding: 5rem 0; }

    .image-gallery-masonry { column-count: 1; }
}
