* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Segoe UI', sans-serif;
  scroll-behavior: smooth;
  background: #111;            /* dark elegant background */
  color: #ddd;                 /* light text */
}

a {
  text-decoration: none;
  color: inherit;
}

/* Navbar */
header {
  background: rgba(0,0,0,0.85);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid #d4af37;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  height: 60px;
  color: #d4af37;     /* gold logo text */
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 1.5rem;
}

.nav-links a {
  color: #ddd;
  font-weight: 500;
}

.nav-links a:hover {
  color: #d4af37;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: #d4af37;
}

/* Hero slider */
.hero-slider {
  position: relative;
  margin-top: 5px;
  width: 100%;
  height: calc(100vh - 60px);
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #d4af37;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);   /* semi-transparent dark background */
  padding: 1rem 2rem;               /* spacing around text */
  border-radius: 8px;               /* rounded corners */
  box-shadow: 0 4px 15px rgba(0,0,0,0.7); /* shadow effect */
}


.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero-text p {
  margin-bottom: 1.5rem;
}

.btn {
  background: #d4af37;
  color: #000;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  transition: 0.3s;
  font-weight: 600;
}

.btn:hover {
  background: #c8a500;
  color: #fff;
}

/* General sections */
section {
  padding: 4rem 2rem;
  scroll-margin-top: 70px;
}

.container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #d4af37;
}

/* Services */
.service-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.card {
  background: #222;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #333;
  width: 250px;
  transition: transform 0.3s, border-color 0.3s;
}

.card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.card h3 {
  color: #d4af37;
}

.card:hover {
  transform: translateY(-5px);
  border-color: #d4af37;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.6);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);  /* gold glow */
}

/* Contact form */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

form input,
form textarea {
  padding: 0.8rem;
  border: 1px solid #444;
  border-radius: 4px;
  background: #222;
  color: #ddd;
}

form button {
  background: #d4af37;
  color: #000;
  border: none;
  padding: 0.8rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

form button:hover {
  background: #c8a500;
  color: #fff;
}

/* Map */
.map iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 8px;
}

/* Footer */
footer {
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 1rem;
  border-top: 1px solid #333;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(0,0,0,0.95);
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

.social-buttons {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.insta-btn {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  font-weight: 500;
  transition: transform 0.3s, box-shadow 0.3s;
}

.insta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.whatsapp-btn {
  background: #25D366;
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  font-weight: 500;
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Packages section */
.package-menu {
  display: none;
  background: #f9f9f9;
  padding: 1rem;
  margin-top: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.card.active .package-menu {
  display: block;
}

.toggle-btn {
  background-color: #d4af37;
  color: white;
  border: none;
  padding: 8px 14px;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
}

.packages .card {
  background: #222;
  padding: 1.5rem;
  border-radius: 10px;
  width: 250px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
  border: 1px solid #333;
}

.packages .card.premium {
  border: 2px solid #d4af37;
}

.packages .card i {
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 0.5rem;
}

.packages .card h3 {
  color: #d4af37;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.packages .card p {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: #ddd;
}

.packages .card b {
  display: block;
  color: #fff;
  margin-bottom: 0.8rem;
}

.packages .card .btn {
  background: #d4af37;
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  transition: 0.3s;
}

.packages .card .btn:hover {
  background: #c8a500;
  color: #fff;
}

.packages .card:hover {
  transform: translateY(-5px);
  border-color: #d4af37;
}
