*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-size: 1rem;
  padding: 0;
  margin: 0;
  background-color: white;
  font-family: 'Noto Sans Display', sans-serif;
}

header {
  background-color: #b3d9ff;
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 100px;
  overflow: visible;
  box-shadow: 0 5px 0 0 #b3d9ff;
}

header::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,40 C200,100 300,0 500,40 C700,90 800,5 1000,40 L1000,0 L0,0 Z" fill="%23b3d9ff" stroke="none"/></svg>') repeat-x;
  background-size: 300px 100px;
  z-index: 5;
  filter: drop-shadow(0 9px 6px rgba(0, 0, 0, 0.35));
  clip-path: inset(0 -10px -10px -10px);
}

header > a:has(.logo) {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.logo {
    width: 33vw;
    max-width: 180px;
    height: auto;
    margin-bottom: -99px;
}
.header-icons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 25px;
  transform: translateY(25px);
  position: relative;
  z-index: 10;
}

.lang-active {
  color: #333;
}

.lang-divider {
  color: #999;
}

.lang-link {
  color: #666;
  text-decoration: none;
}

.lang-link:hover {
  color: #333;
  text-decoration: underline;
}

.header-phone-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    margin-top: 25px;
    transform: translateY(25px);
    z-index: 10;
    position: relative;
}

.header-phone-number {
    display: none;
}

.location-icon,
.phone-icon {
    width: 5vw;
    height: 5vw;
    max-width: 40px;
    max-height: 40px;
    object-fit: contain;
}

.location-icon {
    margin-top: 25px;
    transform: translateY(25px);
    z-index: 10;
    position: relative;
}

.hamburger-menu {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1000;
  position: relative;
  margin-top: 25px;
  transform: translateY(25px);
}

.hamburger-menu span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100vh;
  background-color: #b3d9ff;
  transition: left 0.3s ease;
  z-index: 999;
  padding-top: 80px;
}

.mobile-nav.active {
  left: 0;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-nav a {
  display: block;
  padding: 1.2rem 2rem;
  color: #333;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background-color 0.2s ease;
}

.mobile-nav a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.mobile-nav-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  margin-top: 2rem;
}

.mobile-nav-social h3 {
  text-align: center;
  margin: 0 0 1rem 0;
  color: #333;
}

.mobile-social-icons-row {
  display: flex;
  justify-content: center;
  gap: 0;
}

.mobile-social-icons-row a {
  padding: 0;
  display: inline-block;
}

.mobile-social-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Desktop Navigation */
.desktop-nav {
  display: none;
}

.desktop-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.desktop-nav a {
  text-decoration: none;
  color: #333;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4rem 0;
  position: relative;
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: #1a7ad9;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #1a7ad9;
  transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.hero-gallery {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: 35vh;
  overflow: hidden;
  margin-top: -70px;
  padding-top: 100px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide:first-child img {
  object-position: center 25%;
}

.about-section {
  text-align: center;
  padding: 0 1rem;
}

.about-section h2 {
  font-size: 1rem;
  margin-left: 1rem;
  margin-right: 1rem;
  color: #333333
}


.services-section {
  padding: 2rem 1rem;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.service-box {
  background-color: #bfddfc;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.service-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-box img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.service-box p {
  margin: 0;
  font-weight: bold;
  font-size: 0.95rem;
  color: black;
}

.app-download-section {
  text-align: center;
  padding: 1rem 1rem 2rem;
}

.app-download-section h1 {
  margin-bottom: 0.5rem;
}

.app-download-section p {
  color: #555;
  max-width: 500px;
  margin: 0 auto 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.app-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.app-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #333;
  color: white;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.app-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.25);
}

.app-badge:active {
  transform: translateY(0);
}

.app-badge svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.app-badge div {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.app-badge-small {
  font-size: 0.55rem;
  line-height: 1;
}

.app-badge-large {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.2;
}

.review-section {
  text-align: center;
}

.review-section button {
  color: #333333;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 2rem;
  background-color: #b3d9ff;
  padding: .75rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-section button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.review-section button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2rem;
  background-color: #b3d9ff;
  position: relative;
  padding: 0 1rem 1rem 1rem;
  margin-top: 100px;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 -5px 0 0 #b3d9ff;
}

footer::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,60 C200,0 300,100 500,60 C700,10 800,95 1000,60 L1000,100 L0,100 Z" fill="%23b3d9ff" stroke="none"/></svg>') repeat-x;
  background-size: 500px 100px;
  z-index: 5;
  filter: drop-shadow(0 -3px 5px rgba(0, 0, 0, 0.15));
  clip-path: inset(-10px -10px 0 -10px);
}

.footer-logo {
  width: clamp(130px, 25vw, 200px);
  height: auto;
}

.footer-logo-link {
  justify-self: center;
  align-self: end;
}

footer li {
  list-style: none;
}

.footer-menu {
  text-align: left;
  justify-self: start;
  align-self: start;
  padding-left: 1rem;
}

footer h3 {
  font-size: 1rem;
}

.footer-menu h3 {
  margin-top: 0;
  text-align: left;

}

.footer-menu ul {
  padding: 0;
  margin: 0;
}

.footer-menu a {
  text-decoration: none;
  color: #333;
  font-size: 0.75rem;
}


.follow-us {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  align-self: start;
}

.follow-us h3 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.follow-us .social-icons {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.facebook-img,
.instagram-img,
.tiktok-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.store-info {
  text-align: left;
  justify-self: start;
  align-self: center;
  padding-left: 1rem;
}

.store-info h3 {
  text-align: left;
  margin-top: 0;
}

.store-info div {
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.3rem;
}

.store-info a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  color: #333;
  font-size: 0.75rem;
}

.store-info .footer-hours {
  font-size: 0.75rem;
  color: #333;
}

.location-icon-footer,
.phone-icon-footer,
.clock-icon-footer {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
}

.copyright {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.75rem;
  color: #333;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 1rem;
}


/* ===========================
   ABOUT PAGE SPECIFIC
   =========================== */

body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 100vh;
}

main {
  width: 100%;
  flex: 1;
  padding-top: 2rem;
}

main:has(.hero-gallery) {
  padding-top: 0;
}

/* Hero Section */
.about-hero {
  text-align: center;
  padding: 1rem;
  margin-top: 1rem;
}

.about-hero-content h1 {
  font-size: 1.8rem;
  margin-bottom: 0.25rem;
  color: #333;
}

.about-tagline {
  color: #666;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.about-hero-img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Story Section */
.about-story {
  background-color: #f8fbff;
  padding: 2rem 1.5rem;
  margin: 2rem 0;
  border-radius: 0;
  width: 100%;
}

.about-story h2 {
  text-align: center;
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.about-story p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about-story p:last-child {
  margin-bottom: 0;
}

/* Features Section */
.about-features {
  padding: 1.5rem 1rem;
  text-align: center;
}

.about-features h2 {
  color: #333;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.about-feature-card {
  background: linear-gradient(135deg, #e8f4ff 0%, #f8fbff 100%);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.about-feature-card img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 0.75rem;
}

.about-feature-card h3 {
  font-size: 0.95rem;
  color: #333;
  margin: 0 0 0.5rem 0;
}

.about-feature-card p {
  font-size: 0.8rem;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

/* Amenities Section */
.about-amenities {
  background-color: #b3d9ff;
  padding: 2rem 1rem;
  width: 100%;
  margin: 1.5rem 0;
}

.about-amenities h2 {
  text-align: center;
  color: #333;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.amenities-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  padding: 1rem;
  border-radius: 10px;
  width: calc(50% - 0.5rem);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.amenity-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.amenity-item span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  text-align: center;
}

/* CTA Section */
.about-cta {
  text-align: center;
  padding: 2rem 1.5rem;
}

.about-cta h2 {
  color: #333;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.about-cta > p {
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.about-visit-button {
  display: inline-block;
  text-decoration: none;
}

.about-visit-button button {
  color: #333333;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.25rem;
  background-color: #b3d9ff;
  padding: .75rem 2rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.about-visit-button button:hover {
  background-color: #9fcfff;
  transform: scale(1.02);
}

/* ===========================
   LOCATION PAGE SPECIFIC
   =========================== */

.location-page-content {
  text-align: center;
  padding: 0 1rem;
  margin-top: 1rem;
}

.location-page-content h1 {
  margin-bottom: 0.5rem;
}

.location-page-content p {
  color: #333;
  margin-bottom: 1rem;
}

.map-container {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  display: block;
}

.directions-button {
  display: block;
  text-align: center;
  margin: 2rem 0;
}

.directions-button button {
  color: #333333;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.5rem;
  background-color: #b3d9ff;
  padding: .75rem 1.5rem;
}

/* ===========================
   FAQ PAGE SPECIFIC
   =========================== */

.faq-page-content {
  text-align: center;
  padding: 0 1rem;
  margin-top: 1rem;
}

.faq-page-content h1 {
  margin-bottom: 1.5rem;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 0.5rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  padding: 1rem;
  background-color: #b3d9ff;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Noto Sans Display', sans-serif;
  transition: background-color 0.2s ease;
}

.faq-question:hover {
  background-color: #9fcfff;
}

.faq-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  margin-left: 1rem;
  flex-shrink: 0;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: #fff;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1rem;
}

.faq-answer p {
  margin: 0;
  color: #333;
  line-height: 1.6;
  text-align: left;
}

/* ===========================
   SERVICES PAGE SPECIFIC
   =========================== */

.services-page-content {
  text-align: center;
  padding: 0 1rem;
  margin-top: 1rem;
}

.services-page-content h1 {
  margin-bottom: 0.5rem;
}

.services-intro {
  color: #666;
  margin-bottom: 2rem;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.service-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: #f8fbff;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: left;
  border-left: 4px solid #b3d9ff;
}

.service-card-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background-color: #b3d9ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.service-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card-details {
  flex: 1;
}

.service-card-details h2 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  color: #333;
}

.service-card-details ul {
  margin: 0;
  padding-left: 1.2rem;
  list-style-type: disc;
}

.service-card-details li {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0.25rem;
}

.service-card-details li:last-child {
  margin-bottom: 0;
}

/* ===========================
   GALLERY PAGE SPECIFIC
   =========================== */

.gallery-page-content {
  text-align: center;
  padding: 0 1rem;
  margin-top: 1rem;
}

.gallery-page-content h1 {
  margin-bottom: 0.5rem;
}

.gallery-intro {
  color: #666;
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  max-width: 800px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  aspect-ratio: 1 / 1;
}

.gallery-item.large {
  grid-column: span 2;
  aspect-ratio: 3 / 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 2rem 1rem 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: white;
  font-weight: 600;
  font-size: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* ===========================
   PROMOTIONS PAGE SPECIFIC
   =========================== */

.promotions-page-content {
  text-align: center;
  padding: 0 1rem;
  margin-top: 1rem;
}

.promotions-page-content h1 {
  margin-bottom: 0.5rem;
}

.promotions-intro {
  color: #666;
  margin-bottom: 2rem;
}

.promo-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.promo-card {
  background-color: #f8fbff;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: left;
  border-left: 4px solid #b3d9ff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.promo-card h2 {
  margin: 0 0 0.5rem 0;
  font-size: 1.15rem;
  color: #333;
}

.promo-card p {
  color: #444;
  line-height: 1.6;
  margin: 0 0 0.75rem 0;
  font-size: 0.95rem;
}

.promo-valid {
  display: inline-block;
  font-size: 0.8rem;
  color: #666;
  font-style: italic;
}

/* ===========================
   PRIVACY POLICY PAGE SPECIFIC
   =========================== */

.privacy-policy-content {
  padding: 0 1rem;
  margin-top: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.privacy-policy-content h1 {
  text-align: center;
  margin-bottom: 0.25rem;
}

.policy-updated {
  text-align: center;
  color: #666;
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

.policy-section {
  margin-bottom: 1.75rem;
}

.policy-section h2 {
  font-size: 1.15rem;
  color: #333;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid #b3d9ff;
  padding-bottom: 0.35rem;
}

.policy-section p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.policy-section ul {
  padding-left: 1.5rem;
  margin: 0.5rem 0;
}

.policy-section li {
  color: #444;
  line-height: 1.7;
  margin-bottom: 0.25rem;
}

.policy-section a {
  color: #1a7ad9;
  text-decoration: none;
}

.policy-section a:hover {
  text-decoration: underline;
}

.privacy-link {
  display: block;
  margin-top: 0.5rem;
  color: #555;
  text-decoration: none;
  font-size: 0.7rem;
}

.privacy-link:hover {
  text-decoration: underline;
  color: #333;
}

/* ===========================
   CONTACT PAGE SPECIFIC
   =========================== */

.contact-page-content {
  text-align: center;
  padding: 0 1rem;
  margin-top: 1rem;
}

.contact-page-content h1 {
  margin-bottom: 0.5rem;
}

.contact-intro {
  color: #666;
  margin-bottom: 2rem;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.contact-info-card {
  background-color: #f8fbff;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.contact-card-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.contact-info-card h3 {
  margin: 0;
  font-size: 1rem;
  color: #333;
}

.contact-info-card p {
  margin: 0;
  font-size: 0.85rem;
  color: #555;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: #333;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Noto Sans Display', sans-serif;
  background-color: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #b3d9ff;
  box-shadow: 0 0 0 3px rgba(179, 217, 255, 0.3);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit-btn {
  width: 100%;
  padding: 0.85rem;
  background-color: #b3d9ff;
  color: #333;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Noto Sans Display', sans-serif;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  margin-bottom: 2rem;
}

.contact-submit-btn:hover {
  background-color: #9fcfff;
  transform: scale(1.02);
}

/* ===========================
   RESPONSIVE MEDIA QUERIES
   =========================== */

/* Small mobile devices (up to 480px) */
@media (max-width: 480px) {
  footer {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }

  .store-info,
  .footer-menu,
  .follow-us,
  .footer-logo-link {
    justify-self: center;
    text-align: center;
  }

  .store-info {
    padding-left: 0;
  }

  .store-info h3,
  .footer-menu h3 {
    text-align: center;
  }

  .store-info div {
    justify-content: center;
  }

  .footer-menu {
    padding-left: 0;
  }

  .footer-menu ul {
    text-align: center;
  }

  .footer-logo-link {
    order: -1;
  }
}

/* Medium screens (481px to 767px) */
@media (min-width: 481px) and (max-width: 767px) {
  footer {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .store-info {
    grid-column: 1;
    grid-row: 1;
  }

  .footer-logo-link {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }

  .footer-menu {
    grid-column: 1;
    grid-row: 2;
  }

  .follow-us {
    grid-column: 2;
    grid-row: 2;
  }

  .copyright {
    grid-column: 1 / -1;
    grid-row: 3;
  }
}

/* Tablet and larger screens (768px and up) */
@media (min-width: 768px) {
  header {
    padding-top: 1.5rem;
    padding-bottom: 0.75rem;
  }

  header > a:has(.logo) {
    top: 12px;
  }

  .logo {
    margin-top: 0;
    margin-bottom: -80px;
  }

  /* Show desktop nav, hide mobile nav */
  .desktop-nav {
    display: flex;
    align-items: center;
    margin-top: 25px;
    transform: translateY(25px);
    position: relative;
    z-index: 10;
  }

  .hamburger-menu {
    display: none;
  }

  .mobile-nav {
    display: none;
  }

  /* Header phone number */
  .header-phone-number {
    display: inline;
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 0.4rem;
  }

  .header-phone-link:hover {
    color: #1a7ad9;
  }

  .phone-icon {
    width: 20px;
    height: 20px;
    max-width: 20px;
    max-height: 20px;
  }

  .location-icon {
    width: 20px;
    height: 20px;
    max-width: 20px;
    max-height: 20px;
  }

  /* Base layout */
  body {
    font-size: 1.05rem;
  }

  main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 0;
  }

  main:has(.hero-gallery) {
    padding-top: 0;
  }

  /* Homepage */
  .hero-gallery {
    height: 45vh;
  }

  .about-section {
    max-width: 900px;
    margin: 0 auto;
  }

  .about-section h2 {
    font-size: 1.1rem;
  }

  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .service-box img {
    width: 100px;
    height: 100px;
  }

  /* About page */
  .about-hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    text-align: left;
    padding: 2rem;
  }

  .about-hero-content {
    flex: 1;
  }

  .about-hero-img {
    max-width: 400px;
    flex-shrink: 0;
  }

  .about-features-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 900px;
  }

  .about-feature-card img {
    width: 60px;
    height: 60px;
  }

  .about-story {
    padding: 3rem 2rem;
  }

  .about-story p {
    max-width: 800px;
  }

  .amenities-list {
    max-width: 700px;
  }

  .amenity-item {
    width: calc(25% - 0.75rem);
  }

  /* Services page */
  .services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  /* Gallery page */
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .gallery-item.large {
    grid-column: span 3;
  }

  /* FAQ page */
  .faq-question {
    font-size: 1.05rem;
    padding: 1.15rem 1.25rem;
  }

  /* Contact page */
  .contact-info-cards {
    flex-direction: row;
    max-width: 800px;
  }

  .contact-info-card {
    flex: 1;
  }

  /* Reviews page */
  .reviews-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  /* Footer */
  footer {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto auto;
    padding: 2rem 3rem;
    gap: 0.5rem 2rem;
    align-items: start;
    justify-items: center;
  }

  .store-info {
    grid-column: 1;
    grid-row: 1;
    text-align: center;
    justify-self: center;
    padding-left: 0;
  }

  .store-info div {
    justify-content: center;
  }

  .store-info h3 {
    text-align: center;
  }

  .footer-menu {
    grid-column: 2;
    grid-row: 1;
    text-align: center;
    padding-left: 0;
    justify-self: center;
  }

  .footer-logo-link {
    grid-column: 3;
    grid-row: 1;
    justify-self: center;
    align-self: start;
  }

  .follow-us {
    grid-column: 3;
    grid-row: 2;
    margin-top: -5rem;
  }

  .copyright {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .footer-logo {
    width: 100px;
  }

  .footer-menu a,
  .store-info a,
  .store-info .footer-hours {
    font-size: 0.85rem;
  }

  footer h3 {
    font-size: 1.1rem;
  }
}

/* Desktop screens (1024px and up) */
@media (min-width: 1024px) {
  header {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 2rem;
    padding-bottom: 1rem;
  }

  body {
    font-size: 1.1rem;
  }

  main {
    padding: 3.5rem 3rem 0;
  }

  main:has(.hero-gallery) {
    padding-top: 0;
  }

  header > a:has(.logo) {
    top: 15px;
  }

  .logo {
    max-width: 220px;
    margin-bottom: -100px;
  }

  .desktop-nav a {
    font-size: 1rem;
  }

  .desktop-nav ul {
    gap: 2rem;
  }

  .header-phone-number {
    font-size: 1rem;
  }

  .phone-icon {
    width: 22px;
    height: 22px;
    max-width: 22px;
    max-height: 22px;
  }

  .location-icon {
    width: 22px;
    height: 22px;
    max-width: 22px;
    max-height: 22px;
  }

  /* Homepage */
  .hero-gallery {
    height: 65vh;
  }

  .about-section h2 {
    font-size: 1.15rem;
  }

  /* About page */
  .about-hero {
    padding: 2rem 3rem;
    gap: 3rem;
  }

  .about-hero-content h1 {
    font-size: 2.2rem;
  }

  .about-hero-img {
    max-width: 450px;
  }

  .about-features-grid {
    max-width: 1000px;
    gap: 1.5rem;
  }

  .about-feature-card img {
    width: 70px;
    height: 70px;
  }

  .about-feature-card h3 {
    font-size: 1.05rem;
  }

  .about-feature-card p {
    font-size: 0.9rem;
  }

  .about-cta h2 {
    font-size: 1.5rem;
  }

  /* FAQ page */
  .faq-question {
    font-size: 1.1rem;
    padding: 1.25rem 1.5rem;
  }

  .faq-answer p {
    font-size: 1rem;
  }

  /* Gallery page */
  .gallery-grid {
    gap: 1.25rem;
  }

  /* Services page */
  .service-card {
    padding: 1.5rem;
  }

  .service-card-icon {
    width: 80px;
    height: 80px;
  }

  .service-card-details h2 {
    font-size: 1.2rem;
  }

  .service-card-details li {
    font-size: 0.95rem;
  }

  /* Footer */
  footer {
    padding: 2rem 4rem;
    gap: 2rem;
  }

  .footer-logo {
    width: 180px;
  }

  .footer-menu a,
  .store-info a,
  .store-info .footer-hours {
    font-size: 0.9rem;
  }

  footer h3 {
    font-size: 1.2rem;
  }

  .facebook-img,
  .instagram-img,
  .tiktok-img {
    width: 45px;
    height: 45px;
  }
}