/* Vila Prestige - Demo2 Styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #D3C5B8;
  color: #2d2d2d;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(74, 14, 78, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 2px solid #F4D03F;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: 'Playfair Display', serif;
}

.logo-crown {
  font-size: 32px;
  color: #F4D03F;
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-text {
  color: #FFFFF0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.5px;
}

.logo-tagline {
  color: #F4D03F;
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'Montserrat', sans-serif;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-menu a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.nav-menu a:hover {
  color: #FFE066;
}

.nav-menu a.active {
  color: #F4D03F;
}

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-btn span {
  width: 25px;
  height: 2px;
  background: #F4D03F;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background: rgba(74, 14, 78, 0.98);
}

.mobile-menu a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: #FFE066;
}

.mobile-menu a.active {
  color: #F4D03F;
}

.mobile-menu.active {
  display: flex;
}

/* Section Styling */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: #4A0E4E;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.gold-divider {
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #F4D03F, transparent);
  margin: 20px auto;
}

/* Buttons */
.btn {
  padding: 15px 40px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  border: 2px solid transparent;
}

.btn-primary {
  background: #F4D03F;
  color: #4A0E4E;
  border-color: #F4D03F;
}

.btn-primary:hover {
  background: #4A0E4E;
  color: #F4D03F;
  border-color: #4A0E4E;
}

.btn-secondary {
  background: transparent;
  color: #FFFFF0;
  border-color: #FFFFF0;
}

.btn-secondary:hover {
  background: #FFFFF0;
  color: #4A0E4E;
}

/* Footer */
.footer {
  background: #4A0E4E;
  border-top: 2px solid #F4D03F;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col h4 {
  color: #F4D03F;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
}

.footer-col p {
  color: #FFFFF0;
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-col a {
  color: #FFFFF0;
  margin-bottom: 10px;
  text-decoration: none;
  display: block;
  font-size: 14px;
  line-height: 1.8;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #F4D03F;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.footer-logo .logo-text {
  font-size: 18px;
}

.footer-logo .logo-tagline {
  font-size: 9px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(244, 208, 63, 0.2);
  color: #FFFFF0;
  font-size: 14px;
}

.demo-notice {
  margin-top: 10px;
  font-size: 13px;
}

.demo-notice a {
  color: #F4D03F;
  text-decoration: underline;
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.fade-in-up {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 968px) {
  .nav-menu {
    display: none;
  }

  .menu-btn {
    display: flex;
  }

  .section-title {
    font-size: 36px;
  }
}

@media (max-width: 640px) {
  .section-title {
    font-size: 28px;
  }

  .btn {
    width: 100%;
    padding: 12px 20px;
    min-width: auto;
  }
}
