/*
Theme Name: Abba Hotel
Theme URI: https://abbahotel.co.il
Author: Abba Hotel Dev
Author URI: https://abbahotel.co.il
Description: A luxury boutique hotel WordPress theme for Hotel Abba Tel Aviv-Jaffa. Features a built-in booking system, RTL support, responsive design, and SEO optimization.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: abba-hotel
Tags: hotel, boutique, rtl-language-support, custom-header, custom-menu, featured-images, full-width-template, theme-options
*/

/* ============================================================
   TABLE OF CONTENTS
   1. CSS Variables / Design Tokens
   2. Reset & Base
   3. Typography
   4. Layout & Container
   5. Navigation
   6. Hero Section
   7. Features Strip
   8. About Section
   9. Rooms Section
   10. Rooftop Section
   11. Location Section
   12. Testimonials
   13. CTA Section
   14. Footer
   15. Booking Widget
   16. Page Templates
   17. Blog Styles
   18. Forms
   19. Responsive
   20. RTL Adjustments
   21. Animations
   22. Utilities
   ============================================================ */

/* ============================================================
   1. CSS Variables
   ============================================================ */
:root {
    /* Brand Colors */
    --abba-gold: #C9A96E;
    --abba-gold-light: #E8D5A8;
    --abba-gold-dark: #A8874D;
    --abba-navy: #1B2838;
    --abba-navy-deep: #0F1923;
    --abba-cream: #FAF6EF;
    --abba-cream-dark: #F0E8D8;
    --abba-charcoal: #2C2C2C;
    --abba-stone: #8C8577;
    --abba-white: #FFFFFF;
    --abba-sand: #E8DDD0;
    --abba-success: #4CAF50;
    --abba-error: #E53935;
    --abba-warning: #FF9800;

    /* Typography */
    --font-display: 'Frank Ruhl Libre', 'David Libre', serif;
    --font-display-en: 'Playfair Display', serif;
    --font-body: 'Heebo', 'Segoe UI', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;

    /* Font Sizes - Fluid */
    --fs-hero: clamp(2.8rem, 6vw, 5rem);
    --fs-h1: clamp(2rem, 3.5vw, 3rem);
    --fs-h2: clamp(1.6rem, 2.5vw, 2.2rem);
    --fs-h3: clamp(1.2rem, 1.8vw, 1.5rem);
    --fs-h4: 1.1rem;
    --fs-body: 1rem;
    --fs-small: 0.875rem;
    --fs-xs: 0.75rem;
    --fs-label: 0.72rem;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 40px;
    --space-2xl: 64px;
    --space-3xl: 100px;
    --section-padding: clamp(60px, 8vw, 100px) 5%;

    /* Border Radius */
    --radius-none: 0;
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 8px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.18);
    --shadow-gold: 0 4px 20px rgba(201,169,110,0.2);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-slower: 0.8s ease;

    /* Z-Index Scale */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-nav: 500;
    --z-overlay: 600;
    --z-modal: 700;
    --z-toast: 800;

    /* Layout */
    --container-max: 1200px;
    --container-narrow: 800px;
    --container-wide: 1400px;
    --nav-height: 80px;
    --nav-height-scrolled: 64px;
}

/* ============================================================
   2. Reset & Base
   ============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--abba-charcoal);
    background: var(--abba-cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-base);
}

ul, ol {
    list-style: none;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

button {
    cursor: pointer;
}

/* Focus visible for accessibility */
:focus-visible {
    outline: 2px solid var(--abba-gold);
    outline-offset: 2px;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--abba-gold);
    color: var(--abba-navy);
    padding: 10px 20px;
    z-index: var(--z-toast);
    font-weight: 700;
}

.skip-link:focus {
    top: 0;
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================================
   3. Typography
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.25;
    color: var(--abba-navy);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p {
    line-height: 1.8;
    color: var(--abba-stone);
}

.section-subtitle {
    font-size: var(--fs-label);
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--abba-gold);
    margin-bottom: 12px;
    display: block;
    font-family: var(--font-body);
    font-weight: 500;
}

.section-title {
    font-size: var(--fs-h1);
    margin-bottom: var(--space-lg);
}

.text-gold { color: var(--abba-gold); }
.text-navy { color: var(--abba-navy); }
.text-cream { color: var(--abba-cream); }

/* ============================================================
   4. Layout & Container
   ============================================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 5%;
}

.container--narrow {
    max-width: var(--container-narrow);
}

.container--wide {
    max-width: var(--container-wide);
}

.section-padding {
    padding: var(--section-padding);
}

/* ============================================================
   5. Navigation
   ============================================================ */
.site-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: var(--z-nav);
    padding: 18px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
    background: transparent;
}

.site-nav.scrolled {
    background: rgba(27, 40, 56, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 5%;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
    height: 48px;
    width: auto;
    transition: height var(--transition-base);
}

.scrolled .nav-logo img {
    height: 40px;
}

.nav-logo-text {
    font-family: var(--font-display-en);
    font-size: 1.6rem;
    color: var(--abba-gold);
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.1;
}

.nav-logo-text small {
    display: block;
    font-family: var(--font-body);
    font-size: 0.55rem;
    letter-spacing: 5px;
    color: var(--abba-gold-light);
    text-transform: uppercase;
    margin-top: 2px;
    font-weight: 400;
}

/* Desktop Menu */
.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    color: var(--abba-white);
    font-size: var(--fs-small);
    font-weight: 400;
    position: relative;
    padding: 4px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 1px;
    background: var(--abba-gold);
    transition: width var(--transition-base);
}

.nav-menu a:hover::after,
.nav-menu a.current-menu-item::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.current-menu-item {
    color: var(--abba-gold);
}

/* Book Now Button in Nav */
.nav-book-btn {
    background: var(--abba-gold) !important;
    color: var(--abba-navy) !important;
    padding: 10px 28px !important;
    font-weight: 700 !important;
    font-size: var(--fs-xs) !important;
    letter-spacing: 1px;
    transition: all var(--transition-base) !important;
}

.nav-book-btn::after {
    display: none !important;
}

.nav-book-btn:hover {
    background: var(--abba-gold-light) !important;
    transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    z-index: calc(var(--z-nav) + 1);
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--abba-white);
    transition: all var(--transition-base);
    display: block;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-5px);
}

/* Mobile Menu Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--abba-navy-deep);
    z-index: var(--z-overlay);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.nav-overlay.active {
    display: flex;
    opacity: 1;
}

.nav-overlay a {
    color: var(--abba-white);
    font-family: var(--font-display);
    font-size: 1.5rem;
    padding: 10px;
    transition: color var(--transition-base);
}

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

/* ============================================================
   6. Hero Section
   ============================================================ */
.hero {
    height: 100vh;
    min-height: 650px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15,25,35,0.3) 0%,
        rgba(15,25,35,0.1) 40%,
        rgba(15,25,35,0.6) 100%
    );
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.12); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--abba-white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    border: 1px solid var(--abba-gold);
    padding: 8px 24px;
    font-size: var(--fs-xs);
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--abba-gold);
    margin-bottom: 30px;
    animation: fadeUp 1s ease 0.5s both;
}

.hero h1 {
    font-size: var(--fs-hero);
    color: var(--abba-white);
    margin-bottom: 20px;
    animation: fadeUp 1s ease 0.7s both;
}

.hero h1 em {
    font-style: normal;
    color: var(--abba-gold);
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 40px;
    color: rgba(255,255,255,0.9);
    font-weight: 300;
    animation: fadeUp 1s ease 0.9s both;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 1s ease 1.1s both;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-weight: 600;
    font-size: var(--fs-small);
    letter-spacing: 1px;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    line-height: 1.4;
}

.btn--primary {
    background: var(--abba-gold);
    color: var(--abba-navy);
    border-color: var(--abba-gold);
}

.btn--primary:hover {
    background: transparent;
    color: var(--abba-gold);
}

.btn--secondary {
    background: transparent;
    color: var(--abba-white);
    border-color: rgba(255,255,255,0.4);
}

.btn--secondary:hover {
    border-color: var(--abba-gold);
    color: var(--abba-gold);
}

.btn--outline-dark {
    background: transparent;
    color: var(--abba-navy);
    border-color: var(--abba-navy);
}

.btn--outline-dark:hover {
    background: var(--abba-navy);
    color: var(--abba-white);
}

.btn--white {
    background: var(--abba-white);
    color: var(--abba-navy);
    border-color: var(--abba-white);
}

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

.btn--sm {
    padding: 10px 24px;
    font-size: var(--fs-xs);
}

.btn--lg {
    padding: 18px 48px;
    font-size: var(--fs-body);
}

.btn--full {
    width: 100%;
}

/* ============================================================
   7. Features Strip
   ============================================================ */
.features-strip {
    background: var(--abba-navy);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.feature-item {
    padding: 40px 30px;
    text-align: center;
    border-inline-start: 1px solid rgba(201, 169, 110, 0.15);
    transition: background var(--transition-base);
}

.feature-item:first-child {
    border-inline-start: none;
}

.feature-item:hover {
    background: rgba(201, 169, 110, 0.08);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 14px;
}

.feature-item h3 {
    color: var(--abba-gold);
    font-size: var(--fs-body);
    font-weight: 500;
    margin-bottom: 6px;
}

.feature-item p {
    color: rgba(255,255,255,0.5);
    font-size: var(--fs-xs);
    font-weight: 300;
}

/* ============================================================
   8. About Section
   ============================================================ */
.about-section {
    background: var(--abba-cream);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.about-accent {
    position: absolute;
    bottom: -30px;
    inset-inline-start: -30px;
    width: 200px;
    height: 200px;
    border: 2px solid var(--abba-gold);
    z-index: -1;
}

.about-badge {
    position: absolute;
    top: 30px;
    inset-inline-start: -20px;
    background: var(--abba-navy);
    color: var(--abba-gold);
    padding: 20px;
    text-align: center;
    font-family: var(--font-display-en);
}

.about-badge .badge-number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.about-badge .badge-text {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-body);
}

.about-text p {
    margin-bottom: var(--space-lg);
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}

.highlight-dot {
    width: 8px;
    height: 8px;
    background: var(--abba-gold);
    flex-shrink: 0;
}

.highlight-item span {
    font-size: var(--fs-small);
    color: var(--abba-navy);
    font-weight: 500;
}

/* ============================================================
   9. Rooms Section
   ============================================================ */
.rooms-section {
    background: var(--abba-navy-deep);
    color: var(--abba-white);
}

.rooms-section .section-title {
    color: var(--abba-white);
    text-align: center;
}

.rooms-section .section-subtitle {
    text-align: center;
}

.rooms-intro {
    text-align: center;
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
    font-weight: 300;
    line-height: 1.8;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.room-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201, 169, 110, 0.12);
    overflow: hidden;
    transition: all 0.4s;
}

.room-card:hover {
    border-color: var(--abba-gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.room-card-img {
    overflow: hidden;
    position: relative;
}

.room-card-img img {
    width: 100%;
    aspect-ratio: 16/11;
    object-fit: cover;
    transition: transform 0.6s;
}

.room-card:hover .room-card-img img {
    transform: scale(1.05);
}

.room-tag {
    position: absolute;
    top: 16px;
    inset-inline-end: 16px;
    background: var(--abba-gold);
    color: var(--abba-navy);
    padding: 4px 14px;
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 1px;
}

.room-card-body {
    padding: 28px;
}

.room-card-body h3 {
    font-size: var(--fs-h3);
    color: var(--abba-gold-light);
    margin-bottom: var(--space-sm);
}

.room-meta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: 14px;
    font-size: var(--fs-xs);
    color: rgba(255,255,255,0.4);
}

.room-card-body p {
    font-size: var(--fs-small);
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    margin-bottom: var(--space-lg);
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.amenity-tag {
    background: rgba(201, 169, 110, 0.1);
    color: var(--abba-gold);
    padding: 4px 12px;
    font-size: var(--fs-xs);
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.room-link {
    color: var(--abba-gold);
    font-size: var(--fs-small);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 500;
    transition: gap var(--transition-base);
}

.room-link:hover {
    gap: 14px;
}

/* ============================================================
   10. Rooftop Section
   ============================================================ */
.rooftop-section {
    background: var(--abba-cream);
}

.rooftop-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.rooftop-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.rooftop-overlay {
    position: absolute;
    bottom: 0;
    inset-inline-end: 0;
    background: var(--abba-gold);
    color: var(--abba-navy);
    padding: 30px;
    max-width: 220px;
}

.rooftop-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.rooftop-overlay p {
    font-size: var(--fs-xs);
    opacity: 0.8;
}

.rooftop-features {
    margin-top: 30px;
}

.rooftop-feature {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.rooftop-feature:last-child {
    border-bottom: none;
}

.rf-icon {
    width: 36px;
    height: 36px;
    background: var(--abba-navy);
    color: var(--abba-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-small);
    flex-shrink: 0;
}

.rf-text h4 {
    font-size: var(--fs-body);
    color: var(--abba-navy);
    margin-bottom: 2px;
}

.rf-text p {
    font-size: var(--fs-small);
}

/* ============================================================
   11. Location Section
   ============================================================ */
.location-section {
    background: var(--abba-navy);
    color: var(--abba-white);
}

.location-section .section-title {
    color: var(--abba-white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.location-text p {
    color: rgba(255,255,255,0.6);
    margin-bottom: var(--space-lg);
}

.location-list {
    margin-top: 30px;
}

.location-list li {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: var(--fs-small);
}

.location-list .place-name {
    color: var(--abba-gold-light);
}

.location-list .place-distance {
    color: rgba(255,255,255,0.4);
    font-size: var(--fs-xs);
}

.location-map {
    width: 100%;
    aspect-ratio: 4/3;
    border: 1px solid rgba(201, 169, 110, 0.2);
    overflow: hidden;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================================
   12. Testimonials
   ============================================================ */
.testimonials-section {
    background: var(--abba-cream-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--abba-white);
    padding: var(--space-xl);
    border: 1px solid var(--abba-sand);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: var(--abba-gold);
    margin-bottom: var(--space-md);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 700;
    color: var(--abba-navy);
    font-size: var(--fs-small);
}

.testimonial-source {
    color: var(--abba-stone);
    font-size: var(--fs-xs);
}

/* ============================================================
   13. CTA Section
   ============================================================ */
.cta-section {
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
    padding: var(--section-padding);
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(27, 40, 56, 0.88);
}

.cta-section > * {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: var(--fs-h1);
    color: var(--abba-white);
    margin-bottom: var(--space-lg);
}

.cta-section p {
    color: rgba(255,255,255,0.6);
    max-width: 500px;
    margin: 0 auto var(--space-xl);
    line-height: 1.8;
}

/* ============================================================
   14. Footer
   ============================================================ */
.site-footer {
    background: var(--abba-navy-deep);
    color: rgba(255,255,255,0.5);
    padding: 60px 5% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    max-width: var(--container-max);
    margin: 0 auto;
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
    font-size: var(--fs-small);
    line-height: 1.7;
    max-width: 280px;
    margin-top: var(--space-md);
}

.footer-col h4 {
    color: var(--abba-gold);
    font-size: var(--fs-xs);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
    font-family: var(--font-body);
    font-weight: 700;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    font-size: var(--fs-small);
    transition: color var(--transition-base);
}

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

.footer-bottom {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-top: var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--fs-xs);
}

/* ============================================================
   15. Booking Widget
   ============================================================ */
.booking-bar {
    background: var(--abba-white);
    box-shadow: var(--shadow-lg);
    padding: var(--space-lg) var(--space-xl);
    display: flex;
    gap: var(--space-md);
    align-items: flex-end;
    flex-wrap: wrap;
    max-width: var(--container-max);
    margin: -40px auto 0;
    position: relative;
    z-index: 10;
}

.booking-field {
    flex: 1;
    min-width: 150px;
}

.booking-field label {
    display: block;
    font-size: var(--fs-xs);
    color: var(--abba-stone);
    margin-bottom: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.booking-field input,
.booking-field select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--abba-sand);
    font-size: var(--fs-small);
    color: var(--abba-charcoal);
    background: var(--abba-cream);
    transition: border-color var(--transition-base);
}

.booking-field input:focus,
.booking-field select:focus {
    border-color: var(--abba-gold);
}

.booking-bar .btn {
    white-space: nowrap;
}

/* ============================================================
   16. Page Templates
   ============================================================ */
.page-header {
    background: var(--abba-navy);
    padding: calc(var(--nav-height) + 60px) 5% 60px;
    text-align: center;
}

.page-header h1 {
    color: var(--abba-white);
    font-size: var(--fs-h1);
    margin-bottom: var(--space-md);
}

.page-header .breadcrumbs {
    color: var(--abba-gold-light);
    font-size: var(--fs-small);
}

.page-header .breadcrumbs a {
    color: var(--abba-gold);
}

.page-content {
    padding: var(--section-padding);
    max-width: var(--container-narrow);
    margin: 0 auto;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-md);
}

.gallery-item {
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* ============================================================
   17. Blog Styles
   ============================================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--abba-white);
    border: 1px solid var(--abba-sand);
    overflow: hidden;
    transition: all var(--transition-base);
}

.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.blog-card-img {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: var(--space-lg);
}

.blog-card-meta {
    font-size: var(--fs-xs);
    color: var(--abba-gold);
    margin-bottom: var(--space-sm);
    letter-spacing: 1px;
}

.blog-card-body h3 {
    font-size: var(--fs-h4);
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.blog-card-body h3 a:hover {
    color: var(--abba-gold);
}

.blog-card-excerpt {
    font-size: var(--fs-small);
    line-height: 1.7;
}

/* Single Post */
.single-post-content {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: var(--section-padding);
}

.single-post-content h2 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.single-post-content p {
    margin-bottom: var(--space-lg);
}

.single-post-content img {
    margin: var(--space-xl) 0;
}

/* ============================================================
   18. Forms
   ============================================================ */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-size: var(--fs-small);
    font-weight: 500;
    color: var(--abba-navy);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--abba-sand);
    background: var(--abba-white);
    font-size: var(--fs-body);
    color: var(--abba-charcoal);
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.form-control:focus {
    border-color: var(--abba-gold);
    box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* ============================================================
   19. Responsive
   ============================================================ */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-wrapper,
    .rooftop-wrapper,
    .location-grid {
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
}

@media (max-width: 768px) {
    /* Show mobile toggle */
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    /* Grid to single column */
    .features-grid,
    .rooms-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .about-wrapper,
    .rooftop-wrapper,
    .location-grid {
        grid-template-columns: 1fr;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    /* Booking bar stack */
    .booking-bar {
        flex-direction: column;
        margin: -20px 16px 0;
        padding: var(--space-lg);
    }

    .booking-field {
        width: 100%;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    /* Hero */
    .hero {
        min-height: 550px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    /* Section padding */
    .section-padding {
        padding: 60px 5%;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .hero {
        min-height: 500px;
    }

    .room-card-body {
        padding: var(--space-lg);
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   20. RTL Adjustments
   ============================================================ */
[dir="rtl"] .room-link {
    flex-direction: row-reverse;
}

[dir="rtl"] .room-link::after {
    content: '←';
}

/* ============================================================
   21. Animations
   ============================================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slower), transform var(--transition-slower);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   22. Utilities
   ============================================================ */
.text-center { text-align: center; }
.text-start { text-align: start; }
.text-end { text-align: end; }

.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }

.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }

.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: var(--space-sm); }
.gap-2 { gap: var(--space-md); }
.gap-3 { gap: var(--space-lg); }

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

/* WooCommerce overrides if active */
.woocommerce .button,
.woocommerce a.button {
    background: var(--abba-gold) !important;
    color: var(--abba-navy) !important;
    border-radius: 0 !important;
    font-family: var(--font-body) !important;
}
