:root {
  --main-red: #b71c1c;
  --main-gold: #d4c04a;
  --main-bg: #fff8f0;
  --text-dark: #2d2d2d;
  --accent-gray: #f5f5f5;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Segoe UI', 'Arial', sans-serif;
  background: var(--main-bg);
  color: var(--text-dark);
}

.container {
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

header {
  background: var(--main-red);
  color: var(--main-gold);
  padding: 0.5rem 2rem;
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-brand {
  display: flex;
  align-items: center;
}

.brand-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 58px;
  margin-top: 12px;
  margin-bottom: 8px;
}

.brand-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #eee14a;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.brand-location {
  font-size: 0.8rem;
  color: #eee2a2;
  font-style: italic;
  margin-top: 2px;
  margin-left: 1px;
}




.logo {
  width: 80px;
  margin-right: 14px;
  background: #fff9ea;
  padding: 6px 8px;
  border-radius: 10px;
  border: 1px solid rgba(212, 192, 74, 0.6);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

header h1 {
  margin: 0;
  font-family: 'Georgia', serif;
  font-size: 1.5em;
  letter-spacing: 1px;
}

nav {
  margin-bottom: 0.5em;
}

nav a {
  color: var(--main-gold);
  text-decoration: none;
  margin: 0 0.8em;
  font-weight: bold;
  font-size: 1em;
  transition: color 0.2s;
  white-space: nowrap;
}

nav a:hover {
  color: #fff;
}

main {
  background: #fff;
  padding: 2em 1.5em 2em 1.5em;
}

section {
  margin-bottom: 2.5em;
}

.scroll-target {
  scroll-margin-top: 90px; /* Adjust this value to match your header's height */
}

h1 {
  color: var(--main-red);
  font-size: 1.4em;
  margin-bottom: 0.8em;
  font-weight: bold;
}

h2 {
  color: var(--main-red);
  border-bottom: 2px solid var(--main-gold);
  padding-bottom: 0.3em;
  margin-bottom: 1em;
  font-size: 1.5em;
}

.edit-btn {
  display: inline-block;
  margin-top: 0.7em;
  background: var(--main-gold);
  color: var(--main-red);
  border: none;
  border-radius: 5px;
  padding: 0.4em 1.2em;
  font-size: 1em;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.2s;
}

.edit-btn:hover {
  background: #fff8c6;
}

#login {
  max-width: 350px;
  margin: 2em auto;
  background: var(--accent-gray);
  border-radius: 8px;
  padding: 1.5em 1em;
  box-shadow: 0 1px 6px rgba(0,0,0,0.07);
}

#login-form {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

#login-form input[type="password"] {
  padding: 0.5em;
  border-radius: 4px;
  border: 1px solid #bbb;
  font-size: 1em;
}

#login-form button {
  background: var(--main-red);
  color: var(--main-gold);
  border: none;
  border-radius: 4px;
  padding: 0.5em 0;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

#login-form button:hover {
  background: var(--main-gold);
  color: var(--main-red);
}


.gallery-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1em;
  margin-top: 1em;
}

.gallery-images img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  object-fit: cover;
  height: 160px;
  cursor: pointer;
  transition: transform 0.2s;
}

.gallery-images img:hover {
  transform: scale(1.05);
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* Prices Table */
.prices-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1em;
  font-size: 1em;
}

.prices-table th, .prices-table td {
  padding: 0.8em 1em;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.prices-table th {
  color: var(--main-red);
  font-weight: bold;
  border-bottom: 2px solid var(--main-gold);
}

.prices-table tbody tr:nth-child(odd) {
  background-color: #fdfdfd;
}

.prices-table tbody tr:hover {
  background-color: var(--accent-gray);
}

.prices-table .price {
  font-weight: bold;
  text-align: center;
  color: var(--text-dark);
}

.prices-table .price-na {
  text-align: center;
  color: #ccc;
}
.prices-table .price-na::before {
  content: "–";
}


/* Contact Sections Styling */
.contact-section {
  background-color: transparent;
  padding: 0 0 12px 0;
  margin: 0 0 16px 0;
}

.contact-section:nth-child(2) {
  margin-top: 24px;
  padding: 16px;
  background-color: transparent;
  border-radius: 8px;
}

.contact-section p {
  margin: 8px 0;
}

/* Contact Methods Group Styling */
.contact-methods-group {
  background-color: transparent;
  border-radius: 8px;
  padding: 16px;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 20px;
  text-align: center;
}

.contact-methods-group p {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}

.contact-methods-group p strong {
  min-width: 90px;
  display: inline-block;
}

/* Phone styling */
.phone-button {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: all 0.2s ease;
}

.phone-icon {
  color: var(--main-red);
  margin-right: 8px;
  font-size: 18px;
  transition: transform 0.2s ease;
  vertical-align: middle;
}

.phone-button:hover {
  color: var(--text-dark);
}

.phone-button:hover .phone-icon {
  transform: scale(1.1);
}

/* Copy phone button styling */
.copy-phone-btn {
  background: none;
  border: none;
  color: var(--main-red);
  font-size: 16px;
  margin-left: 8px;
  padding: 4px 6px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  vertical-align: middle;
  position: relative;
}

.copy-phone-btn:hover {
  background-color: var(--main-red);
  color: #fff;
  transform: scale(1.1);
}

.copy-phone-btn:active {
  transform: scale(0.95);
}

/* Copy feedback tooltip */
.copy-feedback {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--main-red);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.copy-feedback::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: var(--main-red);
}

.copy-feedback.show {
  opacity: 1;
}

/* WhatsApp styling */
.whatsapp-button {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #25D366;
  font-weight: 500;
  transition: all 0.2s ease;
}

.whatsapp-icon {
  color: #25D366;
  margin-right: 8px;
  font-size: 18px;
  transition: transform 0.2s ease;
  vertical-align: middle;
}

.whatsapp-button:hover {
  color: #128C7E;
}

.whatsapp-button:hover .whatsapp-icon {
  transform: scale(1.1);
}

/* SMS styling */
.sms-button {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #007AFF;
  font-weight: 500;
  transition: all 0.2s ease;
}

.sms-icon {
  color: #007AFF;
  margin-right: 8px;
  font-size: 18px;
  transition: transform 0.2s ease;
  vertical-align: middle;
}

.sms-button:hover {
  color: #0056b3;
}

.sms-button:hover .sms-icon {
  transform: scale(1.1);
}

/* Address styling */
.address-text {
  margin: 0 0 8px 0;
}

.address-content {
  display: inline-flex;
  align-items: center;
  color: var(--text-dark);
  font-weight: 500;
}

.address-icon {
  color: var(--main-red);
  margin-right: 8px;
  font-size: 18px;
  vertical-align: middle;
}

.maps-button {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--main-red);
  color: var(--main-red);
  padding: 8px 16px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(60,60,60,0.05);
  transition: all 0.2s ease;
  margin: 8px auto 0;
}

.maps-button:hover {
  background-color: var(--main-red);
  color: #fff;
  box-shadow: 0 4px 8px rgba(60,60,60,0.15);
}

.maps-button:hover svg path:first-child {
  fill: #fff;
}

/* Opening Hours styling */
#opening-hours {
  margin-top: 40px;
  padding-top: 20px;
}

.opening-hours-group {
  background-color: transparent;
  border-radius: 8px;
  padding: 16px;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 20px;
}

.opening-hours-group p {
  display: flex;
  align-items: center;
  margin: 8px 0;
}

.opening-hours-group p strong {
  min-width: 180px;
  display: inline-block;
  font-weight: 500;
}

.hours-time {
  color: var(--text-dark);
  font-weight: 500;
}

.hours-icon {
  color: var(--main-red);
  margin-right: 8px;
  font-size: 18px;
  vertical-align: middle;
}

/* Reviews Section */
.reviews-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.qr-section {
  margin: 2em auto;
  max-width: 250px;
}

.qr-code {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
  margin: 1em auto;
  border: 2px solid var(--main-gold);
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

@media (min-width: 1200px) {
  .qr-section {
    max-width: 300px;
  }
  
  .qr-code {
    max-width: 220px;
  }
}

@media (min-width: 1600px) {
  .qr-section {
    max-width: 320px;
  }
  
  .qr-code {
    max-width: 240px;
  }
}

.qr-code:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.review-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--main-red);
  color: var(--main-red);
  padding: 8px 16px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(60,60,60,0.05);
  margin-top: 1.5em;
  transition: all 0.2s ease;
  width: 100%;
  max-width: 250px;
}

.review-button:hover {
  background-color: var(--main-red);
  color: #fff;
  box-shadow: 0 4px 8px rgba(60,60,60,0.15);
}

.thank-you {
  font-weight: bold;
  color: var(--main-red);
  margin-top: 1.5em;
}

/* Booking CTA Section */
.booking-cta-section {
  background: linear-gradient(135deg, var(--main-red) 0%, #8b0000 100%);
  color: #fff;
  text-align: center;
  padding: 2.5em 1.5em;
  margin: 2em 0;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(183, 28, 28, 0.3);
}

.booking-cta-container h3 {
  color: var(--main-gold);
  font-size: 1.8em;
  margin-bottom: 0.5em;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.booking-cta-container p {
  font-size: 1.1em;
  margin-bottom: 1.5em;
  color: #fff;
  opacity: 0.95;
}

/* Booking Buttons */
.booking-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.booking-button i {
  margin-right: 10px;
  font-size: 1.2em;
}

.booking-button.primary {
  background: var(--main-gold);
  color: var(--main-red);
  padding: 18px 35px;
  font-size: 1.2em;
  border: 3px solid var(--main-gold);
}

.booking-button.primary:hover {
  background: #fff;
  color: var(--main-red);
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.booking-button.secondary {
  background: var(--main-red);
  color: #fff;
  padding: 14px 28px;
  font-size: 1.1em;
  border: 2px solid var(--main-red);
  margin-top: 10px;
}

.booking-button.secondary:hover {
  background: var(--main-gold);
  color: var(--main-red);
  border-color: var(--main-gold);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(183, 28, 28, 0.4);
}

/* Contact Section Restructuring */
.booking-priority {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px solid var(--main-gold);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(212, 192, 74, 0.2);
}

.booking-priority h3 {
  color: var(--main-red);
  font-size: 1.4em;
  margin-bottom: 10px;
  font-weight: bold;
}

.booking-priority p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: var(--text-dark);
}

.other-inquiries {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

.other-inquiries h3 {
  color: var(--main-red);
  font-size: 1.2em;
  margin-bottom: 10px;
  font-weight: bold;
}

.other-inquiries p {
  margin-bottom: 15px;
  color: #666;
  font-style: italic;
}

/* Contact Methods Group - Updated */
.contact-methods-group {
  background-color: transparent;
  border-radius: 8px;
  padding: 10px 16px;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 0;
}

/* Main Booking Button in Services Section */
.booking-section-wrapper {
  background: linear-gradient(135deg, #fdf9f3 0%, #fff8f0 100%);
  border-radius: 15px;
  padding: 3.5em 2em 2.5em 2em;
  margin-top: 3.5em;
  box-shadow: 0 5px 20px rgba(212, 192, 74, 0.1);
  position: relative;
  overflow: hidden;
}

.booking-section-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 192, 74, 0.05) 0%, transparent 70%);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.booking-button-container {
  text-align: center;
  position: relative;
  z-index: 1;
}

.main-booking-button {
  background: linear-gradient(135deg, #d4c04a 0%, #c4b040 100%);
  color: #b71c1c;
  border: none;
  border-radius: 50px;
  padding: 20px 45px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 25px rgba(212, 192, 74, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  max-width: 100%;
  justify-content: center;
  position: relative;
  overflow: hidden;
  animation: goldPulse 2.5s infinite;
}

@keyframes goldPulse {
  0% {
    box-shadow: 0 8px 25px rgba(212, 192, 74, 0.4);
  }
  50% {
    box-shadow: 0 12px 35px rgba(212, 192, 74, 0.6);
  }
  100% {
    box-shadow: 0 8px 25px rgba(212, 192, 74, 0.4);
  }
}

/* Ripple effect */
.main-booking-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.main-booking-button:hover::after {
  width: 300px;
  height: 300px;
}

.main-booking-button:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(212, 192, 74, 0.5);
  background: linear-gradient(135deg, #e0d050 0%, #d4c04a 100%);
  color: #fff;
}

.main-booking-button:active {
  transform: translateY(-2px) scale(1.01);
}

.main-booking-button i {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.main-booking-button:hover i {
  transform: rotate(15deg);
}

.button-text {
  font-size: 16px;
  letter-spacing: 0.5px;
}

.button-arrow {
  font-size: 24px;
  font-weight: normal;
  transition: transform 0.3s ease;
  display: inline-block;
}

.main-booking-button:hover .button-arrow {
  transform: translateX(5px);
}

/* Booking subtitle */
.booking-subtitle {
  color: #666;
  font-size: 15px;
  margin-top: 12px;
  font-style: italic;
  opacity: 0.9;
}

/* Trust signals */
.trust-signals {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #555;
  font-size: 14px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.trust-item i {
  color: #b71c1c;
  font-size: 14px;
}

/* Mobile Sticky Booking Button */
.mobile-sticky-booking {
  display: none;
  position: fixed;
  bottom: -100px;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 10px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  transition: bottom 0.3s ease;
}

.mobile-sticky-booking.show {
  bottom: 0;
}

.mobile-booking-btn {
  width: 100%;
  background: linear-gradient(135deg, #d4c04a 0%, #c4b040 100%);
  color: #b71c1c;
  border: none;
  border-radius: 30px;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(212, 192, 74, 0.4);
  transition: all 0.3s ease;
}

.mobile-booking-btn:active {
  transform: scale(0.98);
}

@media (max-width: 768px) {
  .mobile-sticky-booking {
    display: block;
  }
  
  .booking-section-wrapper {
    padding: 2.5em 1.5em 2em 1.5em;
    margin-top: 2.5em;
  }
  
  .main-booking-button {
    padding: 18px 30px;
    font-size: 17px;
  }
  
  .trust-signals {
    gap: 15px;
  }
  
  .trust-item {
    font-size: 13px;
  }
}

footer {
  text-align: center;
  background: var(--main-red);
  color: var(--main-gold);
  padding: 0.3rem 0;
  font-size: 1em;
}

.footer-links {
  margin-top: 0.5em;
}

.footer-links a {
  color: var(--main-gold);
  text-decoration: none;
  font-size: 0.9em;
  margin: 0 0.5em;
}

.footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .scroll-target {
    scroll-margin-top: 140px;
  }
  header {
    flex-direction: column;
    padding: 0.5rem 1rem;
  }
  header h1 {
    font-size: 1.2em;
  }
  nav {
    margin-top: 0.5em;
  }
  nav a {
    font-size: 0.9em;
    margin: 0 0.5em;
  }
}

@media (max-width: 600px) {
  main {
    padding: 1em 0.3em;
  }
  .gallery-images {
    grid-template-columns: 1fr 1fr;
  }
  h2 {
    font-size: 1.1em;
  }
  .prices-table {
    font-size: 0.9em;
  }
  .prices-table th, .prices-table td {
    padding: 0.6em 0.4em;
    text-align: center;
  }
  .prices-table th:first-child, .prices-table td:first-child {
    text-align: left;
  }
  .reviews-content {
    padding: 0 0.5em;
  }
  .qr-section {
    max-width: 200px;
  }
  .qr-code {
    max-width: 180px;
  }
  .phone-button {
    white-space: normal;
    line-height: 1.4;
    flex-wrap: wrap;
  }
  .phone-text::after {
    content: "\A";
    white-space: pre;
  }
  
  /* Mobile booking button adjustments */
  .booking-cta-section {
    padding: 2em 1em;
    margin: 1.5em 0;
  }
  
  .booking-cta-container h3 {
    font-size: 1.5em;
  }
  
  .booking-cta-container p {
    font-size: 1em;
  }
  
  .booking-button.primary {
    padding: 16px 25px;
    font-size: 1.1em;
  }
  
  .booking-button.secondary {
    padding: 12px 20px;
    font-size: 1em;
  }
  
  .booking-priority {
    padding: 15px;
    margin-bottom: 25px;
  }
  
  .booking-priority h3 {
    font-size: 1.2em;
  }
  
  .other-inquiries {
    padding: 15px;
  }
  
  .other-inquiries h3 {
    font-size: 1.1em;
  }

  .logo {
    width: 70px;
    padding: 5px 7px;
  }
}

/* Language switcher in header */
.lang-switcher {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-left: 10px;
}

.lang-btn {
  width: 34px;
  height: 26px;
  border: 1px solid rgba(255,255,255,0.5);
  background: transparent;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.lang-btn:hover {
  border-color: #fff;
}

.lang-btn.active {
  outline: 2px solid #fff;
  outline-offset: 1px;
}

/* Mobile adjustments for language switcher */
@media (max-width: 768px) {
  .lang-switcher {
    margin-top: 8px;
  }
}

/* Ensure inline SVG flags fill the button nicely */
.lang-btn svg {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 2px;
}
