:root {
  --bg: #FAFAF7;
  --green: #4A5D3A;
  --green-dark: #3A4A2D;
  --brown: #8B6F47;
  --text: #2E2E2A;
  --light-gray: #E8E8E3;
  --border: #D0CCC3;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 3px solid var(--green);
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.main-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--green);
  background-color: rgba(74, 93, 58, 0.1);
}

.nav-link.active {
  color: white;
  background-color: var(--green);
}

.nav-link span {
  display: inline;
}

/* RESPONSIVE NAV */
@media (max-width: 768px) {
  .site-header {
    padding: 1rem;
  }

  .logo {
    font-size: 1.5rem;
  }

  .main-nav {
    gap: 0.5rem;
  }

  .nav-link span {
    display: none;
  }

  .nav-link {
    padding: 0.5rem;
  }
}

/* MAIN */
main {
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 4rem 2rem;
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HOME SECTION */
.home-hero {
  padding: 0;
}

.hero-bg {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-content {
  text-align: center;
  color: white;
  z-index: 2;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-slogan {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.cta-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--brown);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--brown);
  cursor: pointer;
  font-size: 1rem;
}

.cta-btn:hover {
  background-color: transparent;
  color: white;
  transform: translateY(-2px);
}

/* QUICK LINKS */
.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 3rem 2rem;
  background-color: white;
}

.quick-link-card {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  padding: 2rem;
  border-radius: 10px;
  text-decoration: none;
  color: white;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.quick-link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(74, 93, 58, 0.3);
}

.quick-link-card i {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.quick-link-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.quick-link-card p {
  font-size: 0.9rem;
  opacity: 0.95;
}

/* INFO SECTION */
.info-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 3rem 2rem;
  background-color: var(--light-gray);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-item i {
  font-size: 2rem;
  color: var(--green);
  margin-top: 0.5rem;
}

.info-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--green);
}

.info-item p {
  font-size: 0.95rem;
  color: var(--text);
}

/* O NAMA */
#o-nama {
  text-align: center;
}

#o-nama h2 {
  font-size: 2.5rem;
  color: var(--green);
  margin-bottom: 1rem;
}

.intro-text {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--text);
  line-height: 1.8;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

.amenities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 2px solid var(--light-gray);
}

.amenity {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.amenity:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.amenity i {
  font-size: 2.5rem;
  color: var(--brown);
  margin-bottom: 1rem;
  display: block;
}

.amenity h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--green);
}

.amenity p {
  font-size: 0.9rem;
  color: #666;
}

/* MENI */
#meni h2 {
  font-size: 2.5rem;
  color: var(--green);
  margin-bottom: 1rem;
  text-align: center;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0 3rem;
  padding: 1.5rem;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tab-btn {
  padding: 0.7rem 1.2rem;
  border: 2px solid var(--light-gray);
  background-color: white;
  color: var(--text);
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.tab-btn:hover {
  border-color: var(--green);
  color: var(--green);
}

.tab-btn.active {
  background-color: var(--green);
  color: white;
  border-color: var(--green);
}

.tab-content {
  display: none;
  animation: fadeIn 0.4s ease-in;
}

.tab-content.active {
  display: block;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.menu-item {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--green);
  transition: all 0.3s ease;
}

.menu-item:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.item-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.item-price {
  font-size: 1.2rem;
  color: var(--brown);
  font-weight: 700;
}

/* PROSLAVE */
#proslave h2 {
  font-size: 2.5rem;
  color: var(--green);
  margin-bottom: 1rem;
  text-align: center;
}

.proslave-tabs {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0 3rem;
  flex-wrap: wrap;
}

.proslave-tab-btn {
  padding: 0.8rem 1.5rem;
  border: 2px solid var(--green);
  background-color: white;
  color: var(--green);
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.proslave-tab-btn:hover {
  background-color: rgba(74, 93, 58, 0.1);
}

.proslave-tab-btn.active {
  background-color: var(--green);
  color: white;
}

.proslave-content {
  display: none;
  animation: fadeIn 0.4s ease-in;
}

.proslave-content.active {
  display: block;
}

.proslave-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.proslave-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.proslave-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.proslave-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.proslave-card h3 {
  font-size: 1.4rem;
  color: var(--green);
  padding: 1.5rem 1.5rem 0.5rem;
}

.proslave-card .price {
  font-size: 1.8rem;
  color: var(--brown);
  font-weight: 700;
  padding: 0 1.5rem 1rem;
}

.proslave-card ul {
  list-style: none;
  padding: 0 1.5rem;
  margin-bottom: 1.5rem;
}

.proslave-card li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--text);
}

.proslave-card .cta-btn {
  display: block;
  width: calc(100% - 3rem);
  text-align: center;
  margin: 0 1.5rem 1.5rem;
  padding: 0.8rem;
}

/* MUZIKA */
#muzika h2 {
  font-size: 2.5rem;
  color: var(--green);
  margin-bottom: 1rem;
  text-align: center;
}

.upcoming-performances {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 3rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.upcoming-performances h3 {
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.performance-card {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 1.5rem;
  background-color: var(--light-gray);
  border-radius: 8px;
  border-left: 4px solid var(--brown);
}

.perf-date {
  text-align: center;
  min-width: 80px;
}

.perf-dan {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green);
}

.perf-datum {
  font-size: 0.9rem;
  color: #666;
}

.perf-info h4 {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.perf-info p {
  font-size: 0.95rem;
  margin: 0.3rem 0;
  color: var(--text);
}

.perf-info i {
  color: var(--brown);
  margin-right: 0.5rem;
}

.performance-card + .performance-card {
  margin-top: 1rem;
}

.music-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.music-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 280px;
}

.music-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.music-gallery-item:hover img {
  transform: scale(1.1);
}

.music-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.music-gallery-item:hover .music-gallery-overlay {
  opacity: 1;
}

.music-gallery-overlay i {
  font-size: 3rem;
  color: white;
}

/* FOOTER */
footer {
  background-color: var(--green);
  color: white;
  text-align: center;
  padding: 2rem;
  margin-top: 3rem;
  font-size: 0.95rem;
}

footer a {
  color: var(--brown);
  text-decoration: none;
  font-weight: 500;
}

footer a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section {
    padding: 2rem 1rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-bg {
    height: 300px;
  }

  .quick-links {
    grid-template-columns: 1fr;
  }

  .info-section {
    grid-template-columns: 1fr;
  }

  .menu-tabs {
    gap: 0.5rem;
  }

  .tab-btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .proslave-grid {
    grid-template-columns: 1fr;
  }

  .performance-card {
    flex-direction: column;
    gap: 1rem;
  }

  .perf-date {
    width: 100%;
  }

  #o-nama h2,
  #meni h2,
  #proslave h2,
  #muzika h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 0.8rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-slogan {
    font-size: 1rem;
  }

  .menu-items {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .amenities {
    grid-template-columns: 1fr;
  }
}