@import url('https://fonts.googleapis.com/css2?family=Didot:wght@400&family=Parisienne:wght@400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --primary: #C6A96B;
  --dark: #0A0A0A;
  --light: #F8F6F2;
  --text: #2a2a2a;
  --border: #e8e3d8;
  --transition: 0.4s ease;
  --font-didot: 'Didot', serif;
  --font-parisienne: 'Parisienne', cursive;
  --font-montserrat: 'Montserrat', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-montserrat);
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  font-weight: 300;
  overflow: hidden;
}

body.age-verified {
  overflow: auto;
}

/* Age Gate */
#ageGate {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 0, 0, 0.95) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 9999999 !important;
  animation: fadeIn 0.6s ease !important;
}

.age-gate-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 0, 0, 0.95) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 9999999 !important;
  animation: fadeIn 0.6s ease !important;
}

.age-gate-modal {
  background: var(--light) !important;
  color: var(--dark) !important;
  padding: 80px 60px !important;
  border-radius: 0 !important;
  text-align: center !important;
  max-width: 550px !important;
  animation: slideUp 0.5s ease !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2) !important;
  position: relative !important;
  z-index: 10000000 !important;
}

.age-gate-modal h2 {
  font-family: var(--font-didot);
  font-size: 2.2rem;
  margin-bottom: 25px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
}

.age-gate-modal p {
  font-family: var(--font-parisienne);
  font-size: 1.3rem;
  line-height: 1.9;
  margin-bottom: 50px;
  color: var(--text);
  font-weight: 400;
}

.age-gate-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Blur body when age gate is active */
body.age-gate-active {
  filter: blur(5px);
  pointer-events: none;
}

body.age-gate-active > nav,
body.age-gate-active > section,
body.age-gate-active > footer {
  filter: blur(5px);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.3);
  backdrop-filter: blur(5px);
  z-index: 999;
  border-bottom: 1px solid rgba(198, 169, 107, 0.2);
  opacity: 0;
  animation: fadeIn 0.6s ease 0.3s forwards;
}

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

.nav-logo {
  font-family: var(--font-didot);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--primary);
  text-transform: uppercase;
}

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

.nav-link {
  text-decoration: none;
  color: var(--light);
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: color var(--transition);
  text-transform: uppercase;
}

.nav-link:hover {
  color: var(--primary);
}

/* Buttons */
.btn {
  padding: 12px 30px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all var(--transition);
  text-transform: uppercase;
  border-radius: 25px;
}

.btn-primary {
  background: var(--primary);
  color: var(--dark);
}

.btn-primary:hover {
  background: #f4d03f;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: var(--dark);
}

.btn-large {
  padding: 16px 50px;
  font-size: 1rem;
}

.btn-cta {
  background: var(--primary);
  color: var(--dark);
}

/* Hero Section */
.hero {
  margin-top: 0;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.2);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  animation: fadeIn 1s ease 0.5s forwards;
}

.hero-content h1 {
  font-family: var(--font-didot);
  font-size: 4rem;
  font-weight: 400;
  letter-spacing: 4px;
  margin-bottom: 20px;
  color: var(--primary);
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  text-transform: uppercase;
}

.hero-tagline {
  font-family: var(--font-parisienne);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 50px;
  opacity: 0.95;
}

.subtle-link {
  display: block;
  color: var(--primary);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-top: 30px;
  transition: opacity var(--transition);
}

.subtle-link:hover {
  opacity: 0.7;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Section Styles */
section {
  padding: 100px 0;
}

.section-title {
  font-family: var(--font-didot);
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  color: #666;
  font-weight: 300;
}

/* Feeling Section */
.feeling-section {
  background: var(--light);
  text-align: center;
}

/* Gallery Section */
.gallery-section {
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.gallery-item {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--light);
}

.gallery-item-large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Experiences Section */
.experiences-section {
  background: var(--light);
}

.experiences-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.experience-card {
  background: #fff;
  padding: 50px 40px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.experience-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.experience-card h3 {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.experience-card p {
  font-size: 0.95rem;
  color: #666;
  font-weight: 300;
}

/* About Section */
.about-section {
  background: #fff;
  text-align: center;
}

.about-text {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.8;
  color: #555;
  max-width: 800px;
  margin: 30px auto;
}

/* Availability Section */
.availability-section {
  background: var(--light);
  text-align: center;
  padding: 100px 0;
}

.availability-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.availability-map {
  flex: 0 0 300px;
}

.australia-map {
  width: 100%;
  height: auto;
  max-width: 300px;
}

.state {
  fill: var(--primary);
  stroke: var(--dark);
  stroke-width: 1.5;
  opacity: 0.7;
  cursor: pointer;
  transition: all 0.3s ease;
}

.state:hover {
  opacity: 1;
  filter: brightness(1.1);
}

.state.active {
  opacity: 1;
  fill: #C6A96B;
  filter: drop-shadow(0 0 8px rgba(198, 169, 107, 0.6));
}

.availability-info {
  text-align: left;
  flex: 1;
}

.availability-text {
  font-size: 1.1rem;
  margin: 15px 0;
  color: #666;
}

.availability-text.highlighted {
  font-family: var(--font-didot);
  font-size: 1.8rem;
  color: var(--primary);
  margin: 0 0 20px 0;
  font-weight: 400;
}

.scarcity {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 1px;
}

/* Request CTA Section */
.request-cta-section {
  background: #fff;
  text-align: center;
  border-top: 1px solid var(--border);
}

/* VIP Section */
.vip-section {
  background: var(--light);
  text-align: center;
}

.vip-benefits {
  list-style: none;
  font-size: 1rem;
  color: #555;
  margin: 40px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.vip-benefits li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: var(--light);
  padding: 60px 50px;
  max-width: 480px;
  position: relative;
  animation: slideUp 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.close {
  position: absolute;
  right: 30px;
  top: 30px;
  font-size: 32px;
  font-weight: 300;
  cursor: pointer;
  color: var(--primary);
  transition: color var(--transition);
  line-height: 1;
}

.close:hover {
  color: var(--dark);
}

.modal h2 {
  font-family: var(--font-didot);
  font-size: 2.2rem;
  margin-bottom: 40px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 400;
}

/* Form */
.request-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: var(--font-montserrat);
  font-weight: 500;
  margin-bottom: 12px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--dark);
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid rgba(198, 169, 107, 0.3);
  border-radius: 0;
  font-family: inherit;
  font-size: 0.95rem;
  background: transparent;
  color: var(--dark);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--primary);
  background: transparent;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
  color: rgba(10, 10, 10, 0.4);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-message {
  padding: 15px;
  margin-top: 20px;
  border-radius: 2px;
  text-align: center;
  font-weight: 600;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
}

/* Footer */
.footer {
  background: var(--dark);
  color: #fff;
  padding: 60px 0;
  border-top: 1px solid #333;
}

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

.footer-left p {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-left strong {
  letter-spacing: 1px;
}

.footer-right {
  text-align: right;
  font-size: 0.85rem;
}

.footer-right a {
  color: var(--primary);
  text-decoration: none;
  transition: opacity var(--transition);
}

.footer-right a:hover {
  opacity: 0.7;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fillMartini {
  0% {
    points: 50,95 50,95 50,95;
  }
  100% {
    points: 25,20 75,20 50,95;
  }
}

/* Champagne Glass Animation */
.champagne-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  gap: 30px;
}

.champagne-glass {
  width: 120px;
  height: 180px;
  filter: drop-shadow(0 4px 15px rgba(212, 175, 55, 0.3));
  animation: glassAppear 0.5s ease-out;
}

@keyframes glassAppear {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.champagne-fill {
  transition: fill 0.3s ease;
}

.bubble {
  animation: rise 2s ease-in infinite;
}

.bubble:nth-child(2) {
  animation-delay: 0.3s;
}

.bubble:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes rise {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-30px);
  }
}

.champagne-text {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-align: center;
  color: var(--primary);
  animation: fadeIn 0.5s ease-out;
}

.filling-text,
.approved-text {
  margin: 0;
  animation: fadeIn 0.6s ease-out;
}

.approved-text {
  font-size: 2rem;
  color: var(--primary);
  animation: approvedPulse 0.8s ease-out;
}

@keyframes approvedPulse {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .nav-menu {
    gap: 20px;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .experiences-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item-large {
    grid-column: span 1;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-right {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 15px 20px;
  }

  .nav-menu {
    flex-direction: column;
    gap: 10px;
  }

  .hero {
    margin-top: 0;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 20px;
  }

  .modal-content {
    margin: 20% auto;
    padding: 40px 25px;
    border-radius: 6px;
  }

  .modal h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .age-gate-modal {
    padding: 40px 20px;
  }

  .btn-large {
    width: 100%;
  }

  .availability-content {
    flex-direction: column;
    gap: 40px;
  }

  .availability-map {
    flex: 0 0 auto;
    max-width: 250px;
  }

  .availability-info {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .nav-logo {
    font-size: 0.9rem;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.2rem;
  }

  .age-gate-modal {
    padding: 30px 20px;
  }

  .age-gate-modal h2 {
    font-size: 1.5rem;
  }
}
