/*
Theme Name: Paul's Waxing Bar
Description: Professional waxing services website theme with elegant spa aesthetics
Version: 1.0
Author: Custom Theme
*/

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(24, 33%, 20%);
  --muted: hsl(35, 22%, 95%);
  --muted-foreground: hsl(25, 5.3%, 44.7%);
  --popover: hsl(0, 0%, 100%);
  --popover-foreground: hsl(24, 33%, 20%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(24, 33%, 20%);
  --border: hsl(20, 5.9%, 90%);
  --input: hsl(20, 5.9%, 90%);
  --primary: hsl(35, 38%, 35%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(35, 22%, 95%);
  --secondary-foreground: hsl(24, 9.8%, 10%);
  --accent: hsl(35, 22%, 95%);
  --accent-foreground: hsl(24, 9.8%, 10%);
  --destructive: hsl(0, 84.2%, 60.2%);
  --destructive-foreground: hsl(60, 9.1%, 97.8%);
  --ring: hsl(24, 33%, 20%);
  --radius: 0.5rem;
  
  /* Custom spa colors */
  --spa-brown: hsl(24, 33%, 20%);
  --spa-cream: hsl(35, 22%, 95%);
  --spa-gold: hsl(35, 38%, 35%);
  --spa-text: hsl(210, 11%, 20%);
}

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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--foreground);
  background: var(--background);
}

html {
  scroll-behavior: smooth;
}

.font-script {
  font-family: 'Dancing Script', cursive;
}

.spa-brown {
  color: var(--spa-brown);
}

.bg-spa-brown {
  background-color: var(--spa-brown);
}

.spa-cream {
  color: var(--spa-cream);
}

.bg-spa-cream {
  background-color: var(--spa-cream);
}

.spa-gold {
  color: var(--spa-gold);
}

.bg-spa-gold {
  background-color: var(--spa-gold);
}

.spa-text {
  color: var(--spa-text);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-logo {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 20;
}

.hero-logo img {
  width: 4rem;
  height: 4rem;
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 1rem;
}

.hero-content h1 {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(9rem, 8vw, 5rem);
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-content p {
  font-size: clamp(2rem, 5vw, 2rem);
  margin-bottom: 2.5rem;
  font-weight: 300;
  opacity: 0.9;
}

.hero-btn {
  background-color: #000;
  color: white;
  padding: 1rem 2rem;
  font-size: 1.5rem;
  font-weight: 500;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.hero-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  text-decoration: none;
}

/* About Section */
.about-section {
  padding: 0;
  background: white;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  min-height: 100vh;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  padding: 2rem 4rem;
}

.about-content h3 {
  font-size: clamp(2rem, 5vw, 2rem);
  font-weight: normal;
  color: #374151;
  margin-bottom: 0.5rem;
}

.about-content h2 {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(7rem, 8vw, 5rem);
  color: black;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.about-text {
  color: #374151;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: clamp(1.2rem, 5vw, 1.5rem);
}

.about-text.highlight {
  font-weight: 500;
  color: #1f2937;
}

/* Services Section */
.services-section {
  padding: 1rem 0;
  background: #f9fafb;
}

.services-header {
  text-align: center;
}

.services-header h2 {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(7rem, 8vw, 5rem);
  color: black;
  font-weight: bold;
  margin-bottom: 2rem;
}

.services-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  
}

.services-tab {
  padding: 0.5rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #6b7280;
  font-size: clamp(2rem, 5vw, 2rem);
}

.services-tab:hover {
  color: black;
}

.services-tab.active {
  background: black;
  color: white;
}

.services-separator {
  color: #9ca3af;
  font-size: 1rem;
}

.services-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  min-height: 600px;
}

.services-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-details {
  padding: 3rem 4rem;
}

.service-item {
  margin-bottom: 2rem;
}

.service-item h3 {
  font-size: 1.7rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.service-item p {
  color: #6b7280;
  line-height: 1.6;
  font-size: 1.5rem;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background: black;
  color: white;
  text-align: center;
}

.contact-container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.contact-section h2 {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(7rem, 6vw, 4rem);
  margin-bottom: 1rem;
  font-weight: bold;
}

.contact-section p {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #d1d5db;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 50rem;
  margin: 0 auto;
}

.form-group {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 0.75rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid #6b7280;
  color: white;
  font-size: 1.5rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-input::placeholder {
  color: #9ca3af;
}

.form-input:focus {
  border-bottom-color: white;
}

.submit-btn {
  grid-column: span 2;
  margin-top: 1.5rem;
  background: var(--spa-gold);
  color: white;
  padding: 1rem 3rem;
  font-size: 1.5rem;
  font-weight: 500;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: hsl(35, 38%, 30%);
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-container,
  .services-content {
    grid-template-columns: 1fr;
  }
  
  .about-content,
  .services-details {
    padding: 2rem;
  }
  
  .hero-logo {
    top: 1rem;
    left: 1rem;
  }
  
  .hero-logo img {
    width: 3rem;
    height: 3rem;
  }
}

@media (max-width: 768px) {
  .contact-form {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .wpcf7-form {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .datetime-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .hero-content h1 {
   font-size: clamp(6rem, 8vw, 3rem);
  }

 .about-content h2 {
   font-size: clamp(4rem, 8vw, 3rem);
  }
  .services-header h2{
    font-size: clamp(4rem, 8vw, 3rem);
  }

  .submit-btn, .wpcf7-submit {
    grid-column: span 1;
  }
  
  .services-tabs {
    flex-direction: column;
    gap: 1rem;
  }
  
  .services-separator {
    display: none;
  }
}

/* WordPress specific styles */
.wp-block-group {
  margin: 0;
}

.entry-content {
  margin: 0;
}

.site-main {
  margin: 0;
}

.site-content {
  margin: 0;
  padding: 0;
}

#main {
  margin: 0;
  padding: 0;
}

.container {
  margin: 0;
  padding: 0;
  max-width: 100%;
}

/* Footer Section */
.footer-section {
  background: #1f2937;
  color: white;
  padding: 3rem 0 2rem;
  text-align: center;
}

.footer-container {
  max-width: 100rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  color: var(--spa-gold);
  margin-bottom: 1rem;
}

.footer-section p, .footer-section li {
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 3rem;
  height: 3rem;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1.5rem;
  color: #9ca3af;
  font-size: 0.9rem;
}

/* Contact Form 7 Styles */
.wpcf7-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 50rem;
  margin: 0 auto;
}

.wpcf7-form-control-wrap {
  position: relative;
  grid-column: span 1;
}

.datetime-row {
  grid-column: span 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.datetime-row .wpcf7-form-control-wrap {
  grid-column: span 1;
}

.wpcf7-form-control {
  width: 100%;
  padding: 0.75rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid #6b7280;
  color: white;
  font-size: 1.5rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.wpcf7-form-control::placeholder {
  color: #9ca3af;
}

.wpcf7-form-control:focus {
  border-bottom-color: white;
}

.wpcf7-select {
  background: rgba(0, 0, 0, 0.2);
  color: white;
  border: 1px solid #6b7280;
  border-radius: 0.375rem;
  padding: 0.75rem;
}

.wpcf7-select option {
  background: #1f2937;
  color: white;
}

.wpcf7-submit {
  grid-column: span 2;
  margin-top: 1.5rem;
  background: var(--spa-gold);
  color: white;
  padding: 1rem 3rem;
  font-size: 1.5rem;
  font-weight: 500;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wpcf7-submit:hover {
  background: hsl(35, 38%, 30%);
  transform: scale(1.05);
}

.wpcf7-response-output {
  color: white;
  margin-top: 1rem;
  grid-column: span 2;
}

/* Hidden elements for WordPress */
.screen-reader-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}