@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --primary-bg: #0a0a0a;
  --secondary-bg: #141414;
  --text-light: #f5f5f5;
  --text-muted: #a0a0a0;
  --gold-accent: #c5a861;
  --gold-accent-hover: #e3c479;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.gold-text {
  color: var(--gold-accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 2px;
}

.btn-primary {
  background-color: var(--gold-accent);
  color: var(--primary-bg);
  border: 1px solid var(--gold-accent);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--gold-accent);
}

.btn-outline {
  background-color: transparent;
  color: var(--gold-accent);
  border: 1px solid var(--gold-accent);
}

.btn-outline:hover {
  background-color: var(--gold-accent);
  color: var(--primary-bg);
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 0;
  z-index: 1000;
  transition: all 0.4s ease;
}

nav.scrolled {
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--glass-border);
}

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

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 2px;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo span {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 4px;
  color: var(--gold-accent);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold-accent);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.3) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 650px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 0.5s;
}

.subtitle {
  color: var(--gold-accent);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.subtitle::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background-color: var(--gold-accent);
}

.hero-content h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
}

/* About Section */
.about {
  padding: 8rem 0;
  background-color: var(--primary-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 4px;
}

.about-badge {
  position: absolute;
  bottom: -40px;
  left: -40px;
  background-color: var(--secondary-bg);
  border: 1px solid var(--gold-accent);
  color: var(--gold-accent);
  padding: 2rem;
  border-radius: 50%;
  width: 180px;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.about-badge span {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge small {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin-top: 5px;
  color: var(--text-light);
}

/* Services Section */
.services {
  padding: 8rem 0;
  background-color: var(--secondary-bg);
  text-align: center;
}

.services-header {
  margin-bottom: 5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services-header h2 {
  font-size: 3rem;
  margin-top: 0.5rem;
}

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

.service-card {
  background: var(--primary-bg);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.4s ease, border-color 0.4s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold-accent);
}

.service-img {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.05);
}

.service-content {
  padding: 2.5rem;
}

.service-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.service-content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.service-link {
  color: var(--gold-accent);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.service-card:hover .service-link {
  gap: 1rem;
}

/* Experience / CTA Section */
.experience {
  padding: 10rem 0;
  background: linear-gradient(rgba(10,10,10,0.85), rgba(10,10,10,0.85)), url('assets/images/massage_therapy_1785060740768.png') center/cover;
  text-align: center;
  background-attachment: fixed;
}

.experience h2 {
  font-size: 4rem;
  margin-bottom: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.1;
}

.experience p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* Footer */
footer {
  background-color: #050505;
  padding: 6rem 0 2rem;
  border-top: 1px solid var(--glass-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-brand .logo {
  display: inline-flex;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--gold-accent);
  border-color: var(--gold-accent);
  color: var(--primary-bg);
}

.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold-accent);
}

.footer-contact p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer-contact i {
  color: var(--gold-accent);
  margin-top: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
  .about-grid, .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .about-badge {
    bottom: -20px;
    left: -20px;
    width: 140px;
    height: 140px;
  }
  .about-badge span {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .hero-btns {
    flex-direction: column;
  }
  
  .about-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image img {
    height: 400px;
  }
  
  .services-header h2, .about-text h2 {
    font-size: 2.2rem;
  }
  
  .experience h2 {
    font-size: 2.5rem;
  }
}
