:root {
  --gold: #d4af37;
  --dark: #0f0f0f;
  --green: #0b6b3a;
  --light: #f9f9f9;
  --font-main: 'Inter', sans-serif;
  --font-title: 'Playfair Display', serif;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--dark);
  color: #fff;
  scroll-behavior: smooth;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
header {
  background: #000;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 10px rgba(0,0,0,0.5);
}




/* Mobile Menu */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #000;
    text-align: center;
    padding: 20px 0;
  }

  nav a {
    display: block;
    margin: 12px 0;
    color: #fff;
  }

  nav.show {
    display: flex;
  }
}











.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
}

.logo-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #000;
  margin-right: 10px;
}

.brand .name {
  font-family: var(--font-title);
  font-size: 20px;
}

.brand .tag {
  font-size: 12px;
  color: #aaa;
}

nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--gold);
}

/* Hero */
.hero {
  background: url('images/home1.jpg') center/cover no-repeat;
  text-align: center;
  color: #fff;
  padding: 140px 20px;
}

.hero h1 {
  font-family: var(--font-title);
  font-size: 32px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 25px;
}

.btn {
  background: var(--gold);
  color: #000;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.btn:hover {
  background: #f1e08c;
}

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-family: var(--font-title);
  color: var(--gold);
  font-size: 28px;
}

.section-title p {
  color: #ccc;
}

/* Packages */
.packages {
  background: #fff;
  color: #000;
  padding: 60px 0;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.package-card {
  background: #f9f9f9;
  border-radius: 12px;
  text-align: center;
  padding: 25px 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.package-card:hover {
  transform: translateY(-5px);
}

.package-card h3 {
  color: var(--green);
}

.package-card h1 {
  font-size: 30px;
  color: #111;
}

.book-btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 10px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.book-btn:hover {
  background: #0d8047;
}

/* About */
.about-section {
  background: #fff;
  color: gold;
  padding: 60px 0;
}

.about-content p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 12px;
}

.about-content h3 {
  color: var(--green);
  margin-top: 20px;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}

.service-card {
  background: #111;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3 {
  color: var(--gold);
  margin: 15px;
}

.service-card ul {
  list-style: none;
  padding: 0 15px 20px;
  color: #ccc;
}

.service-card ul li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(255,255,255,0.2);
  padding: 4px 0;
}

/* Gallery */
.gallery-section {
  background: #111;
  padding: 60px 0;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Contact */
.contact-section {
  background: #fff;
  color: #000;
  padding: 60px 0;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.contact-info p {
  font-size: 16px;
  margin-bottom: 10px;
}

.contact-info i {
  color: var(--green);
  margin-right: 8px;
}

.map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 8px;
}

/* Floating Buttons */
.float-btn {
  position: fixed;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  z-index: 200;
  transition: transform 0.3s;
}

.float-btn i {
  font-size: 20px;
}

.float-call {
  left: 20px;
  background: #128C7E;
}

.float-wp {
  right: 20px;
  background: #25D366;
}

.float-btn:hover {
  transform: scale(1.1);
}

/* Footer */
footer {
  background: #000;
  color: #ccc;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
  .nav {
    flex-direction: column;
    text-align: center;
  }
  .hero {
    padding: 100px 20px;
  }
  .float-btn span {
    display: none;
  }
  .float-btn {
    width: 55px;
    height: 55px;
    justify-content: center;
    border-radius: 50%;
  }
}
