/* 
* Female X Stacy Spa - Main Stylesheet
* Modern, responsive design for luxury spa website
* Created: August 2025
*/

/* Base Styles & CSS Reset */
:root {
  --primary-color: #0c5c63;
  --primary-dark: #074145;
  --primary-light: #1d8a93;
  --secondary-color: #f8b400;
  --accent-color: #e8505b;
  --text-dark: #2c3e50;
  --text-light: #f9f9f9;
  --background-light: #ffffff;
  --background-dark: #f5f7f9;
  --background-accent: #e6f3f4;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --transition-speed: 0.3s;
  --box-shadow: 0 10px 30px rgba(12, 92, 99, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  background-color: var(--background-light);
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: color var(--transition-speed) ease;
}

a:hover {
  color: var(--primary-light);
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-dark);
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Button Styles */
.button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--border-radius-md);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  font-size: 0.9rem;
  font-family: var(--font-body);
}

.button.primary {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: none;
}

.button.primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(12, 92, 99, 0.2);
}

.button.secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.button.secondary:hover {
  background-color: var(--primary-light);
  border-color: var(--primary-light);
  color: var(--text-light);
  transform: translateY(-2px);
}

.cta-button {
  background-color: var(--secondary-color);
  color: var(--text-dark);
  padding: 10px 18px;
  border-radius: var(--border-radius-sm);
  font-weight: 500;
  transition: all var(--transition-speed) ease;
}

.cta-button:hover {
  background-color: #e3a500;
  color: var(--text-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(248, 180, 0, 0.3);
}

/* Section Styles */
section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.section-header p {
  font-size: 1.3rem;
  color: var(--gray-600);
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
}

.section-header h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background-color: var(--secondary-color);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--box-shadow);
  z-index: 1000;
  padding: 0.8rem 0;
  transition: all var(--transition-speed) ease;
}

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

.logo img {
  height: auto;
  max-height: 60px;
}

.main-nav .nav-links {
  display: flex;
  align-items: center;
}

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

.main-nav .nav-links a {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  position: relative;
}

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

.main-nav .nav-links a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-speed) ease;
}

.main-nav .nav-links a:hover:after,
.main-nav .nav-links a:focus:after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  position: relative;
  width: 30px;
  height: 30px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--text-dark);
  margin: 6px 0;
  transition: all var(--transition-speed) ease;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, rgba(12, 92, 99, 0.9), rgba(7, 65, 69, 0.7)), url('https://source.unsplash.com/random/1600x900/?spa,wellness');
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  padding: 12rem 0 8rem;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light);
  line-height: 1.2;
}

.hero h2 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

/* About Section */
.about {
  background-color: var(--background-accent);
  position: relative;
  overflow: hidden;
}

.about:before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  height: 100px;
  background-color: var(--background-accent);
  transform: skewY(-2deg);
  z-index: -1;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  color: var(--gray-700);
}

.about-features {
  flex: 1;
  min-width: 300px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.feature {
  background-color: var(--background-light);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow);
  transition: transform var(--transition-speed) ease;
  border-left: 3px solid var(--primary-color);
}

.feature:hover {
  transform: translateY(-5px);
}

.feature h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.feature p {
  color: var(--gray-700);
}

/* Services Section */
.services {
  background-color: var(--background-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background-color: var(--background-light);
  padding: 2.5rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow);
  transition: all var(--transition-speed) ease;
  border-bottom: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: opacity var(--transition-speed) ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-bottom: 4px solid var(--primary-color);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-card p {
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

.service-card .price {
  display: inline-block;
  color: var(--accent-color);
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

/* Packages Section */
.packages {
  background-color: var(--background-dark);
  position: relative;
  overflow: hidden;
}

.packages:before,
.packages:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: rgba(12, 92, 99, 0.05);
  z-index: 0;
}

.packages:before {
  top: -100px;
  left: -100px;
}

.packages:after {
  bottom: -100px;
  right: -100px;
}

.packages-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}

.package-card {
  background-color: var(--background-light);
  border-radius: var(--border-radius-md);
  padding: 3rem 2rem;
  text-align: center;
  transition: all var(--transition-speed) ease;
  box-shadow: var(--box-shadow);
}

.package-card:hover {
  transform: translateY(-8px);
}

.package-card.featured {
  background: linear-gradient(135deg, var(--background-light) 0%, #e6f3f4 100%);
  transform: scale(1.05);
  position: relative;
  z-index: 1;
  border: 1px solid rgba(12, 92, 99, 0.1);
}

.package-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.package-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  color: var(--primary-color);
}

.package-card .duration {
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.package-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.package-card ul {
  text-align: left;
  margin-bottom: 1.5rem;
}

.package-card ul li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.8rem;
}

.package-card ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.packages-note {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.packages-note p {
  margin-bottom: 1.5rem;
  color: var(--gray-700);
}

/* Testimonials Section */
.testimonials {
  background-color: var(--background-light);
}

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

.testimonial {
  background-color: var(--background-light);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow);
  transition: transform var(--transition-speed) ease;
  border-top: 4px solid var(--secondary-color);
}

.testimonial:hover {
  transform: translateY(-5px);
}

.testimonial-content p {
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-content p:before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 4rem;
  position: absolute;
  left: -20px;
  top: -20px;
  color: var(--gray-200);
  z-index: -1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author .name {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.2rem;
}

.testimonial-author .location {
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* Entertainment Section */
.entertainment {
  background-color: var(--background-accent);
}

.entertainment-content {
  max-width: 900px;
  margin: 0 auto;
}

.entertainment-content > p {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: var(--gray-700);
}

.resource-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
}

.resource-category {
  background-color: var(--background-light);
  padding: 2.5rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow);
}

.resource-category h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--secondary-color);
}

.resource-category ul li {
  margin-bottom: 1rem;
  transition: all var(--transition-speed) ease;
}

.resource-category ul li:hover {
  transform: translateX(5px);
}

.resource-category a {
  display: inline-block;
  padding: 0.5rem 0;
  position: relative;
  transition: all var(--transition-speed) ease;
  color: var(--gray-700);
}

.resource-category a:hover {
  color: var(--primary-color);
}

.disclaimer {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  background-color: rgba(0, 0, 0, 0.03);
}

.disclaimer p {
  font-size: 0.9rem;
  color: var(--gray-600);
  text-align: center;
}

/* Booking Section */
.booking {
  background: linear-gradient(135deg, #f5f7f9 0%, var(--background-light) 100%);
}

.booking-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.booking-form {
  flex: 1;
  min-width: 300px;
}

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

.full-width {
  grid-column: span 2;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition-speed) ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(12, 92, 99, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.booking-info {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  background-color: var(--background-light);
  padding: 1.8rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow);
  border-left: 4px solid var(--secondary-color);
}

.info-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.info-item p {
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  background-color: var(--primary-dark);
  color: var(--text-light);
  padding: 5rem 0 1.5rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-logo {
  flex: 1;
  min-width: 200px;
}

.footer-logo p {
  margin-top: 1rem;
  color: var(--gray-400);
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-column {
  flex: 1;
  min-width: 150px;
}

.footer-column h3 {
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
  font-size: 1.3rem;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul li a {
  color: var(--gray-400);
  transition: all var(--transition-speed) ease;
}

.footer-column ul li a:hover {
  color: var(--text-light);
}

.social-links a {
  display: inline-block;
  padding-left: 1.5rem;
  position: relative;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: var(--gray-500);
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-favicon {
  display: inline-block;
}

/* Media Queries */
@media (max-width: 992px) {
  html {
    font-size: 15px;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
  }
  
  .hero h1 {
    font-size: 3.5rem;
  }
  
  .hero h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }
  
  .menu-toggle {
    display: block;
    z-index: 1001;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }
  
  .main-nav .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: var(--background-light);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
    z-index: 1000;
  }
  
  .main-nav .nav-links.active {
    right: 0;
  }
  
  .main-nav .nav-links li {
    margin: 1.5rem 0;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .about-content,
  .booking-content {
    flex-direction: column;
  }
  
  form {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-links {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .section-header p {
    font-size: 1.1rem;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero h2 {
    font-size: 1.6rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .services-grid,
  .packages-content,
  .testimonials-grid,
  .resource-links {
    grid-template-columns: 1fr;
  }
  
  .package-card.featured {
    transform: scale(1);
  }
  
  .package-card.featured:hover {
    transform: translateY(-8px);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
}
