body {
  background-color: #f8f9fa;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    45deg in oklab,
    var(--primary-colour) 40%,
    var(--light-blue) 50% 100%
  );
}

.hero-content {
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}

/* Floating Elements */
.floating-element {
  position: absolute;
  animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
  top: 15%;
  left: 7%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  top: 60%;
  right: 3%;
  animation-delay: 1.5s;
}

.floating-element:nth-child(3) {
  bottom: 56%;
  left: 75%;
  animation-delay: 0.5s;
}

.floating-element:nth-child(4) {
  bottom: 10%;
  left: 3%;
  animation-delay: 1.5s;
}

.floating-element img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid white;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}


/* Services */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  max-width: 1200px;
  justify-self: center;
}

.service-card {
  position: relative;
  align-content: space-between;
  flex: 1 0 calc(30% - 1rem);
  min-width: 300px;
  background: #fff;
  padding: 1rem 1.8rem;
  border-radius: 20px;
  box-shadow: 0 10px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 107, 157, 0.1);
}
/*
.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 10px rgba(0, 0, 0, 0.15);
}
*/
.service-icon {
  font-size: 3rem;
  color: var(--pink);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
  color: var(--black-font);
}

.service-card p {
  color: var(--black-font);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.price {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--pink);
}

.info-card {
  position: relative;
  background: #fff;
  padding: 1rem;
  border-radius: 15px;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: all 0.3s ease;
  min-height: 500px;
  max-width: 500px;
}
/*
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 10px rgba(0, 0, 0, 0.15);
}
*/
.info-card-text {
  position: relative;
  padding: 0.6rem;
  z-index: 2;
  text-align: center;
}

.info-card h3 {
  color: #333;
  font-size: 1.5rem;
  font-weight: 500;
}

.info-card p {
  color: #666;
  line-height: 1.6;
  text-wrap: wrap;
}

#services img {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 4;
  height: 100%;
  max-inline-size: 100%;
  z-index: 0;
}

.services-grid img {
  object-fit: cover;
}

.loyalty-card {
  background: linear-gradient(
    211deg,
    #d1fbe4 10% 40%,
    white 50% 60%,
    pink 70% 100%
  );
}

.locations-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1200px;
  justify-self: center;
}

.locations-info .info-card:nth-child(1) img {
  object-fit: contain;
}

.locations-info .info-card:nth-child(1) img {
  top: 10% !important;
  padding: 1rem;
  object-fit: contain;
}

.locations-info .info-card:nth-child(2) img {
  object-fit: cover;
  border-radius: 15px;
}

/* Gallery */
.gallery {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 1rem;
  gap: 1rem;
  width: 90vw;
  justify-content: center;
}

.gallery-item {
  position: relative;
  color: white;
  aspect-ratio: 1 / 1;
  max-height: 320px;
  max-width: 320px;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  backface-visibility: hidden;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*
.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(255, 107, 157, 0.3);
}
*/

.gallery-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-text {
  position: absolute;
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 0.1rem 0.8rem;
  text-wrap: nowrap;
}

.learn-more-wrap {
  width: 10rem;
  justify-self: center;
}

.learn-more-wrap .button-text {
  margin: 0 0 0 2.5rem;
}

/* Learn-more Arrow*/
.learn-more:active .circle .icon.arrow {
  transform: translateX(0.5rem);
}

.learn-more:active .circle {
  width: 100%;
}

.learn-more:active .button-text {
  color: white;
}

/* Contact */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-info {
  background: #fff;
  padding: 1.4rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
  color: var(--pink);
  margin-bottom: 1rem;
}

.contact-form {
  background: #fff;
  padding: 1.4rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #eee;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--pink);
}

.submit-btn {
  background: linear-gradient(200deg, var(--pink), #c44569);
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
  align-items: center;
}

.about-text {
  height: 100%;
  display: grid;
}

.about-text h3 {
  color: var(--pink);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.about-text p {
  margin-bottom: 0.8rem;
  color: var(--black-font);
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  align-self: end;
}

.stat {
  text-align: center;
  padding: 1.4rem;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.2);
}

.stat h4 {
  color: var(--pink);
  font-size: 2.5rem;
}

.stat p {
  color: #666;
}

.salon-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.showcase-item {
  background: #fff;
  padding: 1.4rem;
  border-radius: 15px;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.showcase-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.showcase-item h4 {
  color: #333;
  margin-bottom: 0.5rem;
}

.showcase-item p {
  color: #666;
  font-size: 0.9rem;
}

/* Locations Section */
.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.2rem;
  margin-top: -2rem;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

/*Location carousel content*/
#locations {
  background: linear-gradient(180deg, var(--green), 90%, var(--dark-green));
  padding: 2.5rem 0 !important;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 1050px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}

.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  padding: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--pink);
}

.nav-button:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.2);
}

.nav-button.prev {
  left: 1rem;
}

.nav-button.next {
  right: 1rem;
}

.cards-container {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  cursor: grab;
}

.cards-container.grabbing {
  cursor: grabbing;
}

.card {
  position: absolute;
  width: 320px;
  cursor: pointer;
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.card-content {
  width: 100%;
  height: 100%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: rgb(0, 0, 0);
  overflow: hidden;
}

.card-top {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-emoji {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.card-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.card-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.card-bottom {
  text-align: center;
}

.card-description {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 2rem;
}

.card-button {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.card-button:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.indicators {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
}

.indicator:hover {
  background: rgba(255, 255, 255, 1);
}

.indicator.active {
  background: white;
  transform: scale(1.25);
}

.card-info {
  text-align: center;
  color: white;
}

.card-info-title {
  font-size: 2.1rem;
  font-weight: bold;
}

.card-info-subtitle {
  font-size: 1.2rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .card-emoji {
    font-size: 4rem;
  }

  .card-title {
    font-size: 1.5rem;
  }

  .card-subtitle {
    font-size: 1.125rem;
  }

  .card-info-title {
    font-size: 2rem;
  }

  .card-info-subtitle {
    font-size: 1.25rem;
  }

  .nav-button {
    display: none;
  }
}

@media (max-width: 480px) {
  .card {
    width: 300px;
  }

  .card-emoji {
    font-size: 3.5rem;
  }

  .card-title {
    font-size: 1.25rem;
  }

  .card-subtitle {
    font-size: 1rem;
  }

  .card-description {
    font-size: 0.875rem;
  }

  .card-info-title {
    font-size: 1.75rem;
  }

  .card-info-subtitle {
    font-size: 1.2rem;
  }

  .about-text p {
    margin-bottom: 1.2rem;
  }
}

.location-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.location-card img {
  width: 100%;
  border-bottom-left-radius: 0.6rem;
  border-bottom-right-radius: 0.6rem;
}

.location-header {
  background: linear-gradient(180deg, var(--pink), 30px, #ff6bc096);
  color: #fff;
  padding: 1rem 1rem 0.4rem 1rem;
  position: relative;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.location-header h3 {
  font-size: 1.5rem;
}

.location-badge {
  background: var(--pink);
  padding: 0.1rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  display: inline-block;
  user-select: none;
}

.location-details {
  padding: 1rem;
  flex: 1;
  font-family: Verdana;
  font-size: 0.9rem;
  backface-visibility: hidden;
  color: #333;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  gap: 1rem;
}

.detail-icon {
  font-size: 1.2rem;
  min-width: 25px;
  text-align: center;
}

.detail-item div {
  flex: 1;
}

.detail-item strong {
  color: #333;
}

.detail-item div:not(:has(strong)) {
  color: #666;
  line-height: 1.6;
}

.location-actions {
  margin-top: auto;
  padding: 0 2rem 1rem;
  display: flex;
  gap: 1rem;
}

.location-btn {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;

  user-select: none;
}

.location-btn.primary {
  background: linear-gradient(200deg, var(--pink), #c44569);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.location-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.location-btn.secondary {
  background: #fff;
  color: var(--pink);
  border: 2px solid var(--pink);
}

.location-btn.secondary:hover {
  background: var(--pink);
  color: #fff;
  transform: translateY(-2px);
}

/* Terms Section */
.terms-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  max-width: 1200px;
  justify-self: center;
}

.terms-section {
  flex: 1 0 calc(30% - 1rem);
  min-width: 330px;
  background: #fff;
  padding: 1.4rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.terms-section h3 {
  color: var(--pink);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.terms-section ul {
  list-style: none;
  padding: 0;
}

.terms-section li {
  color: var(--black-font);
  margin-bottom: 0.4rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.terms-section li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--pink);
  font-weight: bold;
}

.policy-contact {
  background: #fff;
  padding: 0.6rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
  text-align: center;
}

.policy-contact a {
  color: var(--pink);
  text-decoration: none;
}

.policy-contact a:hover {
  text-decoration: underline;
}

.policy-contact em {
  color: #999;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .floating-element:nth-child(1) {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
  }

  .floating-element:nth-child(2) {
    top: 65%;
    right: 2%;
    animation-delay: 0.5s;
  }

  .floating-element:nth-child(3) {
    bottom: 62%;
    left: 60%;
    animation-delay: 1.5s;
  }

  .floating-element:nth-child(4) {
    bottom: 10%;
    left: 3%;
    animation-delay: 1s;
  }

  .floating-element img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid white;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .team-stats {
    grid-template-columns: 1fr;
  }

  .terms-content {
    grid-template-columns: 1fr;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }

  .location-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .floating-element:nth-child(1) {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
  }

  .floating-element:nth-child(2) {
    top: 65%;
    right: 2%;
    animation-delay: 0.5s;
  }

  .floating-element:nth-child(3) {
    bottom: 62%;
    left: 60%;
    animation-delay: 1.5s;
  }

  .floating-element:nth-child(4) {
    bottom: 10%;
    left: 3%;
    animation-delay: 1s;
  }

  .floating-element img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid white;
  }
}

@media (hover: hover) and (pointer: fine) {
  .learn-more:hover .circle .icon.arrow {
    transform: translateX(0.5rem);
  }
}
