/* === Base Styles === */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #000;
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: gold;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  text-decoration-style: wavy;
  font-family: 'Lato', sans-serif; 
  font-weight: 500;
  color: gold;
  transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  color: #d6a67a;
}

#menu-toggle {
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  color: gold;
  padding: 0.5rem;
  transition: transform 0.3s ease;
}

#menu-toggle.open {
  transform: rotate(90deg);
}

/* === Responsive Dropdown === */
@media (max-width: 768px) {
  #menu-toggle {
    display: block;
  }

  nav ul {
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0%;
    background: #000;
    width: 150px;
    display: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 0 0 8px 8px;
    overflow: hidden;
  }

  nav ul.show {
    display: flex;
    animation: slideDown 0.3s ease forwards;
  }

  nav ul li {
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
    text-align: left;
    padding: 0.75rem 1rem;
  }

  nav ul li:last-child {
    border-bottom: none;
  }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}


body {
  margin: 0;
 font-family: 'Lato', sans-serif; 
  font-weight: 300;
  background-color: #000;
  color: #fff;
}

header {
  background-color: #000;
  padding: 20px;
  display: block;
  justify-content: space-between;
}

.logo {
 font-family: 'Poppins', sans-serif;
  color: #ffd900;
  font-size: 60px;
}

.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: #00FFD7;
}

.btn-gold {
  display: inline-block;
  background: #FFD700;
  color: #000;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 10px;
}

.services-preview {
  padding: 40px 20px;
  text-align: center;
}

.services-section .service-cards {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  justify-content: center;
  gap: 20px;
  padding-bottom: 40px;
}

.card {
  background: rgba(146, 222, 16, 0.067)#111f;
  border: 2 solid #FFD700;
  padding: 20px;
  width: 300px;
  border-radius: 10px;
}
.page-title {
 font-family: 'Poppins', sans-serif;
  font-weight: 300;
  text-align: center;
  color: #FFD700;
  margin: 40px 0 20px;
}
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: #FDFBD4;
    height: 100%;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.card-content {
    padding: 25px;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
}

.card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ff758c 0%, #ff7eb3 100%);
    transition: width 0.3s ease;
}

.card p {
    margin: 8px 0;
    color: #555;
    line-height: 1.5;
}

.card p strong {
    color: #333;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
}

.book-btn {
    padding: 12px 30px;
    background: white;
    color: gold;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(20px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.book-btn:hover {
    background: #333;
    color: white;
    transform: translateY(15px) scale(1.05);
}

/* Hover Effects */
.card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.card:hover h3::after {
    width: 100%;
}

.card:hover .card-overlay {
    opacity: 1;
}

.card:hover .book-btn {
    transform: translateY(0);
}

/* Background Patterns */
#bridal-makeup {
    background: linear-gradient(45deg, #fff1eb 0%, #ace0f9 100%);
}

#bridal-hairstyling {
    background: linear-gradient(45deg, #e0c3fc 0%, #8ec5fc 100%);
}

#bridal-package {
    background: linear-gradient(45deg, #a1c4fd 0%, #c2e9fb 100%);
}

#bridesmaids-guests {
    background: linear-gradient(45deg, #ffecd2 0%, #fcb69f 100%);
}

#studio-makeup {
    background: linear-gradient(45deg, #fbc2eb 0%, #a6c1ee 100%);
}

#house-calls {
    background: linear-gradient(45deg, #fdcbf1 0%, #e6dee9 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr;
    }
}

.filter-buttons {
  text-align: center;
  margin: 20px 0;
}

.filter-buttons button {
  background: #FFD700;
  color: #000;
  padding: 10px 20px;
  margin: 5px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 20px;
}

.gallery-item {
  border: 2px solid #050505;
  padding: 5px;
  background-color: #111;
  width: 250px;
  height: auto;
}

.gallery-item img {
  width: 100%;
  height: 400;
  display: block;
  cursor: pointer;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.85);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
}
/* booking placeholder */

.container {
  background: #000;
  padding: 2rem;
  border-radius: 10px;
  max-width: 500px;
  width: 100%;
}

form input, form select, form button {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  background: #000;
  border: 1px solid #FFD700;
  color: #FFD700;
  font-size: 1rem;
}

button {
  background: #FFD700;
  color: #000;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  opacity: 0.9;
}

.blog-hero {
  position: relative;
  text-align: center;
  color: #fff;
}

.blog-hero img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  filter: brightness(60%);
}

.hero-text {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-text h1 {
font-family: 'Allura', cursive;
  font-size: 3rem;
  color: #FFD700;
}

.hero-text p {
font-family: 'Allura', cursive;
  font-size: 1.2rem;
  margin-top: 10px;
}

.blog-list {
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
}

.blog-post {
  display: flex;
  gap: 20px;
  background-color: #111;
  border-left: 4px solid #FFD700;
  padding: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.post-thumb {
  width: 180px;
  height: auto;
  border: 2px solid #FFD700;
}

.post-content {
  flex-grow: 1;
}

.post-content h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  color: #FFD700;
}

.post-content .excerpt {
  margin: 10px 0;
 font-family: 'Allura', cursive;
  color: #ddd;
}

.post-meta {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 10px;
}

.tag {
  background-color: #FFD700;
  color: #000;
  padding: 2px 8px;
  border-radius: 3px;
  font-weight: bold;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  color: #FFD700;
  text-decoration: underline;
  font-weight: bold;
}
.about-section {
  padding: 60px 20px;
  background-color: #000;
  color: #fff;
 font-family: 'Poppins', sans-serif;
  font-weight: 300;
}

.about-container {
  max-width: 1000px;
  margin: auto;
}

.page-title {
 font-family: 'Poppins', sans-serif;
  font-weight: 300;
  color: #FFD700;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 30px;
}

.intro-text {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 40px;
  color: #ccc;
}

.about-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #ddd;
}

.about-content strong {
  color: #FFD700;
}

.signature {
  font-style: italic;
  margin-top: 30px;
  color: #FFD700;
  text-align: center;
}
.lightbox-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.lightbox-large {
  max-width: 90%;
  max-height: 90%;
  border: 5px solid #FFD700;
}
.lightbox-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.lightbox-large {
  max-width: 90%;
  max-height: 90%;
  border: 5px solid #FFD700;
}
 /* Booking Container */
.container {
  background: #121212;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
  max-width: 420px;
  width: 100%;
  padding: 2rem;
  text-align: center;
}

.container h1 {
  font-size: 1.5rem;
  color: #d4af37; /* gold */
  margin-bottom: 1.5rem;
}

form#bookingForm {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

form#bookingForm input,
form#bookingForm select {
  padding: 0.75rem 1rem;
  background: #1e1e1e;
  border: 1px solid #333;
  border-radius: 8px;
  font-size: 1rem;
  color: #f1f1f1;
  transition: border 0.3s, box-shadow 0.3s;
}

form#bookingForm input::placeholder {
  color: #aaa;
}

form#bookingForm input:focus,
form#bookingForm select:focus {
  border: 1px solid #d4af37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
  outline: none;
}

form#bookingForm button {
  padding: 0.75rem 1rem;
  background: #d4af37; /* gold */
  color: #0c0c0c;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

form#bookingForm button:hover {
  background: #bfa533;
  transform: translateY(-2px);
}

#message {
  margin-top: 1rem;
  font-size: 0.95rem;
}

.success {
  color: #28a745;
  font-weight: 500;
}

.error {
  color: #dc3545;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 480px) {
  .container {
    padding: 1.5rem 1rem;
  }
}