/*!
Theme Name: hotel-3-etoiles-theme
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: hotel-3-etoiles-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

hotel-3-etoiles-theme is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

  <style>
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy: #1B2B4B;
      --navy-light: #243660;
      --gold: #C9A96E;
      --gold-light: #DFC08E;
      --gold-pale: #F5EDD8;
      --cream: #FAF8F5;
      --white: #FFFFFF;
      --gray: #8A8E99;
      --gray-light: #E8E6E2;
      --text: #2C2C2C;
      --font-display: 'Playfair Display', Georgia, serif;
      --font-body: 'Inter', system-ui, sans-serif;
    }

    html { scroll-behavior: smooth; }
    body { font-family: var(--font-body); color: var(--text); background: var(--cream); line-height: 1.6; }

    /* ── NAVBAR ── */
    #site-header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: rgba(27, 43, 75, 0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(201,169,110,0.25);
      width: 100%;
    }
    .nav-inner {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 2rem;
      height: 72px;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      position: relative;
    }
    .nav-brand {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      flex-shrink: 0;
    }
    .nav-stars { display: flex; flex-direction: row; gap: 3px; }
    .nav-stars span { color: var(--gold); font-size: 14px; }
    .nav-brand-text {
      font-family: var(--font-display);
      color: var(--white);
      font-size: 1.05rem;
      letter-spacing: 0.02em;
      line-height: 1.2;
    }
    .nav-brand-text small {
      display: block;
      font-family: var(--font-body);
      font-size: 0.62rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 400;
    }
    .nav-links {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 1.6rem;
      flex-shrink: 0;
      list-style: none;
    }
    .nav-links a {
      display: inline-block;
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.75);
      text-decoration: none;
      white-space: nowrap;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta {
      background: var(--gold) !important;
      color: var(--navy) !important;
      padding: 9px 18px !important;
      border-radius: 2px;
      font-weight: 600 !important;
      transition: background 0.2s !important;
    }
    .nav-cta:hover { background: var(--gold-light) !important; }

    /* ── HERO ── */
    #hero {
      height: 100vh; min-height: 680px;
      position: relative;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
      background: var(--navy);
    }
    .hero-bg {
      position: absolute; inset: 0;
      background: 
        linear-gradient(160deg, rgba(27,43,75,0.82) 0%, rgba(27,43,75,0.55) 50%, rgba(27,43,75,0.75) 100%),
        url('https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?w=1600&q=80') center/cover no-repeat;
      transform: scale(1.04);
      animation: heroZoom 14s ease-in-out infinite alternate;
    }
    @keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1.00); } }

    /* Mosaic accent bar — signature element */
    .hero-mosaic {
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 6px;
      background: repeating-linear-gradient(90deg,
        var(--gold) 0px, var(--gold) 18px,
        var(--navy) 18px, var(--navy) 24px,
        var(--gold-light) 24px, var(--gold-light) 36px,
        var(--navy) 36px, var(--navy) 42px
      );
      opacity: 0.9;
    }
    .hero-content {
      position: relative; z-index: 2;
      text-align: center;
      padding: 2rem;
      max-width: 860px;
    }
    .hero-eyebrow {
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.5rem;
      display: flex; align-items: center; justify-content: center; gap: 12px;
    }
    .hero-eyebrow::before, .hero-eyebrow::after {
      content: ''; display: block; width: 40px; height: 1px; background: var(--gold); opacity: 0.6;
    }
    .hero-stars {
      display: flex; justify-content: center; gap: 8px;
      margin-bottom: 1.2rem;
    }
    .hero-stars span {
      color: var(--gold); font-size: 28px;
      animation: starPulse 3s ease-in-out infinite;
    }
    .hero-stars span:nth-child(2) { animation-delay: 0.4s; }
    .hero-stars span:nth-child(3) { animation-delay: 0.8s; }
    @keyframes starPulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.75; transform: scale(0.92); } }

    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 6vw, 4.2rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 1.2rem;
    }
    .hero-title em {
      color: var(--gold);
      font-style: italic;
    }
    .hero-sub {
      font-size: clamp(1rem, 2vw, 1.15rem);
      color: rgba(255,255,255,0.78);
      font-weight: 300;
      max-width: 560px;
      margin: 0 auto 2.5rem;
      line-height: 1.7;
    }
    .hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .btn-primary {
      display: inline-block;
      background: var(--gold);
      color: var(--navy);
      font-family: var(--font-body);
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 16px 36px;
      border-radius: 2px;
      text-decoration: none;
      transition: background 0.2s, transform 0.2s;
    }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
    .btn-outline {
      display: inline-block;
      border: 1.5px solid rgba(255,255,255,0.45);
      color: var(--white);
      font-family: var(--font-body);
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 16px 36px;
      border-radius: 2px;
      text-decoration: none;
      transition: border-color 0.2s, background 0.2s;
    }
    .btn-outline:hover { border-color: var(--gold); background: rgba(201,169,110,0.12); }

    .hero-scroll {
      position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
      z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
      color: rgba(255,255,255,0.5); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
    }
    .scroll-line {
      width: 1px; height: 40px; background: var(--gold); opacity: 0.5;
      animation: scrollPulse 2s ease-in-out infinite;
    }
    @keyframes scrollPulse { 0%,100% { transform: scaleY(1); opacity: 0.5; } 50% { transform: scaleY(0.5); opacity: 0.2; } }

    /* ── STATS BAR ── */
    .stats-bar {
      background: var(--navy);
      padding: 2.2rem 2rem;
      display: flex; justify-content: center; gap: 0;
    }
    .stat-item {
      text-align: center; padding: 0 3.5rem;
      border-right: 1px solid rgba(255,255,255,0.1);
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: var(--font-display);
      font-size: 2rem; font-weight: 600;
      color: var(--gold); line-height: 1;
    }
    .stat-label {
      font-size: 0.72rem; font-weight: 400;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      margin-top: 6px;
    }

    /* ── SECTIONS COMMONS ── */
    section { padding: 90px 2rem; }
    .container { max-width: 1140px; margin: 0 auto; }
    .section-eyebrow {
      font-size: 0.72rem; font-weight: 600;
      letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(1.9rem, 4vw, 2.8rem);
      font-weight: 700; color: var(--navy);
      line-height: 1.2; margin-bottom: 1.2rem;
    }
    .section-title em { color: var(--gold); font-style: italic; }
    .section-body {
      font-size: 1.05rem; font-weight: 300;
      color: #4A4A4A; line-height: 1.8;
      max-width: 620px;
    }
    .divider-gold {
      width: 60px; height: 2px; background: var(--gold);
      margin: 1.2rem 0 1.8rem;
    }

    /* ── ABOUT ── */
    #about { background: var(--cream); }
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: center;
    }
    .about-img-wrap { position: relative; }
    .about-img {
      width: 100%; aspect-ratio: 4/5;
      object-fit: cover;
      border-radius: 2px;
      box-shadow: 0 20px 60px rgba(27,43,75,0.18);
    }
    .about-badge {
      position: absolute;
      bottom: -20px; right: -20px;
      background: var(--navy);
      color: var(--white);
      width: 110px; height: 110px;
      border-radius: 50%;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      box-shadow: 0 8px 32px rgba(27,43,75,0.3);
    }
    .about-badge .badge-stars { color: var(--gold); font-size: 11px; letter-spacing: 3px; }
    .about-badge .badge-text {
      font-family: var(--font-display);
      font-size: 0.7rem;
      text-align: center;
      line-height: 1.4;
      margin-top: 6px;
      padding: 0 12px;
    }
    .about-features {
      margin-top: 2.5rem;
      display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
    }
    .feature-pill {
      display: flex; align-items: center; gap: 10px;
      font-size: 0.88rem; color: var(--navy);
      font-weight: 500;
    }
    .feature-pill span.icon {
      width: 34px; height: 34px;
      background: var(--gold-pale);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; flex-shrink: 0;
    }

    /* ── ROOMS ── */
    #rooms { background: var(--white); }
    .rooms-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3.5rem;
    }
    .room-card {
      border-radius: 2px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(27,43,75,0.08);
      transition: transform 0.3s, box-shadow 0.3s;
      background: var(--white);
    }
    .room-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(27,43,75,0.16); }
    .room-img {
      width: 100%; aspect-ratio: 4/3;
      object-fit: cover;
    }
    .room-body { padding: 1.6rem; }
    .room-tag {
      font-size: 0.65rem; font-weight: 600;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 0.5rem;
    }
    .room-name {
      font-family: var(--font-display);
      font-size: 1.3rem; font-weight: 600;
      color: var(--navy); margin-bottom: 0.7rem;
    }
    .room-desc {
      font-size: 0.9rem; color: #666;
      line-height: 1.65; margin-bottom: 1.2rem;
    }
    .room-amenities {
      display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 1.4rem;
    }
    .amenity-tag {
      background: var(--gold-pale);
      color: var(--navy);
      font-size: 0.72rem; font-weight: 500;
      padding: 4px 10px; border-radius: 2px;
    }
    .room-price {
      display: flex; align-items: baseline; gap: 4px;
      font-family: var(--font-display);
    }
    .price-from { font-size: 0.72rem; color: var(--gray); }
    .price-num { font-size: 1.6rem; font-weight: 700; color: var(--navy); }
    .price-unit { font-size: 0.78rem; color: var(--gray); }

    /* ── LOCATION / SEO SECTION ── */
    #location { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
    #location::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 6px;
      background: repeating-linear-gradient(90deg,
        var(--gold) 0px, var(--gold) 18px,
        transparent 18px, transparent 24px,
        var(--gold-light) 24px, var(--gold-light) 36px,
        transparent 36px, transparent 42px
      );
    }
    .location-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
    }
    .location-content .section-title { color: var(--white); }
    .location-content .section-body { color: rgba(255,255,255,0.7); }
    .location-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
    .location-item {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 1.1rem 1.4rem;
      background: rgba(255,255,255,0.06);
      border-left: 3px solid var(--gold);
      border-radius: 0 2px 2px 0;
    }
    .location-item .li-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
    .location-item .li-text strong {
      display: block; font-size: 0.92rem;
      font-weight: 600; color: var(--gold-light); margin-bottom: 2px;
    }
    .location-item .li-text span { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
    .location-map {
      background: rgba(255,255,255,0.06);
      border-radius: 2px;
      padding: 2rem;
      height: 340px;
      display: flex; align-items: center; justify-content: center;
      flex-direction: column; gap: 1rem;
      border: 1px solid rgba(201,169,110,0.2);
    }
    .map-icon { font-size: 3rem; }
    .map-address {
      text-align: center;
      color: rgba(255,255,255,0.6);
      font-size: 0.9rem; line-height: 1.6;
    }
    .map-address strong { color: var(--gold); display: block; margin-bottom: 6px; font-size: 1rem; }

    /* ── AMENITIES ── */
    #amenities { background: var(--cream); }
    .amenities-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem; margin-top: 3.5rem;
    }
    .amenity-card {
      background: var(--white);
      border-radius: 2px;
      padding: 2rem 1.5rem;
      text-align: center;
      box-shadow: 0 2px 16px rgba(27,43,75,0.06);
      transition: box-shadow 0.3s, transform 0.3s;
    }
    .amenity-card:hover { box-shadow: 0 8px 32px rgba(27,43,75,0.12); transform: translateY(-3px); }
    .amenity-icon { font-size: 2.2rem; margin-bottom: 1rem; }
    .amenity-name {
      font-family: var(--font-display);
      font-size: 1rem; font-weight: 600;
      color: var(--navy); margin-bottom: 0.5rem;
    }
    .amenity-desc { font-size: 0.85rem; color: var(--gray); line-height: 1.55; }

    /* ── SEO TEXT BLOCK ── */
    #seo-content { background: var(--white); padding: 70px 2rem; }
    .seo-inner {
      max-width: 860px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
    }
    .seo-inner h2 {
      font-family: var(--font-display);
      font-size: 1.5rem; color: var(--navy);
      margin-bottom: 1rem; grid-column: 1 / -1;
    }
    .seo-inner p, .seo-inner li {
      font-size: 0.92rem; color: #555; line-height: 1.8;
    }
    .seo-inner ul { padding-left: 1.2rem; }
    .seo-inner li { margin-bottom: 0.4rem; }
    .seo-inner h3 {
      font-family: var(--font-display);
      font-size: 1.1rem; color: var(--navy);
      margin-bottom: 0.8rem;
    }

    /* ── TESTIMONIALS ── */
    #avis { background: var(--gold-pale); }
    .avis-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 2rem; margin-top: 3.5rem;
    }
    .avis-card {
      background: var(--white);
      padding: 2rem; border-radius: 2px;
      box-shadow: 0 2px 16px rgba(27,43,75,0.06);
    }
    .avis-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 1rem; }
    .avis-text {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 1rem; color: var(--navy);
      line-height: 1.7; margin-bottom: 1.2rem;
    }
    .avis-author { font-size: 0.82rem; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: 0.1em; }

    /* ── CTA BANNER ── */
    #cta {
      background: var(--gold);
      padding: 70px 2rem;
      text-align: center;
    }
    #cta h2 {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 700; color: var(--navy);
      margin-bottom: 0.8rem;
    }
    #cta p { font-size: 1.05rem; color: rgba(27,43,75,0.75); margin-bottom: 2rem; }
    .btn-dark {
      display: inline-block;
      background: var(--navy);
      color: var(--white);
      font-size: 0.82rem; font-weight: 600;
      letter-spacing: 0.15em; text-transform: uppercase;
      padding: 16px 42px; border-radius: 2px;
      text-decoration: none;
      transition: background 0.2s;
    }
    .btn-dark:hover { background: var(--navy-light); }

    /* ── FOOTER ── */
    footer {
      background: #0F1A2E;
      color: rgba(255,255,255,0.55);
      padding: 60px 2rem 30px;
    }
    .footer-grid {
      max-width: 1140px; margin: 0 auto;
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem; margin-bottom: 3rem;
    }
    .footer-brand .brand-name {
      font-family: var(--font-display);
      font-size: 1.2rem; color: var(--white);
      margin-bottom: 0.3rem;
    }
    .footer-brand .brand-stars { color: var(--gold); font-size: 12px; letter-spacing: 3px; }
    .footer-brand p {
      font-size: 0.85rem; line-height: 1.7;
      margin-top: 1rem; max-width: 260px;
    }
    .footer-col h4 {
      font-size: 0.72rem; font-weight: 600;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 1.2rem;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 0.6rem; }
    .footer-col ul li a {
      font-size: 0.88rem; color: rgba(255,255,255,0.55);
      text-decoration: none; transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: var(--gold); }
    .footer-bottom {
      max-width: 1140px; margin: 0 auto;
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,0.08);
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 1rem;
    }
    .footer-bottom p { font-size: 0.8rem; }
    .footer-bottom a { color: var(--gold); text-decoration: none; }

    /* ── HAMBURGER ── */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 6px;
      flex-shrink: 0;
    }
    .nav-hamburger span {
      display: block;
      width: 24px; height: 2px;
      background: var(--white);
      border-radius: 2px;
    }
    .nav-mobile-menu {
      display: none;
      position: absolute;
      top: 72px; left: 0; right: 0;
      background: rgb(27,43,75);
      border-bottom: 2px solid rgba(201,169,110,0.4);
      padding: 0.5rem 2rem 1.5rem;
      z-index: 999;
      flex-direction: column;
    }
    .nav-mobile-menu.open { display: flex; }
    .nav-mobile-menu a {
      display: block;
      font-family: var(--font-body);
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      padding: 0.9rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .nav-mobile-menu a.nav-cta-mobile {
      margin-top: 1rem;
      text-align: center;
      background: var(--gold);
      color: var(--navy);
      padding: 12px;
      border-radius: 2px;
      font-weight: 600;
      border: none;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .about-grid, .location-grid, .rooms-grid { grid-template-columns: 1fr; }
      .amenities-grid { grid-template-columns: repeat(2, 1fr); }
      .avis-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .stat-item { padding: 0 1.5rem; }
      .seo-inner { grid-template-columns: 1fr; }
      .seo-inner h2 { grid-column: 1; }
      .nav-links { display: none !important; }
      .nav-hamburger { display: flex; }
      .about-badge { bottom: -12px; right: -12px; width: 90px; height: 90px; }
    }
    @media (max-width: 600px) {
      .stats-bar { flex-direction: column; gap: 1.5rem; }
      .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 1.5rem; }
      .stat-item:last-child { border-bottom: none; }
      .footer-grid { grid-template-columns: 1fr; }
      .amenities-grid { grid-template-columns: 1fr 1fr; }
    }

    /* accessibility */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation: none !important; transition: none !important; }
    }
    :focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
  </style>