/* Extra layout adjustments for beautiful presentation */
.beauty-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.beauty-salon-wrapper {
  padding-top: 0;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.salon-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 30px 4%;
  transition: background 0.3s;
}

.salon-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.salon-brand {
  text-align: center;
}

.salon-logo {
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin: 0;
  line-height: 1.2;
}

.salon-sublogo {
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.7;
  margin: 0;
}

.salon-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.salon-nav a {
  text-decoration: none;
  color: inherit;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity 0.3s;
}

.salon-nav a:hover {
  opacity: 0.6;
}

.btn-booking-mini {
  background-color: var(--accent-color);
  color: #ffffff;
  padding: 8px 18px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 2px;
}

/* Hero Section */
.section-hero {
  padding: 140px 4% 80px 4%;
}

.hero-container {
  max-width: 1100px;
  margin: 0 auto;
}

.hero-images-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 60px;
}

.arch-container {
  position: relative;
  border-radius: 80px 20px 80px 20px;
  overflow: hidden;
  padding-top: 130%;
}

.hero-arch-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-center-img {
  width: 100%;
  height: auto;
  border-radius: 20px 80px 20px 80px;
}

.hero-right-img {
  width: 100%;
  height: auto;
  border-radius: 80px 20px 80px 20px;
}

.hero-statement {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  opacity: 0.6;
  margin-bottom: 12px;
}

.hero-title {
  font-size: 34px;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.8;
  margin-bottom: 30px;
}

/* Services */
.section-services {
  padding: 80px 4%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  text-align: center;
}

.service-arch-wrap {
  width: 100%;
  padding-bottom: 135%;
  position: relative;
  margin-bottom: 24px;
  border-radius: 80px 20px 80px 20px;
  overflow: hidden;
  transition: all 0.5s ease;
}

.service-arch-wrap:hover {
  border-radius: 20px 80px 20px 80px;
}

.service-arch-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.accent-dot {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--bg-color);
}

.service-title {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 16px;
  padding: 0 10px;
  min-height: 50px;
}

.btn-outline-mini {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent-color);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-color);
  padding-bottom: 2px;
}

/* About Section */
.section-about {
  padding: 80px 4%;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-img-frame {
  position: relative;
}

.about-main-img {
  width: 100%;
  height: auto;
  border-radius: 80px 20px 80px 20px;
}

.frame-border {
  position: absolute;
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: -12px;
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  opacity: 0.2;
  border-radius: 80px 20px 80px 20px;
  z-index: -1;
  pointer-events: none;
}

.section-subtitle {
  font-size: 11px;
  letter-spacing: 0.25em;
  font-weight: 600;
  margin-bottom: 12px;
}

.about-title {
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 20px;
}

.about-desc {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.8;
  margin-bottom: 30px;
}

/* Instagram */
.section-gallery {
  padding: 80px 4%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: filter 0.3s;
}

.gallery-item img:hover {
  filter: brightness(0.85);
}

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

/* Contact and Map */
.section-contact {
  padding: 80px 4% 120px 4%;
}

.contact-card-box {
  background-color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(163, 123, 92, 0.15);
  border-radius: 8px;
  padding: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.contact-box-title {
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 400;
}

.contact-box-desc {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 30px;
}

.line-promo-box {
  border-left: 3px solid var(--primary-color);
  background-color: rgba(163, 123, 92, 0.05);
  padding: 24px;
  margin-bottom: 30px;
}

.line-promo-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.line-promo-text {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 16px;
}

.btn-line {
  display: inline-block;
  background-color: #06C755;
  color: #ffffff;
  padding: 10px 24px;
  font-size: 13px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: opacity 0.3s;
}

.btn-line:hover {
  opacity: 0.9;
}

.contact-detail-item {
  display: flex;
  margin-bottom: 12px;
  font-size: 13px;
}

.detail-label {
  font-weight: 600;
  width: 100px;
  opacity: 0.8;
}

.detail-value {
  opacity: 0.9;
}

.salon-web-form input,
.salon-web-form select,
.salon-web-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  border: 1px solid rgba(163, 123, 92, 0.2);
  background-color: #ffffff;
  border-radius: 4px;
  font-size: 13px;
  outline: none;
  color: inherit;
}

.salon-web-form select {
  appearance: none;
  cursor: pointer;
}

.google-map-container {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Footer */
.beauty-footer {
  padding: 80px 4%;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.15em;
  margin: 0 0 4px 0;
}

.footer-sublogo {
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 16px;
}

.footer-statement {
  font-size: 13px;
  opacity: 0.7;
  max-width: 300px;
}

.footer-section-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-col li {
  margin-bottom: 10px;
}

.footer-links-col a {
  color: inherit;
  text-decoration: none;
  font-size: 13px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-links-col a:hover {
  opacity: 1;
}

.social-links-grid {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}

.footer-social-link {
  color: inherit;
  text-decoration: none;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
}

.footer-copy {
  font-size: 11px;
  opacity: 0.5;
  margin: 0;
}
