body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background-color: #121212;
  color: #f5f5f5;
  text-align: center;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  background: #111;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: top 0.4s ease;
}

.site-header.hidden {
  top: -100px;
}

.logo img {
  height: 50px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: #f5f5f5;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #00e676;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-left: 6rem;
}

.contact-info a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #ffd700;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  white-space: nowrap;
}

.contact-info a:hover {
  color: #00e676;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #f5f5f5;
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 2s ease-in-out, transform 5s ease-in-out;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  max-width: 90%;
  animation: fadeIn 2s ease-in-out;
}

h1 {
  font-size: 2.5rem;
  margin: 0.5rem 0;
}

p {
  color: #ccc;
  font-size: 1.2rem;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 2s forwards;
}

.fade-in-delay {
  opacity: 0;
  animation: fadeIn 2s forwards 1s;
}

.fade-in-delay2 {
  opacity: 0;
  animation: fadeIn 2s forwards 2s;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 2s forwards;
}

.fade-up-delay {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 2s forwards 0.5s;
}

.fade-up-delay2 {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 2s forwards 1s;
}

.fade-up-delay3 {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 2s forwards 1.5s;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.cta-buttons {
  margin-top: 1.5rem;
}

.contact-btn {
  display: inline-block;
  background: #00e676;
  color: black;
  padding: 0.8rem 1.6rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  margin: 0.5rem;
  transition: transform 0.3s, background 0.3s;
}

.contact-btn:hover {
  background: #00c853;
  transform: scale(1.05);
}

.contact-btn.secondary {
  background: #ffd700;
}

.contact-btn.secondary:hover {
  background: #e6c200;
}

.packages {
  padding: 6rem 1rem 3rem;
}

.packages h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  animation: fadeIn 2s ease-in-out;
}

.packages-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.package {
  background: #1e1e1e;
  padding: 1.5rem;
  flex: 1 1 250px;
  max-width: 280px;
  border-radius: 12px;
  border: 1px solid #333;
  transition: transform 0.3s, box-shadow 0.3s;
}

.package:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.package h3 {
  margin-top: 0;
  color: #ffd700;
}

.price {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.4rem;
  color: #00e676;
  font-weight: bold;
}

.gallery {
  padding: 3rem 1rem;
}

.gallery h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  animation: fadeIn 2s ease-in-out;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  grid-auto-flow: dense;
  align-items: stretch;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeIn 2s ease-in-out;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

footer {
  padding: 1rem;
  background: #111;
  border-top: 2px solid #333;
  font-size: 0.9rem;
  color: #777;
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 1rem;
  }
  nav ul.active {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
  .contact-info {
    display: none;
  }
  h1 { font-size: 2rem; }
  p { font-size: 1rem; }
  .hero-overlay { padding: 1.5rem; }
  .package { padding: 1.2rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.6rem; }
  p { font-size: 0.9rem; }
  .contact-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}

.contact-page {
  padding: 8rem 1rem 4rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact-page h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.8rem;
  border-radius: 8px;
  border: 1px solid #333;
  background: #1e1e1e;
  color: #f5f5f5;
  font-size: 1rem;
}

.contact-form button {
  background: #00e676;
  color: #111;
  font-weight: bold;
  padding: 0.8rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s, background 0.3s;
}

.contact-form button:hover {
  background: #00c853;
  transform: scale(1.05);
}
