/* Grand Nail Spa CSS*/
:root {
  --main-gold: #F2C67E;
  --main-gold-dark: #d1a95e;
  --creamy: #f9f6f2;
  --beige: #f5e9da;
  --dark-earthy: #c2a962;
  --pastel-gray: #eae7e1;
  --text-dark: #3a2c1a;
  --text-light: #fff;
  --shadow: 0 4px 24px rgba(242, 198, 126, 0.08);
  --golden-gradient: linear-gradient(135deg, #edd2a7 0%, #b29655 100%);
}

html {
  box-sizing: border-box;
  font-size: 18px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--creamy);
  color: var(--text-dark);
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

header {
  background: var(--beige);
  box-shadow: var(--shadow);
  padding: 1.5rem 0 1rem 0;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.site-logo {
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(242, 198, 126, 0.15);
  background: var(--creamy);
  padding: 0.25rem;
}
.site-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--main-gold-dark);
  letter-spacing: 2px;
  margin: 0;
}

main {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem 0 1rem;
}

/* Intro Section */
#intro .intro-bg {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--golden-gradient);
  border-radius: 1.5rem;
  overflow: hidden;
  min-height: 340px;
  box-shadow: var(--shadow);
}
#intro .intro-image {
  width: 50%;
  height: 100%;
  object-fit: cover;
  /* filter: blur(2px) brightness(0.85); */
  /* opacity: 0.7; */
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}
#intro .intro-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem 2rem;
  max-width: 50%;
}

#intro h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

#intro p {
  font-size: 1.15rem;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: 0 2px 12px rgba(242, 198, 126, 0.08);
}

/* Why Choose Section */
.why-choose-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  background: var(--beige);
  border-radius: 1.5rem;
  margin-top: 2.5rem;
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
}

.why-choose-content {
  flex: 2 1 320px;
  min-width: 220px;
}

.why-choose-image-wrapper {
  flex: 1 1 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 160px;
  flex-shrink: 0;
}

.why-choose-image {
  max-width: 280px;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(242, 198, 126, 0.12);
  background: var(--creamy);
  object-fit: cover;
}

#why-choose h2 {
  font-family: 'Playfair Display', serif;
  color: var(--main-gold-dark);
  margin-bottom: 1.2rem;
}
.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.services-list li {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  background: var(--creamy);
  border-left: 4px solid var(--main-gold);
  padding: 1rem 1.2rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 4px rgba(242, 198, 126, 0.04);
}

/* Appointment Section */
#appointment .appointment-container {
  background: var(--golden-gradient);
  color: var(--text-dark);
  border-radius: 1.2rem;
  margin: 2.5rem 0 0 0;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}
#appointment h2 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  margin-bottom: 0.7rem;
}
.appointment-phone {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 1.2rem;
  color: var(--text-dark);
  background: var(--creamy);
  padding: 0.7rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 1px 6px rgba(242, 198, 126, 0.10);
  transition: background 0.2s;
}
.appointment-phone:hover,
.appointment-phone:focus {
  background: var(--main-gold-dark);
  color: var(--text-light);
}

/* Service Menu Section */
#service-menu .service-menu-container {
  background: var(--pastel-gray);
  border-radius: 1.2rem;
  margin: 2.5rem 0 0 0;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
}
#service-menu h2 {
  font-family: 'Playfair Display', serif;
  color: var(--main-gold-dark);
  margin-bottom: 1rem;
}
.pdf-viewer-wrapper {
  margin-bottom: 1rem;
  border-radius: 0.7rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(242, 198, 126, 0.08);
}
.pdf-download a {
  color: var(--main-gold-dark);
  text-decoration: underline;
  font-weight: 600;
}

/* Review Section */
#review .review-container {
  /* background: var(--beige); */
  border-radius: 1.2rem;
  margin: 2.5rem 0 0 0;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.customer-review {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin: 0 auto;
  max-width: 600px;
  background: rgba(255,255,255,0.7);
  border-radius: 0.7rem;
  border-left: 4px solid var(--main-gold);
  border-right: 4px solid var(--main-gold);
  padding: 1.5rem 1rem 1rem 1rem;
  box-shadow: 0 1px 6px rgba(242, 198, 126, 0.07);
}
.customer-review footer {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--main-gold-dark);
  border-radius: 0.7rem;
}
.reviewer-name, .reviewer-location {
  font-weight: 700;
  color: var(--text-light);
}

/* Contact Section */
#contact .contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  background: var(--beige);
  border-radius: 1.2rem;
  margin: 2.5rem 0 0 0;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
}
.cta-block {
  flex: 1 1 320px;
  text-align: left;
}
.cta-block h2 {
  font-family: 'Playfair Display', serif;
  color: var(--main-gold-dark);
  margin-bottom: 0.7rem;
}
.cta-note {
  font-size: 1rem;
  color: var(--text-dark);
  margin-top: 1rem;
  background: rgba(255,255,255,0.6);
  border-radius: 0.5rem;
  padding: 0.7rem 1rem;
}
.contact-details {
  flex: 2 1 320px;
}
.contact-details h3 {
  color: var(--main-gold-dark);
  margin-bottom: 0.3rem;
  font-family: 'Playfair Display', serif;
}
.contact-details address {
  font-style: normal;
  margin-bottom: 1rem;
}
.location-note {
  font-size: 0.95rem;
  color: var(--text-dark);
  opacity: 0.7;
}
.opening-hours, .contact-info {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}
.opening-hours li, .contact-info li {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}
.contact-info a {
  color: var(--main-gold-dark);
  text-decoration: underline;
}

/* Footer */
footer {
  background: var(--main-gold-dark);
  color: var(--text-light);
  padding: 1.2rem 0;
  margin-top: 3rem;
  text-align: center;
}
.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.footer-logo {
  border-radius: 50%;
  background: var(--beige);
  box-shadow: 0 1px 4px rgba(242, 198, 126, 0.2);
  margin-bottom: 0.2rem;
}
.footer-motto {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}
.footer-copyright {
  font-size: 0.95rem;
  color: var(--text-light);
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 900px) {
  main {
    padding: 1rem 0.5rem 0 0.5rem;
  }
  #intro .intro-content, #intro .intro-image {
    max-width: 100%;
    width: 100%;
  }
  #intro .intro-bg {
    flex-direction: column;
    min-height: 260px;
  }
  
  #intro .intro-image {
  filter: blur(2px) brightness(0.85);
  opacity: 0.7;
  }
  
  #intro h1 {
  color: var(--main-gold);
    }

}
@media (max-width: 600px) {
  .site-title {
    font-size: 1.3rem;
  }
  #intro .intro-content {
    padding: 1.2rem 0.7rem;
    font-size: 1rem;
  }
  
  #why-choose .why-choose-content, .why-choose-image-wrapper {
    max-width: 100%;
  }
  .why-choose-image {
    max-width: 120px;
  }
  .footer-logo {
    width: 28px;
    height: 28px;
  }
}

/* Accessibility Focus Styles */
a:focus, button:focus, input:focus, [tabindex]:focus {
  outline: 2px solid var(--main-gold-dark);
  outline-offset: 2px;
}

/* --- Service Page Styles --- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--beige);
  box-shadow: 0 2px 8px rgba(242, 198, 126, 0.08);
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem 0;
  transition: background 0.3s;
}
.navbar a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--main-gold-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.navbar a:hover, .navbar a:focus {
  background: var(--main-gold);
  color: var(--text-dark);
  box-shadow: 0 2px 8px rgba(242, 198, 126, 0.15);
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  margin-top: 2.5rem;
}
.service-card {
  background: var(--beige);
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px rgba(242, 198, 126, 0.10);
  width: 340px;
  max-width: 98vw;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, background 0.3s;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}
.service-card .service-img {
  width: 100%;
  height: 180px;
  background: var(--pastel-pink);
  border-radius: 0.7rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 8px rgba(242, 198, 126, 0.10);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, filter 0.3s;
}
.service-card .service-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(242,198,126,0.12) 0%, rgba(255,255,255,0.18) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.service-card:hover .service-img::after,
.service-card:focus-within .service-img::after {
  opacity: 1;
}
.service-card .service-img img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  opacity: 0.5;
  filter: grayscale(1);
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--main-gold-dark);
  font-size: 1.3rem;
  margin: 0 0 0.7rem 0;
  text-align: center;
}
.service-card ul, .service-card p {
  color: var(--text-dark);
  font-size: 1.05rem;
  margin: 0 0 0.7rem 0;
  padding: 0;
  list-style: none;
  text-align: left;
}
.service-card .service-price {
  color: var(--main-gold-dark);
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 0.5rem;
  text-align: center;
}
@media (max-width: 900px) {
  .service-list {
    gap: 1.2rem;
  }
  .service-card {
    width: 98vw;
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
}

/* --- Service Page Alternating Layout & Animation --- */
.service-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.service-category.row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.service-category.row.alt-row {
  flex-direction: row;
}
.service-category.row:not(.alt-row) {
  flex-direction: row-reverse;
}
.service-category-img {
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  background: var(--beige);
  border-radius: 1.2rem;
  box-shadow: 0 8px 32px rgba(209, 169, 94, 0.35), 0 1.5px 8px rgba(58,44,26,0.10);
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.7s cubic-bezier(.4,1,.4,1), transform 0.7s cubic-bezier(.4,1,.4,1), box-shadow 0.4s, border-color 0.4s;
  padding: 12px;
}
.service-category-img.move-in-right {
  transform: translateX(60px);
}
.service-category-img.in-view {
  opacity: 1;
  transform: translateX(0);
}
.service-category-img.zoomed {
  z-index: 2;
  box-shadow: 0 4px 24px rgba(242, 198, 126, 0.18);
}
.service-category-img.zoomed img {
  transform: scale(1.08);
  opacity: 0.95;
  filter: grayscale(0) brightness(1);
}
.service-category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border-radius: 1.2rem;
  transition: transform 0.5s cubic-bezier(.4,1,.4,1), opacity 0.5s, filter 0.5s;
}
.service-category-content {
  flex: 2 1 340px;
  min-width: 220px;
  max-width: 600px;
  padding: 1.2rem 0.5rem;
}
.service-category-content h2 {
  font-family: 'Playfair Display', serif;
  color: var(--main-gold-dark);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.service-items {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-items li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.08rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f2e6d6;
}
.service-items li:last-child {
  border-bottom: none;
}
.service-name {
  color: var(--text-dark);
  font-weight: 500;
}
.service-price {
  color: var(--main-gold-dark);
  font-weight: 600;
  font-size: 1.08rem;
}
.page-title {
  text-align: center;
  margin-top: 2rem;
  font-family: 'Playfair Display', serif;
  color: var(--main-gold-dark);
  font-size: 2.2rem;
  letter-spacing: 2px;
}
@media (max-width: 900px) {
  .service-category.row,
  .service-category.row.alt-row,
  .service-category.row:not(.alt-row) {
    flex-direction: column !important;
    gap: 1.2rem;
    align-items: stretch;
  }
  .service-category-img, .service-category-content {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
  .service-category-img {
    height: 160px;
  }
}

.service-menu-cta {
  background: var(--beige);
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px rgba(242, 198, 126, 0.13);
  padding: 2.2rem 1.5rem 1.7rem 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
  transition: box-shadow 0.3s;
}
.service-menu-cta h3 {
  font-family: 'Playfair Display', serif;
  color: var(--main-gold-dark);
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
}
.service-menu-cta p {
  color: var(--text-dark);
  font-size: 1.08rem;
  margin-bottom: 1.3rem;
}
.cta-button {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--text-light);
  background: var(--golden-gradient);
  border: none;
  border-radius: 2.5rem;
  padding: 0.95rem 2.5rem;
  box-shadow: 0 2px 12px rgba(242, 198, 126, 0.18);
  text-decoration: none;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.18s;
  outline: none;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(135deg, #f2c67e 0%, #b29655 100%);
  box-shadow: 0 4px 24px rgba(242, 198, 126, 0.28), 0 0 0 4px #f2c67e33;
  color: var(--text-dark);
  transform: scale(1.045);
}

.service-menu-cta-block {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 220px;
  max-width: 340px;
  margin: 0 auto;
}
@media (max-width: 1100px) {
  .why-choose-content, .service-menu-cta-block {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
  .why-choose-image-wrapper {
    max-width: 160px;
  }
}
@media (max-width: 900px) {
  
  .why-choose-content, .service-menu-cta-block {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
  .why-choose-image-wrapper {
    max-width: 100%;
    min-width: 0;
    width: 100%;
    justify-content: center;
    margin: 1rem 0;
  }
  .service-menu-cta-block {
    margin-top: 1.2rem;
  }
}

/* Pedicure Treatment Session Styles */
.pedicure-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 0 auto 2rem auto;
  max-width: 1000px;
}
.pedicure-box {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 6px 32px 0 rgba(180, 140, 80, 0.13), 0 1.5px 8px 0 rgba(180, 140, 80, 0.10);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s;
  min-height: 420px;
}
.pedicure-box:hover {
  box-shadow: 0 12px 40px 0 rgba(180, 140, 80, 0.18), 0 2px 12px 0 rgba(180, 140, 80, 0.13);
}
.pedicure-img {
  width: 100%;
  height: 180px;
  background: #f7f3ed;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px 0 rgba(180, 140, 80, 0.10);
}
.pedicure-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 1.2rem 1.2rem;
}
.pedicure-content {
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  color: var(--text-dark);
  text-align: left;
  width: 100%;
}
.pedicure-content h3 {
  color: var(--main-gold-dark);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.pedicure-content ul {
  margin: 0.5rem 0 0.5rem 1.2rem;
  padding: 0;
  list-style: disc;
  font-size: 1rem;
}
.pedicure-content li {
  margin-bottom: 0.2rem;
}
.pedicure-price {
  color: #b85c00;
  font-weight: 700;
  font-size: 1.2rem;
  margin-top: 0.7rem;
}
@media (max-width: 900px) {
  .pedicure-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .pedicure-box {
    min-height: 0;
  }
}
