
@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom CSS */
:root {
  --dark-bg: #1A1F2C;
  --darker-bg: #151922;
  --gold: #D4AF37;
  --gold-hover: #CFB53B;
  --light-text: #ffffff;
  --light-gray: #e0e0e0;
  --muted-text: #aaadb0;
  --card-bg: rgba(34, 34, 34, 0.6);
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--dark-bg);
  color: var(--light-text);
  line-height: 1.7;
}

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

/* Navbar Styles */
.navbar {
  background-color: rgba(18, 20, 26, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.nav-link {
  color: var(--light-gray);
  margin: 0 0.5rem;
  position: relative;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--gold);
}

.book-now-nav {
  color: var(--gold) !important;
  font-weight: 600;
}

.book-now-nav:hover {
  color: var(--gold-hover) !important;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('https://habeshablissmassage.com/Images/0.jpg') no-repeat top center/cover;
  height: 100vh;
  min-height: 600px;
  position: relative;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--light-gray);
}

/* Gold Button */
.gold-btn {
  background-color: var(--gold);
  color: #111;
  font-weight: 600;
  border: none;
  border-radius: 0;
  transition: all 0.3s ease;
}

.gold-btn:hover {
  background-color: var(--gold-hover);
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Section Styling */
section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
}

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

.section-divider {
  width: 80px;
  height: 3px;
  background-color: var(--gold);
  margin: 0 auto 3rem;
}

.value-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: var(--gold);
}

.darker-bg {
  background-color: var(--darker-bg);
}

/* Services Section */
.service-card {
  background-color: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: rgba(212, 175, 55, 0.3);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: var(--gold);
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-description {
  color: var(--muted-text);
}

.service-note {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--gold);
  border-radius: 5px;
}

/* Gallery Section */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.gallery-item img {
  transition: all 0.5s ease;
  border-radius: 5px;
  object-fit: cover;
  height: 350px;
  width: 100%;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 1rem;
  color: #fff;
  text-align: center;
}

.gallery-caption h5 {
  margin-bottom: 0.25rem;
}

.gallery-caption p {
  font-size: 0.875rem;
  margin-bottom: 0;
  color: var(--gold);
}

/* Rates Section */
.rates-table {
  background-color: rgba(18, 20, 26, 0.7);
  color: var(--light-text);
  border-radius: 5px;
  overflow: hidden;
}

.rates-table th {
  background-color: rgba(212, 175, 55, 0.15);
  color: var(--gold);
  font-weight: 600;
  text-align: center;
  padding: 1rem;
  border: none;
}

.rates-table td {
  text-align: center;
  padding: 1rem;
  border-color: rgba(255, 255, 255, 0.1);
}

.package-card {
  background-color: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}

.package-header {
  background-color: rgba(212, 175, 55, 0.15);
  padding: 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.package-header h3 {
  margin-bottom: 0.5rem;
}

.package-price {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0;
}

.package-body {
  padding: 1.5rem;
}

.package-features {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.package-features li {
  margin-bottom: 0.75rem;
}

.package-features li i {
  color: var(--gold);
  margin-right: 0.5rem;
}

.package-btn {
  width: 100%;
}

.vip-package {
  border-color: rgba(212, 175, 55, 0.3);
}

.vip-package .package-header {
  background-color: rgba(212, 175, 55, 0.25);
}

/* Hours & Location */
.hours-box,
.location-box {
  background-color: var(--card-bg);
  padding: 1.5rem;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.hours-list li:last-child {
  margin-bottom: 0;
}

.hours-list .day {
  font-weight: 500;
}

.hours-list .time {
  color: var(--gold);
}

/* Contact Section */
.contact-info {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 5px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--gold-hover);
}

.contact-btn {
  display: block;
  width: 100%;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-btn {
  background-color: #25D366;
  color: #fff;
}

.whatsapp-btn:hover {
  background-color: #128C7E;
  color: #fff;
}

.telegram-btn {
  background-color: #0088cc;
  color: #fff;
}

.telegram-btn:hover {
  background-color: #0077b5;
  color: #fff;
}

.form-control,
.form-select {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--light-text);
  padding: 0.75rem 1rem;
}

.form-control:focus,
.form-select:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
  color: var(--light-text);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-check-input:checked {
  background-color: var(--gold);
  border-color: var(--gold);
}

.form-check-label {
  color: var(--light-gray);
}

/* Disclaimer */
.disclaimer-section {
  background-color: rgba(0, 0, 0, 0.3);
}

.disclaimer-content {
  padding: 1.5rem;
  border-radius: 5px;
}

/* Footer */
footer {
  background-color: rgba(18, 20, 26, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-link:hover {
  color: var(--gold);
  text-decoration: none;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(212, 175, 55, 0.15);
  color: var(--gold);
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.back-to-top:hover {
  background-color: var(--gold);
  color: #111;
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 1s ease-out;
}

.fade-in-delay {
  animation: fadeIn 1s ease-out 0.3s;
  animation-fill-mode: both;
}

.fade-in-delay-2 {
  animation: fadeIn 1s ease-out 0.6s;
  animation-fill-mode: both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .tagline {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .contact-info {
    margin-bottom: 2rem;
  }
}
