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

:root {
  --background: #FAF9F7;
  --foreground: #1A1A1A;
  --primary: #1A1A1A;
  --primary-foreground: #FAF9F7;
  --secondary: #F5F3EF;
  --muted: #6B6B6B;
  --muted-foreground: #6B6B6B;
  --accent: #F5F3EF;
  --border: #E8E4DC;
  --gold: #B8860B;
  --gold-light: #D4A84B;
  --cream: #FAF9F7;
  --cream-dark: #F5F3EF;
  --charcoal: #1A1A1A;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* Utility Classes */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 6rem 1.5rem;
}

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

.text-muted {
  color: var(--muted);
}

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

.text-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.text-elegant {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.8;
}

.heading-display {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.heading-section {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
}

.heading-card {
  font-size: 1.5rem;
  font-weight: 500;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(184, 134, 11, 0.3);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: white;
}

.btn-success {
  background: #22c55e;
  color: white;
  font-weight: 600;
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
  background: #16a34a;
}

.btn-call {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  font-weight: 600;
  animation: pulse 2s infinite;
}

.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
  animation: none;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }
}

/* Floating Call Button */
.floating-call-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 0 1.25rem;
  height: 60px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.floating-call-btn svg {
  width: 24px;
  height: 24px;
  stroke: white;
  flex-shrink: 0;
}

.floating-call-text {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

.floating-call-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(34, 197, 94, 0.6);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Hide floating button on desktop */
@media (min-width: 768px) {
  .floating-call-btn {
    display: none;
  }
}

/* Glass Card */
.glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(232, 228, 220, 0.5);
  transition: all 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

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

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  background: rgba(250, 249, 247, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(250, 249, 247, 0.98);
  backdrop-filter: blur(20px);
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  height: 50px;
}

.navbar-logo img {
  /* height: 100%; */
  width: 200px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.navbar-logo:hover img {
  transform: scale(1.05);
}

.navbar.scrolled .navbar-logo {
  height: 45px;
}

.navbar.scrolled .navbar-logo img {
  width: 200px;
}

.navbar-links {
  display: none;
  gap: 1.5rem;
  list-style: none;
}

.navbar-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.3s ease;
  position: relative;
}

.navbar-links a:hover {
  color: var(--gold);
}

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

.navbar-links a:hover::after {
  width: 100%;
}

.navbar-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

.navbar-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  transition: opacity 0.3s ease;
}

.navbar-social a:hover {
  opacity: 0.7;
}

.navbar-social a:first-child {
  color: #E4405F;
}

.navbar-social a:last-child {
  color: #1877F2;
}

.navbar-social svg {
  width: 20px;
  height: 20px;
}

.navbar-btn {
  display: none;
  padding: 0.75rem 1.25rem;
  font-size: 0.8rem;
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 999;
  padding: 6rem 2rem 2rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-menu-links a {
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.mobile-menu-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.mobile-menu-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  transition: opacity 0.3s ease;
}

.mobile-menu-social a:hover {
  opacity: 0.7;
}

.mobile-menu-social a:first-child {
  color: #E4405F;
}

.mobile-menu-social a:last-child {
  color: #1877F2;
}

.mobile-menu-social svg {
  width: 28px;
  height: 28px;
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)),
    url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1920&q=80') center/cover no-repeat;
}

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

.hero-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-weight: 300;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn-hero-outline {
  background: transparent;
  border: 1px solid white;
  color: white;
}

.btn-hero-outline:hover {
  background: white;
  color: var(--charcoal);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
  stroke: white;
  opacity: 0.7;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ==================== ABOUT ==================== */
.about {
  padding: 4rem 1.5rem;
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.about-image-wrapper {
  position: relative;
}

.about-image-bg {
  position: absolute;
  inset: -1rem;
  background: rgba(184, 134, 11, 0.2);
  border-radius: 0.5rem;
  transform: rotate(3deg);
  transition: transform 0.3s ease;
}

.about-image-wrapper:hover .about-image-bg {
  transform: rotate(2deg);
}

.about-image {
  position: relative;
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 0.5rem;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  margin-bottom: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted);
}

/* ==================== SERVICES ==================== */
.services {
  background: var(--cream-dark);
  padding: 4rem 1.5rem;
}

.services-header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-header p.text-elegant {
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.service-card {
  padding: 2rem;
  border-radius: 0.5rem;
  cursor: pointer;
}

.service-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(184, 134, 11, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.service-card:hover .service-icon {
  background: rgba(184, 134, 11, 0.2);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
}

.service-price {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.service-card h3 {
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ==================== GALLERY ==================== */
.gallery {
  padding: 4rem 1.5rem;
}

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 1280px;
  margin: 0 auto 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay svg {
  width: 32px;
  height: 32px;
  stroke: white;
}

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

.gallery-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--gold);
  transition: gap 0.3s ease;
}

.gallery-cta a:hover {
  gap: 0.75rem;
}

/* ==================== WHY CHOOSE US ==================== */
.why-choose-us {
  background: var(--charcoal);
  color: white;
  padding: 4rem 1.5rem;
}

.why-choose-us-header {
  text-align: center;
  margin-bottom: 3rem;
}

.why-choose-us-header p {
  opacity: 0.8;
}

.features-grid {
  display: grid;
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.feature-card {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: rgba(184, 134, 11, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
}

.feature-card h3 {
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.875rem;
  opacity: 0.7;
  line-height: 1.6;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
  padding: 4rem 1.5rem;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.testimonial-card {
  padding: 2rem;
  border-radius: 0.5rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  stroke: var(--gold);
}

.testimonial-content {
  font-size: 1rem;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--gold);
}

/* ==================== BOOKING ==================== */
.booking {
  background: var(--cream-dark);
  padding: 4rem 1.5rem;
}

.booking-grid {
  display: grid;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
}

.booking-content h2 {
  margin-bottom: 1.5rem;
}

.booking-content p {
  margin-bottom: 1.5rem;
}

.booking-features {
  list-style: none;
}

.booking-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--muted);
}

.booking-features svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  flex-shrink: 0;
}

.booking-form-card {
  padding: 2rem;
  border-radius: 0.5rem;
}

.booking-form-card h3 {
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: 0.25rem;
  background: white;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.booking-form-card .btn {
  width: 100%;
  margin-top: 0.5rem;
}

.opening-hours-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  text-align: center;
}

.hours-list-large {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2rem;
}

.hours-row-large {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(184, 134, 11, 0.1);
  font-size: 1rem;
}

.hours-row-large:last-of-type {
  border-bottom: none;
}

.hours-row-large .day {
  color: var(--charcoal);
  font-weight: 600;
  font-size: 1.125rem;
}

.hours-row-large .time {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.125rem;
}

.hours-row-large.closed .time {
  color: var(--muted);
  font-style: italic;
}

.booking-cta {
  margin-top: 1.5rem;
}

/* ==================== CONTACT ==================== */
.contact {
  padding: 4rem 1.5rem;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-grid {
  display: grid;
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.contact-map {
  border-radius: 0.5rem;
  overflow: hidden;
  height: 300px;
}

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

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.contact-card {
  padding: 1.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(184, 134, 11, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
}

.contact-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-card p,
.contact-card a {
  font-size: 0.875rem;
  color: var(--muted);
}

.contact-card a:hover {
  color: var(--gold);
}

.contact-info-grid .opening-hours-card {
  grid-column: 1 / -1;
}

.opening-hours-card {
  padding: 2rem;
}

.opening-hours-content {
  width: 100%;
}

.hours-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 2rem;
  margin-top: 0.75rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

.hours-row:last-child {
  grid-column: 1 / -1;
  justify-content: center;
  padding: 0.75rem 1rem;
  background: rgba(184, 134, 11, 0.05);
  border-radius: 0.25rem;
  margin-top: 0.5rem;
}

.hours-row .day {
  color: var(--charcoal);
  font-weight: 500;
}

.hours-row .time {
  color: var(--muted);
  font-weight: 600;
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--charcoal);
  color: white;
  padding: 4rem 1.5rem 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto 3rem;
}

.footer-brand h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-brand h3 span {
  color: var(--gold);
}

.footer-brand p {
  font-size: 0.875rem;
  opacity: 0.7;
  max-width: 280px;
}

.footer-links h4,
.footer-social h4 {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  opacity: 0.7;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--gold);
}

.footer-social-icons {
  display: flex;
  gap: 1rem;
}

.footer-social-icons a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social-icons a:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.footer-social-icons svg {
  width: 18px;
  height: 18px;
  fill: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.875rem;
  opacity: 0.5;
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .hero-buttons {
    flex-wrap: nowrap;
  }
  
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
  
  .services {
    padding: 5rem 1.5rem;
  }
  
  .about,
  .gallery,
  .testimonials,
  .booking,
  .contact {
    padding: 5rem 1.5rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .navbar-links {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .opening-hours-card {
    grid-column: 1 / -1;
  }
  
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* Larger tablets (1050px and up) - Show social icons and phone button */
@media (min-width: 1050px) {
  .navbar-actions {
    display: flex;
  }
  
  .navbar-btn {
    display: inline-flex;
  }
}

/* Large devices (desktops, 1024px and up) */
@media (min-width: 1024px) {
  
  .about,
  .services,
  .gallery,
  .why-choose-us,
  .testimonials,
  .booking,
  .contact {
    padding: 6rem 1.5rem;
  }
}

/* Larger tablets and small desktops (900px and up) */
@media (min-width: 900px) {
  .navbar-container {
    padding: 0 1.5rem;
  }
  
  .navbar-logo {
    height: 60px;
  }
  
  .navbar-logo img {
    width: 200px;
  }
  
  .navbar.scrolled .navbar-logo {
    height: 50px;
  }
  
  .navbar.scrolled .navbar-logo img {
    width: 200px;
  }
  
  .navbar-links {
    gap: 2rem;
  }
  
  .navbar-btn {
    padding: 1rem 2rem;
    font-size: 0.875rem;
  }
}

/* Large devices (desktops, 1024px and up) */
@media (min-width: 1024px) {
  .navbar-links {
    gap: 2.5rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
  
  .about-image {
    height: 500px;
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .booking-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .contact-map {
    height: 100%;
    min-height: 400px;
  }
}

/* Extra large devices (large desktops, 1280px and up) */
@media (min-width: 1280px) {
  .container {
    padding: 0 2rem;
  }
}
