/*
Theme Name: Reforme Room
Description: Premium Pilates Studio WordPress Theme - Fully customizable landing page with exact design recreation
Version: 1.0.0
Author: Reforme Room
Text Domain: reforme-room
*/

/* === Custom Fonts === */
@font-face {
  font-family: 'EmotiveType';
  src: url('assets/fonts/EmotiveTypeFreeDemo.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'GaretBook';
  src: url('assets/fonts/GaretBook.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* === Custom Variables === */
:root {
  --rifle-green: #484a3c;
  --light-moss: #c0d5ae;
  --bone: #dedbc2;
  --white: #ffffff;
  --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* === Global Styles === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'GaretBook', Arial, sans-serif;
  line-height: 1.8;
  background: var(--white);
  color: var(--rifle-green);
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'EmotiveType', serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 38px;
  background: var(--rifle-green);
  color: var(--bone);
  border-radius: 0;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  z-index: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--light-moss);
  z-index: -1;
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn:hover {
  color: var(--rifle-green);
  transform: translateY(-3px);
}

.btn:hover::before {
  transform: translateX(0);
}

.btn:hover i {
  transform: translateX(5px);
}

.btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-outline {
  background: transparent;
  color: var(--rifle-green);
  border: 2px solid var(--light-moss);
}

.btn-outline::before {
  background: var(--light-moss);
}

.btn-outline:hover {
  border-color: var(--rifle-green);
}

/* Section Title Styles */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--rifle-green);
}

.highlight-text {
  color: var(--light-moss);
  position: relative;
}

.underline-decoration {
  width: 120px;
  height: 3px;
  background: linear-gradient(135deg, var(--light-moss), var(--bone));
  margin: 30px auto;
  border-radius: 2px;
}

/* === Keyframes === */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* === Responsive Design === */
@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  
  .section-title h2 {
    font-size: 2.5rem;
  }
  
  .btn {
    padding: 14px 28px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
}
