/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #FAFAFA;
  color: #1A1A1A;
  line-height: 1.6;
}

/* ================= CONTAINER ================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= HEADINGS ================= */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

h1 {
  font-size: 56px;
  font-weight: 700;
}

h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
}

/* ================= BUTTONS ================= */
.btn-primary {
  display: inline-block;
  background: #C9A227;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #a8861d;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-secondary {
  display: inline-block;
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: #fff;
  color: #000;
}

/* ================= HEADER ================= */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(0,0,0,0.7);
  padding: 15px 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
}

.navbar a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  transition: 0.3s;
}

.navbar a:hover {
  color: #C9A227;
}

/* ================= HERO ================= */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeUp 1.5s ease;
}

.hero h1 {
  animation: slideUp 1.2s ease;
}

.hero p {
  margin: 15px 0;
  font-size: 18px;
}

/* ================= SECTIONS ================= */
.section {
  padding: 100px 0;
}

/* ================= FLEX ================= */
.flex {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 40px;
}

/* ================= ABOUT ================= */
.about-img img {
  width: 100%;
  border-radius: 12px;
  transition: 0.5s;
}

.about-img img:hover {
  transform: scale(1.05);
}

.about-content ul {
  margin-top: 15px;
}

.about-content li {
  margin-bottom: 8px;
}

/* ================= GRID ================= */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* ================= CARDS ================= */
.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* ================= PACKAGE ================= */
.package {
  text-align: center;
  padding: 20px;
}

.price {
  display: block;
  font-size: 22px;
  color: #2E7D32;
  margin: 10px 0;
  font-weight: bold;
}

/* ================= GALLERY ================= */
.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  transition: 0.4s;
}

.gallery-grid img:hover {
  transform: scale(1.08);
}

/* ================= VIDEO ================= */
.video-box video {
  width: 100%;
  border-radius: 12px;
}

/* ================= FEATURES ================= */
.feature {
  text-align: center;
  padding: 20px;
}

.feature h3 {
  margin-bottom: 10px;
}

/* ================= TESTIMONIALS ================= */
.testimonial {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.testimonial:hover {
  transform: scale(1.05);
}

/* ================= FORM ================= */
form {
  display: grid;
  gap: 15px;
}

form input,
form select {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  transition: 0.3s;
}

form input:focus,
form select:focus {
  border-color: #2E7D32;
  outline: none;
  box-shadow: 0 0 8px rgba(46,125,50,0.3);
}

/* ================= FAQ ================= */
.faq-item {
  background: #fff;
  margin-bottom: 10px;
  padding: 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.faq-item:hover {
  background: #f0f0f0;
}

/* ================= CONTACT ================= */
.contact-content p {
  margin-bottom: 10px;
}

/* ================= CTA ================= */
.cta {
  background: linear-gradient(45deg, #1B5E20, #2E7D32);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.cta h2 {
  margin-bottom: 20px;
}

/* ================= FOOTER ================= */
.footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 30px 0;
}

.footer a {
  color: #ccc;
  margin: 0 10px;
  text-decoration: none;
}

.footer a:hover {
  color: #C9A227;
}

/* ================= ANIMATIONS ================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  h1 {
    font-size: 42px;
  }
}

@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .flex {
    flex-direction: column;
  }

  h1 {
    font-size: 32px;
  }

  .navbar {
    display: none;
  }
}

*{margin:0;padding:0;box-sizing:border-box;font-family:Poppins}

body{background:#fafafa}

.container{width:90%;margin:auto}

.header{
position:fixed;width:100%;
background:#000;color:#fff;padding:15px 0;
}

.header .container{
display:flex;justify-content:space-between;align-items:center;
}

nav a{color:#fff;margin:0 10px;text-decoration:none}

.btn{
background:#C9A227;color:#fff;padding:10px 20px;
border-radius:25px;text-decoration:none;
}

.hero{
height:100vh;position:relative;
}

.hero-img{
width:100%;height:100%;object-fit:cover;
}

.hero-text{
position:absolute;top:50%;left:50%;
transform:translate(-50%,-50%);
color:#fff;text-align:center;
}

.section{padding:80px 0}

.flex{display:flex;gap:20px}

.grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.card{
background:#fff;padding:15px;border-radius:10px;
text-align:center;
}

.gallery img{width:100%}

form{
display:flex;flex-direction:column;gap:10px;
}

footer{
background:#111;color:#fff;text-align:center;padding:20px;
}

/* Responsive */
@media(max-width:768px){
.grid{grid-template-columns:1fr}
.flex{flex-direction:column}
}
