:root {
  --primary-color: #2a002a;
  --secondary-color: #5d005d;
  --accent-color: #9b59b6;
  --text-color: #e0d4f7;
  --background-color: #1a001f;
  --card-bg: rgba(58, 0, 58, 0.8);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: var(--primary-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

header img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--secondary-color);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  position: relative;
}

nav a::after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s;
  position: absolute;
  bottom: -5px;
  left: 0;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: var(--accent-color);
}

main {
  padding: 50px 20px;
  background: linear-gradient(rgba(26, 0, 31, 0.8), rgba(26, 0, 31, 0.8)),
              url('https://i.imgur.com/Rlk6OGa.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.hero {
  text-align: center;
  padding: 100px 20px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: 'UnifrakturCook', cursive;
  font-size: 4rem;
  color: #ffffff;
  letter-spacing: 2px;
  text-shadow: 2px 2px 6px rgba(255, 255, 255, 0.4);
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.book-now-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 35px;
  background-color: var(--secondary-color);
  color: var(--text-color);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 30px;
  transition: box-shadow 0.5s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.book-now-btn:hover {
  background-color: var(--accent-color);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.7);
}

h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
}

.section-divider {
  width: 100px;
  height: 4px;
  background-color: var(--accent-color);
  margin: 10px auto 40px;
  border-radius: 2px;
}

.about-text {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: left;
  font-size: 1.1rem;
  color: var(--text-color);
  padding: 20px;
  background-color: rgba(42, 0, 42, 0.7);
  border-radius: 10px;
}

.service-category {
  max-width: 700px;
  margin: 0 auto 50px;
  padding: 20px;
  background-color: var(--card-bg);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.7);
}

.service-category h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  text-align: center;
}

.service-list {
  list-style: none;
  padding-left: 0;
}

.service-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(155, 0, 93, 0.5);
}

.service-list li:last-child {
  border-bottom: none;
}

#booking-policy {
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 20px;
}

.policy-section {
  background-color: var(--card-bg);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}

.policy-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.7);
}

.policy-section h3 {
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.policy-section ul {
  margin-left: 20px;
  list-style: disc;
  line-height: 1.6;
}

.policy-section p {
  line-height: 1.6;
  margin-bottom: 10px;
}

.policy-note {
  text-align: center;
  margin-top: 20px;
  font-weight: 600;
  color: var(--accent-color);
}

#instagram {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 20px;
  text-align: center;
}

.instagram-card {
  background-color: var(--card-bg);
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}

.instagram-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.7);
}

.instagram-card a {
  display: inline-block;
  margin-top: 15px;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.3s;
}

.instagram-card a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

#gallery {
  max-width: 1000px;
  margin: 0 auto 60px;
  padding: 20px;
  text-align: center;
  color: var(--text-color);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  border: 2px solid var(--accent-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
  border-color: var(--secondary-color);
}















