/*
Theme Name:sensuousskinspa
Theme URI: https://sensuousskinspa.com
Author: sensuousskinspa
Description: Custom lightweight theme for sensuousskinspa
Version: 1.0
*/
html, body {
  margin: 0 !important;
  padding: 0 !important;
  border: 0;
  background: transparent;
}

/* ===== HEADER ===== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  color: #fff;
  z-index: 100;
}

body.admin-bar .site-header {
  top: 0 !important;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
}

/* Logo */
.logo img {
  height: 60px;
  width: auto;
  display: block;
}

/* Nav */
.main-nav .menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}
.main-nav a:hover {
  color: #9c6bff;
}

/* Button */
.header-btn {
  border: 2px solid #fff;
  border-radius: 50px;
  color: #fff;
  padding: 10px 24px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.header-btn:hover {
  background: #7a42f4;
  border-color: #7a42f4;
}

/* ===== HERO ===== */
.hero-section {
  position: relative;
  /* width: 100% ; */
  height: 100vh; /* full screen height */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 8%;
  color: #fff;
  margin: 0;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-content h1,
.hero-content h2 {
  font-size: 3.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.hero-content p {
  font-size: 1.1rem;
  color: #ddd;
  margin-bottom: 2rem;
}

.hero-btn {
  background-color: #7a42f4;
  color: #fff;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.hero-btn:hover {
  background-color: #9c6bff;
}
.meet-me-section {
  background: #fff;
  padding: 120px 0;
}

.meet-me-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

.meet-me-image {
  flex: 1;
  max-width: 450px;
}

.meet-me-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.meet-me-content {
  flex: 1.5;
}

.meet-me-pretitle {
  font-size: 18px;
  text-transform: uppercase;
  color: #b59a60; /* your gold tone */
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.meet-me-title {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #222;
  line-height: 1.2;
}

.meet-me-description p {
  font-size: 18px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 18px;
}
