/*
Theme Name: Lush Beauty & Spa
Theme URI: https://lushbeautynspa.com
Author: Studio 7
Author URI: https://studio7.com
Description: A luxurious and elegant WordPress theme for beauty and spa businesses
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lushbeautynspa
Domain Path: /languages
Requires at least: 5.0
Requires PHP: 7.4
*/

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

:root {
  --primary-color: #8b7355;
  --secondary-color: #d4a574;
  --dark-color: #2c2c2c;
  --light-color: #f5f5f5;
  --white: #ffffff;
  --text-color: #333333;
  --border-color: #e0e0e0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
  width: 100%;
}

body {
  background-color: #c2ae8f;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Figtree', sans-serif;
  color: #000000;
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

::selection {
  background-color: var(--secondary-color);
  color: white;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark-color);
  font-synthesis: none;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-family: 'Fraunces', serif;
  font-weight: 400 !important;
}

h1 {
  font-size: 4rem;
  letter-spacing: -1px;
}

h2 {
  font-size: 2.8rem;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 2rem;
}

p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #000000;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: 'Figtree', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

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

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 50px;
  text-align: center;
}

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

.text-center .section-title::after {
  left: 50%;
}

.section-subtitle {
  font-size: 0.85rem;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 400;
  display: block;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-fluid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Responsive Grid */
.grid {
  display: grid;
  gap: 30px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.6rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

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

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-60 {
  margin-top: 60px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-60 {
  margin-bottom: 60px;
}

.py-60 {
  padding: 60px 0;
}

.py-80 {
  padding: 80px 0;
}

/* Page Animations */

body {
  opacity: 0;
  animation: fadeInPage 1s ease forwards;
}

@keyframes fadeInPage {
  from { opacity: 0; }
  to { opacity: 1; }
}

.site-header {
  animation: slideInDown 0.8s ease forwards;
}

@keyframes slideInDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Modern Fade Up Animation */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
  width: 100%;
  height: 100%;
}

.self-center {
  align-self: center;
}
