/* Global Styles */
:root {
  --primary: #5c3d2e;
  --secondary: #b85c38;
  --accent: #e0c097;
  --light: #f7f3e9;
  --dark: #222;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.btn {
  display: inline-block;
  background-color: var(--secondary);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
header {
  background-color: var(--primary);
  color: white;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  display: flex;
  align-items: center;
}

.logo p {
  margin: 0;
}

.logo img {
  height: 50px;
}

.logo a {
  color: white;
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.mobile-menu {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white; /* Make mobile menu icon visible */
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  padding-top: 80px; /* Adjust for fixed header */
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Third Wave Info Section */
.third-wave-info {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--light) 0%, white 100%);
}

.third-wave-content h2 {
  font-size: 2.5rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 3rem;
}

.third-wave-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.third-wave-text {
  padding: 2rem;
}

.third-wave-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--dark);
  margin-bottom: 2.5rem;
}

.third-wave-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 5px 15px rgba(184, 92, 56, 0.3);
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.feature-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

.third-wave-visual {
  padding: 2rem;
}

.coffee-process {
  background: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(92, 61, 46, 0.1);
}

.process-step {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 50px;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

.step-number {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.process-step h5 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.process-step p {
  color: #666;
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* About Section */
.about {
  padding: 6rem 0;
  background-color: white;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.5rem;
  color: var(--primary);
}

.about-text p {
  font-size: 1.1rem;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Menu Section */
.menu {
  padding: 6rem 0;
  background-color: var(--light);
}

.menu h2 {
  font-size: 2.5rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 3rem;
}

.menu-categories {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap; /* Allow categories to wrap on smaller screens */
  gap: 1rem; /* Add gap for wrapped items */
}

.menu-category {
  margin: 0 0.5rem; /* Adjust margin for potential wrapping */
  padding: 0.5rem 1.5rem;
  background-color: white;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  border: 1px solid var(--accent); /* Add subtle border */
}

.menu-category.active {
  background-color: var(--secondary);
  color: white;
  border-color: var(--secondary);
}

.menu-category:hover {
  background-color: var(--accent);
  color: var(--dark);
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.menu-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex; /* Use flexbox for better structure */
  flex-direction: column; /* Stack image and content */
}

.menu-item:hover {
  transform: translateY(-10px);
}

.menu-item-image {
  height: 250px;
  overflow: hidden;
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-item-content {
  padding: 1.5rem;
  flex-grow: 1; /* Allow content to fill remaining space */
  display: flex; /* Use flexbox for alignment */
  flex-direction: column; /* Stack header and description */
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.menu-item-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0; /* Remove default heading margin */
}

.menu-item-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary);
}

.menu-item-description {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0.5rem; /* Add margin to separate from details */
}

.menu-item-details {
  color: #888;
  font-size: 0.85rem;
  line-height: 1.4;
  font-style: italic;
}

/* Hours Section */
.hours {
  padding: 6rem 0;
  background-color: white;
  text-align: center;
}

.hours h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 2rem;
}

.hours-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 2.5rem; /* Increase padding slightly */
  background-color: var(--accent);
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.hours-list {
  list-style: none;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  padding: 0; /* Remove default list padding */
}

.hours-list li {
  margin-bottom: 0.75rem; /* Increase spacing */
  display: flex;
  justify-content: space-between;
  padding: 0 1rem; /* Adjust padding */
  border-bottom: 1px dashed rgba(92, 61, 46, 0.2); /* Add subtle separator */
  padding-bottom: 0.75rem;
}

.hours-list li:last-child {
  border-bottom: none; /* Remove border from last item */
  margin-bottom: 0;
  padding-bottom: 0;
}

.day {
  font-weight: 600;
  color: var(--primary); /* Make day stand out */
}

.time {
  color: var(--dark); /* Ensure time is clearly visible */
}

.location {
  margin-top: 2rem;
  font-size: 1.1rem;
  color: var(--primary);
}

.location p {
  margin-bottom: 1rem; /* Reduce margin below address */
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--light) 0%, #fff 100%);
}

.contact h2 {
  font-size: 2.5rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.contact h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--secondary);
  border-radius: 2px;
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(92, 61, 46, 0.1);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 5px 15px rgba(184, 92, 56, 0.3);
}

.contact-card h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-card p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.contact-card a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

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

.contact-card.hours {
  grid-column: span 2;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.hours-item {
  background: var(--light);
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid var(--secondary);
}

.hours-item strong {
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
}

/* Map Section */
.map {
  height: 450px; /* Increased height */
  background-color: #eee; /* Fallback background */
  border-top: 5px solid var(--primary); /* Add top border */
  border-bottom: 5px solid var(--primary); /* Add bottom border */
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer Section */
footer {
  background-color: var(--primary);
  color: white;
  padding: 4rem 0 1.5rem; /* Adjust padding */
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.5rem; /* Increased gap */
  margin-bottom: 3rem; /* Increased margin */
}

.footer-section {
  flex: 1;
  min-width: 220px; /* Adjust min-width */
}

.footer-section h3 {
  font-size: 1.3rem; /* Slightly larger footer heading */
  margin-bottom: 1.5rem;
  color: var(--accent);
  font-family: "Playfair Display", serif; /* Use display font */
}

.footer-section p {
  font-size: 0.9rem;
  color: var(--light);
  line-height: 1.5;
  margin-bottom: 1rem; /* Add margin if needed */
}

.footer-links {
  list-style: none;
  padding: 0; /* Remove default padding */
}

.footer-links li {
  margin-bottom: 0.7rem; /* Increase spacing */
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease; /* Add padding transition */
  font-size: 0.95rem; /* Slightly larger link text */
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px; /* Indent on hover */
}

.social-icons {
  display: flex;
  gap: 1.2rem; /* Increased gap */
}

.social-icons a {
  color: white;
  font-size: 1.6rem; /* Larger icons */
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: var(--accent);
  transform: scale(1.1); /* Scale icon on hover */
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2); /* Lighter border */
  font-size: 0.9rem;
  color: var(--light); /* Lighter text */
}

/* Newsletter Section (now Facebook CTA) */
.newsletter {
  background-color: var(--secondary);
  padding: 4rem 0;
  color: white;
  text-align: center;
}

.newsletter h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
}

.newsletter p {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.newsletter .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #1877f2; /* Facebook blue */
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.newsletter .btn:hover {
  background-color: #166fe5; /* Darker Facebook blue */
  transform: translateY(-3px);
}

.newsletter .btn i {
  font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 0;
  background-color: white;
  overflow: hidden;
}

.testimonials h2 {
  font-size: 2.5rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-content {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--light);
  justify-content: center;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.testimonial {
  background-color: var(--light);
  padding: 2.5rem;
  border-radius: 10px;
  min-width: 320px;
  max-width: 400px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
  border-left: 5px solid var(--secondary);
  scroll-snap-align: start;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--dark);
  line-height: 1.7;
}
.testimonial-text::before {
  content: '"';
  font-size: 1.5em;
  color: var(--secondary);
  margin-right: 0.2em;
  vertical-align: -0.2em;
}
.testimonial-text::after {
  content: '"';
  font-size: 1.5em;
  color: var(--secondary);
  margin-left: 0.2em;
  vertical-align: -0.2em;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.author-info h4 {
  margin-bottom: 0.2rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  color: var(--primary);
}

.author-info p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0;
}

/* Call to Action Section */
.cta {
  padding: 6rem 0;
  background-image: linear-gradient(rgba(92, 61, 46, 0.8), rgba(92, 61, 46, 0.8)),
    url("public/images/victor/drive-thru.JPG");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  text-align: center;
}

.cta h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.cta p {
  max-width: 650px;
  margin: 0 auto 2.5rem;
  font-size: 1.2rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid white;
}

.btn-secondary:hover {
  background-color: white;
  color: var(--primary);
  border-color: white;
}

/* Gallery Section */
.gallery {
  padding: 6rem 0;
  background-color: var(--light);
}

.gallery h2 {
  font-size: 2.5rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  height: 280px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

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

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

.gallery-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.4));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover::after {
  opacity: 1;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .third-wave-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .third-wave-visual {
    order: -1;
  }

  .about-content {
    flex-direction: column;
    gap: 2.5rem;
  }

  .about-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .footer-content {
    justify-content: flex-start;
  }
  .footer-section {
    min-width: 45%;
  }

  .contact {
    padding: 5rem 0;
  }

  .contact-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .contact-card {
    padding: 1.8rem;
  }

  .contact-card.hours {
    grid-column: span 2;
  }

  .testimonials-content {
    justify-content: flex-start;
    padding: 1rem;
  }

  .testimonial {
    min-width: 300px;
  }

  .contact {
    padding: 4rem 0;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .contact-card {
    padding: 1.5rem;
  }

  .contact-card.hours {
    grid-column: span 1;
  }

  .hours-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .hours-item {
    padding: 0.8rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.8rem;
  }
  h2 {
    font-size: 2rem;
  }

  .third-wave-info {
    padding: 4rem 0;
  }

  .third-wave-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .third-wave-text {
    padding: 1rem;
  }

  .third-wave-text p {
    font-size: 1.1rem;
  }

  .third-wave-features {
    gap: 1.5rem;
  }

  .feature {
    gap: 1rem;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .feature-content h4 {
    font-size: 1.2rem;
  }

  .third-wave-visual {
    padding: 1rem;
  }

  .coffee-process {
    padding: 2rem 1.5rem;
  }

  .process-step {
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .process-step:not(:last-child)::after {
    left: 17px;
    height: 30px;
  }

  .step-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .header-container {
    padding: 0 1rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin-left: 0;
    text-align: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-links li:last-child {
    border-bottom: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    height: 100vh;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .hero h1 {
    font-size: 2.2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .menu-categories {
    gap: 0.8rem;
    justify-content: center;
  }
  .menu-category {
    margin: 0 0.3rem;
  }

  .menu-items {
    grid-template-columns: 1fr;
  }

  .testimonials {
    padding: 4rem 0;
  }

  .testimonials h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .testimonials-content {
    flex-direction: column;
    overflow-x: visible;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .testimonial {
    min-width: auto;
    max-width: none;
    width: 100%;
    padding: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .cta .btn {
    width: 80%;
    max-width: 300px;
  }

  .hours-content {
    padding: 1.5rem;
  }
  .hours-list li {
    padding: 0;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
  }

  .footer-section {
    min-width: 100%;
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }

  .newsletter .btn {
    width: 80%;
    max-width: 300px;
  }

  .gallery-images {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }
  .gallery-item {
    height: 200px;
  }

  .contact-card.hours {
    grid-column: span 1;
  }

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

  .contact h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .contact-card h3 {
    font-size: 1.2rem;
  }
}

/* Extra small screens (phones smaller than 480px) */
@media (max-width: 480px) {
  .hero {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .hero h1 {
    font-size: 1.8rem;
    margin-top: 0.5rem;
    margin-bottom: 0.8rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    line-height: 1.5;
  }

  .hero-content {
    padding: 0 1.5rem;
  }

  .container {
    padding: 0 0.8rem;
  }
}

/* Very small screens (phones smaller than 360px) */
@media (max-width: 360px) {
  .hero {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero h1 {
    font-size: 1.5rem;
    margin-top: 0.3rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
  }

  .hero p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.4;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.8rem;
  }
}
