@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=DM+Sans:wght@300;400;500&family=Space+Mono:wght@400;700&display=swap');

:root {
  --jungle-green: #1A3C2E;
  --warm-sand: #F2E0C8;
  --terracotta: #C9622F;
  --turquoise: #00C9B1;
  --amber: #F5A623;
  --ivory: #FAF5EE;
  --dark: #0F1F17;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><defs><filter id="noise"><feTurbulence baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter></defs><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.03"/></svg>');
  pointer-events: none;
  z-index: 1000;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(250, 245, 238, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
}

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

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--jungle-green);
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  font-family: 'Space Mono', monospace;
  text-decoration: none;
  color: var(--jungle-green);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--turquoise);
}

.hero {
  height: 100vh;
  background: linear-gradient(rgba(26, 60, 46, 0.3), rgba(201, 98, 47, 0.2)), url('https://images.unsplash.com/photo-1506953823976-52e1fdc0149a?w=1800') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero-content h1 {
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: 0.9;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 20px rgba(0,0,0,0.3);
}

.hero-content .tagline {
  font-family: 'Space Mono', monospace;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--turquoise);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--amber);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.section {
  padding: 5rem 2rem;
}

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

.section-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--jungle-green);
}

.about {
  background: var(--ivory);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text {
  font-size: 1.2rem;
  line-height: 1.8;
}

.about-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.rooms-preview {
  background: var(--jungle-green);
  color: white;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.room-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.room-card:hover {
  transform: translateY(-10px);
}

.room-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.room-info {
  padding: 1.5rem;
}

.room-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.room-price {
  font-family: 'Space Mono', monospace;
  color: var(--turquoise);
  font-size: 1.2rem;
  font-weight: 700;
}

.cafe {
  background: var(--warm-sand);
}

.cafe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.experiences {
  background: var(--ivory);
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.exp-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.exp-card:hover {
  transform: translateY(-5px);
}

.exp-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.footer {
  background: var(--dark);
  color: white;
  text-align: center;
  padding: 3rem 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--warm-sand);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

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

.booking-form {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: 0 auto;
}

.confirmation {
  text-align: center;
  padding: 3rem;
  background: var(--ivory);
  border-radius: 20px;
  max-width: 600px;
  margin: 2rem auto;
}

.booking-id {
  font-family: 'Space Mono', monospace;
  font-size: 1.5rem;
  color: var(--turquoise);
  margin: 1rem 0;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  background: white;
  border-radius: 10px;
  overflow: hidden;
}

.admin-table th,
.admin-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--warm-sand);
}

.admin-table th {
  background: var(--jungle-green);
  color: white;
  font-family: 'Space Mono', monospace;
}

.login-form {
  max-width: 400px;
  margin: 5rem auto;
  padding: 3rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.error {
  color: var(--terracotta);
  text-align: center;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
  }
  
  .nav-links a {
    font-size: 0.8rem;
  }
  
  .about-grid,
  .cafe-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .rooms-grid {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: 3rem 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .booking-form {
    padding: 2rem;
    margin: 1rem;
  }
}
