/* ============================================
   Hotel Kaiser Bridge - Main Stylesheet
   ============================================ */

/* CSS Variables */
:root {
    --sand: #EBE9E2;
    --cream: #FAF9F6;
    --deep-blue: #1A3A52;
    --ocean-blue: #2C5F7C;
    --gold: #C9A568;
    --warm-gray: #5A5A5A;
    --light-gray: #E8E6E1;
}

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

/* Base Styles */
body {
    font-family: 'Lora', serif;
    background: var(--sand);
    color: var(--warm-gray);
    line-height: 1.7;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

nav.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    /*padding: 1.5rem 2rem;*/
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 55px; /* Increased from ~40px */
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05); /* Subtle zoom on hover */
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    list-style: none;
}

.nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--warm-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--deep-blue);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.btn-book {
    background: var(--ocean-blue);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-book:hover {
    background: var(--deep-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(26, 58, 82, 0.3);
}
/* Mobile Menu Button - ADD THIS SECTION */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    transition: all 0.3s ease;
}

/* Hamburger Icon - ADD THIS */
.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    height: 20px;
    position: relative;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--deep-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger Animation when menu is open - ADD THIS */
.mobile-menu-btn.active .hamburger-icon span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.mobile-menu-btn.active .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}
/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--deep-blue);
    cursor: pointer;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav a {
    display: block;
    padding: 1rem;
    color: var(--warm-gray);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--deep-blue);
    padding-left: 1.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
     background: rgba(0, 0, 0, 0.15) !important; 
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 2rem;
	
}

/* If you still want text to be readable, add text shadow */
.hero-content h1,
.hero-content .hero-title {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-content p,
.hero-content .hero-subtitle,
.hero-content .hero-label {
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
}

.hero-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 400;
    opacity: 0.95;
}

/* Sections */
section {
    padding: 6rem 2rem;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

/* Typography */
.section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--deep-blue);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.section-description {
    font-size: 1.1rem;
    color: var(--warm-gray);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-image {
    height: 500px;
    border-radius: 4px;
    overflow: hidden;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Cards */
.card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* ============================================
   COMPREHENSIVE BUTTON SYSTEM
   Professional, consistent button styles
   ============================================ */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BASE BUTTON STYLES (Required for all buttons)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.btn,
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-gold,
.btn-white {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-align: center;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    white-space: nowrap;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BUTTON VARIANTS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Primary Button - Main Call to Action (Blue) */
.btn-primary {
    background: var(--ocean-blue);
    color: white;
    border: 2px solid var(--ocean-blue);
}

.btn-primary:hover {
    background: var(--deep-blue);
    border-color: var(--deep-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(26, 58, 82, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(26, 58, 82, 0.2);
}

/* Secondary Button - Less Prominent (Gold) */
.btn-secondary {
    background: var(--gold);
    color: white;
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: #B89558;
    border-color: #B89558;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 165, 104, 0.3);
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(201, 165, 104, 0.2);
}

/* Outline Button - Minimal Style */
.btn-outline {
    background: transparent;
    color: var(--deep-blue);
    border: 2px solid var(--deep-blue);
}

.btn-outline:hover {
    background: var(--deep-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(26, 58, 82, 0.2);
}

.btn-outline:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(26, 58, 82, 0.15);
}

/* Gold Outline Button - Luxury Variant */
.btn-gold {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-gold:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 165, 104, 0.3);
}

.btn-gold:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(201, 165, 104, 0.2);
}

/* White Button - For Dark Backgrounds */
.btn-white {
    background: white;
    color: var(--deep-blue);
    border: 2px solid white;
}

.btn-white:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.btn-white:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BUTTON SIZES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Small Button */
.btn-sm {
    padding: 0.65rem 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* Large Button */
.btn-lg {
    padding: 1.25rem 3.5rem;
    font-size: 0.95rem;
    letter-spacing: 2px;
}

/* Full Width Button */
.btn-block {
    display: block;
    width: 100%;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BUTTON STATES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Disabled State */
.btn:disabled,
.btn-primary:disabled,
.btn-secondary:disabled,
.btn-outline:disabled,
.btn-gold:disabled,
.btn-white:disabled,
.btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Loading State */
.btn.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: button-loading-spinner 0.6s linear infinite;
}

@keyframes button-loading-spinner {
    from { transform: rotate(0turn); }
    to { transform: rotate(1turn); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SPECIAL BUTTONS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Book Now Button (Navigation) */
.btn-book {
    background: var(--ocean-blue);
    color: white;
    padding: 0.75rem 2rem;
    border: 2px solid var(--ocean-blue);
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-book:hover {
    background: var(--deep-blue);
    border-color: var(--deep-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(26, 58, 82, 0.3);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BUTTON GROUPS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-group.centered {
    justify-content: center;
}

.btn-group.right {
    justify-content: flex-end;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ICON BUTTONS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-icon svg,
.btn-icon i {
    width: 18px;
    height: 18px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE BUTTONS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media (max-width: 768px) {
    .btn,
    .btn-primary,
    .btn-secondary,
    .btn-outline,
    .btn-gold,
    .btn-white {
        padding: 0.85rem 2rem;
        font-size: 0.8rem;
        letter-spacing: 1.2px;
    }
    
    .btn-lg {
        padding: 1rem 2.5rem;
        font-size: 0.85rem;
    }
    
    .btn-sm {
        padding: 0.6rem 1.25rem;
        font-size: 0.7rem;
    }
    
    /* Stack button groups on mobile */
    .btn-group {
        flex-direction: column;
    }
    
    .btn-group .btn {
        width: 100%;
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   USAGE EXAMPLES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

   PRIMARY BUTTON (Main action):
   <a href="#" class="btn btn-primary">View All Rooms</a>
   
   SECONDARY BUTTON (Less important):
   <a href="#" class="btn btn-secondary">Learn More</a>
   
   OUTLINE BUTTON (Minimal):
   <a href="#" class="btn btn-outline">Contact Us</a>
   
   GOLD BUTTON (Luxury):
   <a href="#" class="btn btn-gold">Book Now</a>
   
   LARGE BUTTON:
   <a href="#" class="btn btn-primary btn-lg">Get Started</a>
   
   SMALL BUTTON:
   <a href="#" class="btn btn-outline btn-sm">Details</a>
   
   FULL WIDTH:
   <a href="#" class="btn btn-primary btn-block">Submit</a>
   
   BUTTON GROUP:
   <div class="btn-group">
       <a href="#" class="btn btn-primary">Primary</a>
       <a href="#" class="btn btn-outline">Secondary</a>
   </div>
   
   DISABLED BUTTON:
   <a href="#" class="btn btn-primary disabled">Disabled</a>
   <button class="btn btn-primary" disabled>Disabled</button>
   
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */


/* Footer */
footer {
    background: var(--deep-blue);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.footer-section p,
.footer-section a {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
	
	  .btn-book {
        display: none; /* ← ADD THIS LINE */
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        height: 60vh;
    }
    
    section {
        padding: 4rem 1.5rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .content-image {
        height: 350px;
    }
}

/* Utility Classes */
.bg-white {
    background: white;
}

.bg-sand {
    background: var(--sand);
}

.bg-cream {
    background: var(--cream);
}

.bg-dark {
    background: var(--deep-blue);
    color: white;
}

/* ============================================
   Scroll Animations
   ============================================ */

/* Initial state - hidden and translated */
.content-image img,
.gallery-image img,
.activity-card,
.feature-card,
.service-card,
.amenity-card {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Animated state - visible and in position */
.content-image img.animated,
.gallery-image img.animated,
.activity-card.animated,
.feature-card.animated,
.service-card.animated,
.amenity-card.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Alternate sliding from left */
.content-grid:nth-child(even) .content-image img {
    transform: translateX(-50px) translateY(20px);
}

.content-grid:nth-child(even) .content-image img.animated {
    transform: translateX(0) translateY(0);
}

/* Alternate sliding from right */
.content-grid:nth-child(odd) .content-image img {
    transform: translateX(50px) translateY(20px);
}

.content-grid:nth-child(odd) .content-image img.animated {
    transform: translateX(0) translateY(0);
}

/* Section titles fade and slide up */
.section-title,
.section-description {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-title.animated,
.section-description.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Highlight boxes slide in from left */
.highlight-box {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.highlight-box.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Stats grid items scale in */
.stats-grid {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stats-grid.animated {
    opacity: 1;
    transform: scale(1);
}

/* Hero images - slow zoom effect */
.hero-image {
    animation: heroZoom 1.5s ease-out forwards;
}

@keyframes heroZoom {
    from {
        transform: scale(1.1);
        opacity: 0.8;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Disable animations on reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .content-image img,
    .gallery-image img,
    .activity-card,
    .feature-card,
    .service-card,
    .amenity-card,
    .section-title,
    .section-description,
    .highlight-box,
    .stats-grid {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    .hero-image {
        animation: none;
    }
}

/* Smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}

/* ============================================
   EU Cookie Consent Banner - GDPR Compliant
   ============================================ */

/* Cookie Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--deep-blue) 0%, #1a3a52 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-consent.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-consent.hide {
    transform: translateY(100%);
    opacity: 0;
}

.cookie-consent-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-consent-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.cookie-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
}

.cookie-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: white;
}

.cookie-description {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}

.cookie-learn-more {
    color: var(--gold);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cookie-learn-more:hover {
    color: #f5d377;
}

.cookie-consent-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--gold);
    color: var(--deep-blue);
}

.cookie-btn-accept:hover {
    background: #f5d377;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.cookie-btn-decline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Cookie Details Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999999;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-y: auto;
}

.cookie-modal-content {
    background: white;
    border-radius: 8px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-modal-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--deep-blue);
    margin: 0;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--warm-gray);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-modal-close:hover {
    background: #f5f5f5;
    color: var(--deep-blue);
}

.cookie-modal-body {
    padding: 2rem;
    color: var(--warm-gray);
}

.cookie-modal-body h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: var(--deep-blue);
    margin: 1.5rem 0 0.75rem 0;
}

.cookie-modal-body h4:first-child {
    margin-top: 0;
}

.cookie-modal-body p {
    font-family: 'Lora', serif;
    line-height: 1.7;
    margin: 0.75rem 0;
}

.cookie-modal-body ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.cookie-modal-body ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.cookie-modal-body ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.cookie-modal-body strong {
    color: var(--deep-blue);
    font-weight: 600;
}

.cookie-modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid #e0e0e0;
    text-align: right;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .cookie-consent-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 1.5rem;
    }
    
    .cookie-consent-buttons {
        width: 100%;
        justify-content: stretch;
    }
    
    .cookie-btn {
        flex: 1;
        padding: 0.75rem 1rem;
    }
    
    .cookie-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .cookie-consent {
        padding: 1rem 0;
    }
    
    .cookie-consent-container {
        padding: 0 1rem;
    }
    
    .cookie-consent-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .cookie-icon {
        font-size: 2rem;
    }
    
    .cookie-title {
        font-size: 1.1rem;
    }
    
    .cookie-description {
        font-size: 0.85rem;
    }
    
    .cookie-consent-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
    
    .cookie-modal {
        padding: 1rem;
    }
    
    .cookie-modal-content {
        max-height: 95vh;
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: 1.5rem;
    }
}

/* Print styles - hide cookie banner */
@media print {
    .cookie-consent,
    .cookie-modal {
        display: none !important;
    }
}

/* License Number Styling */
.license-number {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
}

/* ============================================
   Sticky Bottom Navigation Menu
   ============================================ */

.sticky-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--deep-blue) 0%, #1a3a52 100%);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    padding: 0;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.sticky-bottom-nav.hidden {
    transform: translateY(100%);
}

.sticky-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
}

.sticky-nav-links {
    display: flex;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.sticky-nav-links li {
    margin: 0;
}

.sticky-nav-links a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
}

.sticky-nav-links a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-bottom-color: var(--gold);
}

.sticky-nav-links a.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.sticky-nav-icon {
    font-size: 1.25rem;
}

/* Hide sticky nav when cookie banner is visible */
.cookie-consent ~ .sticky-bottom-nav {
    bottom: 0;
}

.cookie-consent.show ~ .sticky-bottom-nav {
    transform: translateY(calc(100% + 100px));
}

/* Mobile responsive */
@media (max-width: 992px) {
    .sticky-nav-links {
        width: 100%;
    }
    
    .sticky-nav-links a {
        flex: 1;
        padding: 0.65rem 0.75rem;
        font-size: 0.65rem;
    }
    
    .sticky-nav-icon {
        font-size: 1.1rem;
    }
}

@media (max-width: 640px) {
    .sticky-nav-links {
        gap: 0;
    }
    
    .sticky-nav-links a {
        padding: 0.6rem 0.5rem;
        font-size: 0.6rem;
        min-width: 60px;
    }
    
    .sticky-nav-icon {
        font-size: 1rem;
    }
}

/* Hide on print */
@media print {
    .sticky-bottom-nav {
        display: none !important;
    }
}

/* ============================================
   Footer Navigation Menu
   ============================================ */

/* Remove old sticky navigation styles */
.sticky-bottom-nav {
    display: none !important;
}

/* Footer Navigation */
.footer-nav {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-nav a:hover {
    color: var(--gold);
}

.footer-nav .separator {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 0.25rem;
    font-weight: 300;
}

/* Make footer sticky at bottom - removed duplicate body style */
footer {
    margin-top: auto;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .footer-nav {
        padding: 1rem 0;
    }
    
    .footer-nav a {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
    
    .footer-nav .separator {
        margin: 0 0.15rem;
    }
}

@media (max-width: 640px) {
    .footer-nav {
        line-height: 2;
    }
    
    .footer-nav a {
        font-size: 0.75rem;
        padding: 0.3rem 0.5rem;
    }
    
    /* Allow wrapping on very small screens */
    .footer-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0;
    }
}

/* ============================================
   Logo Styling
   ============================================ */

.logo img {
    height: 80px;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.logo:hover img {
    opacity: 0.85;
}

/* Adjust navbar for logo */
nav .logo {
    display: flex;
    align-items: center;
    font-size: 0; /* Remove text if img fails to load */
}

/* Mobile logo */
@media (max-width: 992px) {
    .logo img {
        height: 60px;
    }
}

/* ============================================
   Policy Pages Styling
   ============================================ */

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold);
}

.content-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: var(--ocean-blue);
    margin: 1.5rem 0 1rem 0;
    font-weight: 600;
}

.content-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-section ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.content-section ul li {
    margin-bottom: 0.5rem;
    color: var(--warm-gray);
}

.content-section a {
    color: var(--ocean-blue);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.content-section a:hover {
    color: var(--gold);
}

.content-section strong {
    color: var(--deep-blue);
    font-weight: 600;
}

/* Hero Simple - for policy pages */
.hero-simple {
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--ocean-blue) 100%);
    padding: 8rem 2rem 4rem;
    text-align: center;
    color: white;
}

.hero-simple h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-simple p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero-simple {
        padding: 6rem 1.5rem 3rem;
    }
    
    .hero-simple h1 {
        font-size: 2rem;
    }
    
    .hero-simple p {
        font-size: 1rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .content-section h3 {
        font-size: 1.1rem;
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TRIPADVISOR & SOCIAL MEDIA SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.tripadvisor-social-section {
    background: var(--sand);
    padding: 3rem 0;
    text-align: center;
}

.tripadvisor-badge {
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--deep-blue);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
}

.social-link:hover {
    color: var(--gold);
    transform: translateY(-2px);
    background: rgba(201, 165, 104, 0.1);
}

.social-link svg {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tripadvisor-social-section {
        padding: 2rem 0;
    }
    
    .social-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TRIPADVISOR CUSTOM BADGE HOVER EFFECT
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.tripadvisor-custom-badge a:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ============================================
   Breadcrumb Navigation
   ============================================ */

.breadcrumb {
    background: transparent;
    padding: 1rem 0;
    margin: 1rem auto 0;
    max-width: 1200px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    z-index: 1;
    margin-top: 80px; /* Space for fixed navbar */
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    padding: 0 20px;
    margin: 0;
    font-size: 0.9rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    color: var(--deep-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--ocean-blue);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--warm-gray);
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: var(--warm-gray);
}

/* Mobile optimization */
@media (max-width: 768px) {
    .breadcrumb {
        padding: 0.75rem 0;
        margin-top: 70px; /* Adjust for mobile navbar */
    }
    
    .breadcrumb-list {
        font-size: 0.85rem;
        padding: 0 15px;
    }
    
    .breadcrumb-separator {
        margin: 0 0.35rem;
    }
}
