@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Open+Sans:wght@400;600&display=swap');

/* ===== Base Styles ===== */
body {
  font-family: 'Open Sans', sans-serif;
  background-color: #000;
  color: #f2f2f2;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: #f5b971;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #fff;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
}

/* ===== Hero Section ===== */
.hero {
  text-align: center;
  padding: 120px 20px 80px;
  background: linear-gradient(180deg, #000 0%, #1a1a1a 100%);
  animation: fadeIn 1.2s ease-in;
}

.hero .logo {
  width: 320px;
  max-width: 80%;
  height: auto;
  display: block;
  margin: 0 auto 25px;
  filter: drop-shadow(0px 0px 10px rgba(245, 185, 113, 0.3));
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8em;
  color: #f5b971;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.hero p {
  font-size: 1.1em;
  color: #ddd;
  margin-bottom: 25px;
}

.cta-btn {
  display: inline-block;
  background: #f5b971;
  color: #000;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #fff;
  color: #000;
  transform: scale(1.05);
}

/* ===== Sections ===== */
section {
  padding: 80px 20px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  animation: fadeUp 1.2s ease;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2em;
  color: #f5b971;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

p, li {
  font-size: 1.05em;
  color: #e0e0e0;
}

/* ===== Highlight Cards ===== */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 185, 113, 0.1);
  border-radius: 15px;
  padding: 25px 20px;
  transition: all 0.3s ease;
}

.card:hover {
  background: rgba(245, 185, 113, 0.1);
  transform: translateY(-8px);
}

.card h3 {
  font-family: 'Playfair Display', serif;
  color: #f5b971;
  margin-bottom: 10px;
}

/* ===== Lists ===== */
ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin: 12px 0;
  padding: 10px 15px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s;
}

ul li:hover {
  background: rgba(245, 185, 113, 0.1);
}

/* ===== Contact ===== */
.contact a {
  font-weight: 600;
}

.insta-btn {
  margin-top: 25px;
  background: linear-gradient(90deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}

.insta-btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* ===== Footer ===== */
footer {
  background: #111;
  color: #aaa;
  padding: 25px 15px;
  text-align: center;
  font-size: 0.9em;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== Animations ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hero {
    padding: 80px 15px 60px;
  }

  .hero .logo {
    width: 220px;
  }

  h1 {
    font-size: 2.2em;
  }

  section {
    padding: 60px 15px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 10px;
  }

  .hero .logo {
    width: 180px;
  }

  h2 {
    font-size: 1.5em;
  }

  p, li {
    font-size: 0.95em;
  }

  footer {
    font-s
