/* ========================================
   FARBPALETTE
   ======================================== */
:root {
    --primary-turquoise: #1B8B9E;
    --primary-turquoise-dark: #156b7a;
    --accent-terracotta: #D67E4B;
    --background-sand: #F5F1E8;
    --text-dark: #2C3E50;
    --gold-highlight: #C9A961;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #6C757D;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* ========================================
   GLOBAL STYLES
   ======================================== */
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1.2rem;
}

a {
    color: var(--primary-turquoise);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-turquoise-dark);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary {
    background-color: var(--primary-turquoise) !important;
    border-color: var(--primary-turquoise) !important;
    color: var(--white) !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-turquoise-dark) !important;
    border-color: var(--primary-turquoise-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 139, 158, 0.3);
}

.btn-outline-primary {
    border-color: var(--primary-turquoise) !important;
    color: var(--primary-turquoise) !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-outline-primary:hover,
.btn-outline-primary.active {
    background-color: var(--primary-turquoise) !important;
    border-color: var(--primary-turquoise) !important;
    color: var(--white) !important;
}

.btn-gold {
    background-color: var(--gold-highlight);
    border-color: var(--gold-highlight);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: #b89650;
    border-color: #b89650;
    color: var(--white);
    transform: translateY(-2px);
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-logo {
    height: 110px;
    width: auto;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 8px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-turquoise) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-turquoise);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    min-height: 600px;
    background: linear-gradient(135deg, rgba(27, 139, 158, 0.85), rgba(214, 126, 75, 0.7));
    display: flex;
    align-items: center;
    color: white;
}

.hero-section.with-bg {
    background-size: cover;
    background-position: center;
}

.hero-section.with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 139, 158, 0.75), rgba(214, 126, 75, 0.55));
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--white);
    text-shadow: 1px 1px 6px rgba(0,0,0,0.4);
}

/* ========================================
   PAGE HEADER
   ======================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-turquoise), #1aa3b8);
    color: white;
    padding: 60px 0;
    margin-bottom: 0;
}

.page-header h1 {
    color: white;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 0;
}

/* ========================================
   FEATURE CARDS
   ======================================== */
.feature-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(27, 139, 158, 0.1);
    height: 100%;
    overflow-wrap: break-word;
    hyphens: auto;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(27, 139, 158, 0.15);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-turquoise);
    margin-bottom: 1rem;
}

.feature-title {
    color: var(--primary-turquoise);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* ========================================
   ROOM/AMENITY CARDS
   ======================================== */
.amenity-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    border-left: 4px solid var(--primary-turquoise);
    height: 100%;
}

.amenity-card h3 {
    color: var(--primary-turquoise);
    font-size: 1.3rem;
}

.amenity-card h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.amenity-card ul {
    list-style: none;
    padding-left: 0;
}

.amenity-card ul li {
    padding: 4px 0;
    padding-left: 24px;
    position: relative;
}

.amenity-card ul li::before {
    content: "\F633";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    color: var(--primary-turquoise);
    font-size: 0.85rem;
}

/* ========================================
   GALLERY
   ======================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    padding: 1rem;
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h5 {
    color: var(--white);
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    margin-bottom: 0;
    font-size: 1rem;
}

.gallery-placeholder {
    background: linear-gradient(135deg, var(--background-sand), #e8e4db);
    border-radius: 10px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--medium-gray);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px dashed #ccc;
}

.gallery-placeholder:hover {
    border-color: var(--primary-turquoise);
    color: var(--primary-turquoise);
}

.gallery-placeholder i {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* ========================================
   SECTIONS
   ======================================== */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-turquoise);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 3rem;
}

/* ========================================
   HIGHLIGHTS
   ======================================== */
.highlight-box {
    background: linear-gradient(135deg, var(--primary-turquoise), #1aa3b8);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    height: 100%;
}

.highlight-box h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.highlight-box ul {
    padding-left: 1.2rem;
}

.highlight-box.bg-secondary {
    background: linear-gradient(135deg, var(--accent-terracotta), #e09060) !important;
}

/* ========================================
   LOCATION CARDS
   ======================================== */
.location-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    margin-bottom: 2rem;
    height: 100%;
}

.location-card h3 {
    color: var(--primary-turquoise);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.location-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

/* ========================================
   FORMS
   ======================================== */
.form-control {
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    padding: 12px 15px;
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--primary-turquoise);
    box-shadow: 0 0 0 0.2rem rgba(27, 139, 158, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-turquoise), #1aa3b8);
    color: white;
    padding: 60px 0;
}

.cta-section h2 {
    color: white;
}

/* ========================================
   FOOTER
   ======================================== */
footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-turquoise) !important;
}

/* ========================================
   COOKIE BANNER
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

/* ========================================
   BOOKING INFO
   ======================================== */
.booking-benefit {
    text-align: center;
    padding: 1.5rem;
}

.booking-benefit .icon {
    font-size: 2.5rem;
    color: var(--primary-turquoise);
    margin-bottom: 0.5rem;
}

/* ========================================
   MAP CONTAINER
   ======================================== */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    display: block;
}

/* ========================================
   UTILITIES
   ======================================== */
.bg-sand {
    background-color: var(--background-sand);
}

.text-primary-custom {
    color: var(--primary-turquoise) !important;
}

.rounded-custom {
    border-radius: 15px;
}

.checkmark-list {
    list-style: none;
    padding-left: 0;
}

.checkmark-list li {
    padding: 6px 0;
    padding-left: 28px;
    position: relative;
}

.checkmark-list li::before {
    content: "\F633";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    color: var(--primary-turquoise);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 991px) {
    .navbar-nav {
        padding-top: 1rem;
    }

    .nav-link {
        margin: 0;
        padding: 8px 0 !important;
    }

    .nav-link::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-section {
        min-height: 450px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-padding {
        padding: 50px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .page-header {
        padding: 40px 0;
    }

    .navbar-logo {
        height: 75px;
    }
}
