/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #CC0000;
    --dark-bg: #1a1a1a;
    --light-bg: #f5f5f5;
    --text-dark: #fff;
    --text-light: #fff;
    --gold: #D4AF37;
}

body {
    background: black;
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: var(--primary-red);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
}

.logo-text {
    font-size: 1.5rem;
    color: var(--text-light);
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    font-style: italic;
    transition: opacity 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    opacity: 0.8;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background-image: url('images/hero-image.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image {
    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.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    max-width: 900px;
}

.hero-overlay p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--text-light);
}

.btn-primary:hover {
    background: #990000;
}

.btn-secondary {
    background: #CC0000;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-red);
}

/* Sections */
.intro-section, .locations, .about-preview, .contact-section, .legal-notice {
    padding: 4rem 0;
}

.intro-section {
    background: black;
}

.locations h2, .about-preview h2, .contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.location-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.location-row.reverse {
  direction: rtl;
}

.location-row.reverse > * {
  direction: ltr;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.location-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-image {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-image-right {
    border-bottom-right-radius: 114px;
    border-top-right-radius: 114px;
}

.location-image-left {
    border-bottom-left-radius: 114px;
    border-top-left-radius: 114px;   
}
.location-row .location-image {
  border-top-right-radius: 114px;
  border-bottom-right-radius: 114px;
}

/* reversed rows: image on the left */
.location-row.reverse .location-image {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 114px;
  border-bottom-left-radius: 114px;
}
/* CTA overlay */
.image-cta {
  position: absolute;
  bottom: 20px;
  left: 100px;
  padding: 0.75rem 1.5rem;
  background: rgba(0,0,0,0.65);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.image-cta:hover {
  background: rgba(0,0,0,0.85);
}


.location-card h3 {
    padding: 1rem;
    font-size: 1.5rem;
    color: var(--primary-red);
}

.location-card p {
    padding: 0 1rem 1rem;
    line-height: 1.6;
}

.location-card .btn-secondary {
    margin: 1rem;
    display: inline-block;
    color: var(--primary-red);
    border-color: var(--primary-red);
}

.location-card .btn-secondary:hover {
    background: var(--primary-red);
    color: var(--text-light);
}

.location-text p {
    font-size: 22px;
}

.location-text h3 {
    font-size: 30px;
    color: var(--gold);
}

.about-row {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.about-text { flex: 1.2; }
.about-side { flex: 0.8; }

.about-side img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.about-note {
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.about-warning {
  font-size: 0.95rem;
  font-weight: bold;
}

.contact-form {
  padding: 0;
  background: none;
  max-width: 100%;
}

.contact-form h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

/* Inputs */
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ccc;
  padding: 0.75rem 0.9rem;
  font-size: 0.95rem;
  border-radius: 4px;
  font-family: inherit;
}

.contact-form textarea {
  resize: vertical;
  margin-top: 1.5rem;
}

/* Two-column inputs */
.contact-form .form-row {
  display: flex;
  gap: 1.5rem;
}

/* Button — quieter, premium */
.contact-form .submit-btn {
  margin-top: 2rem;
  width: auto;
  padding: 0.7rem 2.2rem;
  font-size: 0.95rem;
  background: transparent;
  color: var(--primary-red);
  border: 2px solid var(--primary-red);
  border-radius: 4px;
}

.contact-form .submit-btn:hover {
  background: var(--primary-red);
  color: #fff;
}

.contact-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: flex-start;
}

.legal-box {
  flex: 0.8;
  font-size: 0.9rem;
  color: var(--primary-red);
  line-height: 1.6;
  padding-top: 4.2rem; 
}



/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
}

.footer-contact {
    text-align: center;
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Booking Form Styles */
.booking-section {
    padding: 4rem 0;
    background: black;
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--dark-bg);
    padding: 3rem;
    border-radius: 10px;
}

.booking-info {
    color: var(--text-light);
}

.booking-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.info-section {
    margin-bottom: 2rem;
}

.info-section h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.info-section ul {
    margin-left: 1.5rem;
    line-height: 1.8;
}

.booking-form {
    background: #D9D9D996;
    padding: 2rem;
    border-radius: 10px;
}

.booking-form h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-red);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #D9D9D9;
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-row1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.payment-options,
.disclaimer-check {
    margin: 1.5rem 0;
}

.payment-options label,
.disclaimer-check label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.warning-text {
    color: var(--primary-red);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-red);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #990000;
}

/* Contact Form */
.contact-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 10px;
}

/* Gallery Styles */
.gallery-section {
    padding: 4rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 300px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.5rem;
    font-size: 0.9rem;
}

/* About/FAQ Styles */
.about-section, .faq-section {
    padding: 1rem 0;
}

.faq-item {
    margin-bottom: 2rem;
    background: black;
}

.faq-item h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.faq-item ul, .faq-item ol {
    margin-left: 2rem;
    line-height: 1.8;
}

/* Location Detail Pages */
.location-detail {
    padding: 4rem 0;
}

.location-detail h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
}

.location-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
    line-height: 1.8;
}

.room-section {
    margin: 4rem 0;
}

.room-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.room-title {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff);
  min-width: 160px;
  box-shadow: var(--shadow);
  z-index: 1;
  border-radius: 4px;
  overflow: hidden;
}

.dropdown-content a {
  color: #fff;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
  background-color: var(--background-light);
  color: var(--primary-red);
}

.dropdown:hover .dropdown-content {
  display: block;
}


/* Responsive Design */
@media (max-width: 768px) {
    
      .about-row,
      .contact-row {
          flex-direction: column;
          grid-template-columns: 1fr;
          padding-bottom: 2rem;
          gap: 1rem;
      }
      
      .legal-box {
          padding-top: 1rem;
      }
    .location-row {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
    
      /* image always on top */
      .location-image {
        order: 1;
        height: 320px;
        border-radius: 0 !important;
      }
      
       .room-gallery {
        display: flex;
        overflow-x: auto;
        gap: 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        }
    
        .room-gallery > div {
            flex: 0 0 80%;
            scroll-snap-align: center;
        }
        .room-gallery::-webkit-scrollbar {
            display: none;
        }
        .room-gallery {
            scrollbar-width: none;
        }
    
      .location-text {
        order: 2;
        text-align: center;
      }
    
      .location-text p {
        max-width: 100%;
        font-size: 16px;
      }
      
      .location-text h3 {
          font-size: 20px;
      }
    
      /* kill the reverse trick on mobile */
      .location-row.reverse {
        direction: ltr;
      }
    
    .hamburger {
        display: flex;
    }
    
    .dropdown-content {
        position: static;
        background-color: transparent;
        box-shadow: none;
        padding-left: 20px;
      }
    
      .dropdown-content a {
        padding: 8px 0;
      }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-red);
        flex-direction: column;
        padding: 1rem;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-overlay p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .booking-container {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        display: contents;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-row1 {
        grid-template-columns: 1fr 1fr;
        font-size: 0.7rem;
    }
    
    .date {
        width: 125px !important;
    }
    
    .time {
        width: 125px !important;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 400px;
    }

    .hero-overlay h1 {
        font-size: 1.5rem;
    }

    .hero-overlay p {
        font-size: 0.95rem;
    }

    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}