:root {
  /* Colors */
  --bg-primary: #f7f8fc;
  --bg-secondary: #ffffff;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  
  /* Gradients */
  --grad-nordic-aurora: linear-gradient(135deg, #2f80ed, #27ae60);
  --grad-sunset-sand: linear-gradient(135deg, #ff7a18, #f2c94c);
  --grad-lavender-blue: linear-gradient(135deg, #8e7dff, #2f80ed);
  
  /* UI Elements */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 50px;
  
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 15px 40px rgba(47, 128, 237, 0.15);
  
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: 1px solid rgba(255, 255, 255, 0.4);
  
  /* Spacing */
  --space-mobile: 50px;
  --space-tablet: 70px;
  --space-desktop: 90px;
  
  /* Layout */
  --max-width: 1350px;
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-primary);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }

p { margin-bottom: 1rem; color: var(--text-secondary); }

.gradient-text {
  background: var(--grad-nordic-aurora);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Layout Utilities */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--space-desktop) 0;
  position: relative;
}

.grid {
  display: grid;
  gap: 2rem;
}

.flex {
  display: flex;
  align-items: center;
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: var(--glass-border);
  padding: 1rem 0;
  box-shadow: var(--shadow-soft);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -1px;
}

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

.nav-links a {
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-nordic-aurora);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--grad-nordic-aurora);
  color: white;
  box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
}

.btn-secondary {
  background: var(--bg-secondary);
  color: var(--text-primary);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

/* Hero Section */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-visuals {
  position: relative;
  height: 600px;
}

.hero-img-main {
  width: 80%;
  height: 80%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  position: absolute;
  right: 0;
  top: 10%;
  z-index: 2;
}

.hero-img-secondary {
  width: 50%;
  height: 50%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  box-shadow: var(--shadow-hover);
  border: 4px solid var(--bg-secondary);
}

/* Floating Shapes */
.blob {
  position: absolute;
  filter: blur(60px);
  z-index: 0;
  opacity: 0.5;
  border-radius: 50%;
  animation: float 10s infinite alternate;
}

.blob-1 {
  background: var(--grad-lavender-blue);
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
}

.blob-2 {
  background: var(--grad-sunset-sand);
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: 40%;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -50px) scale(1.1); }
}

/* Cards */
.glass-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: var(--glass-border);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-nordic-aurora);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.glass-card:hover::before {
  transform: scaleX(1);
}

.card-img-wrapper {
  overflow: hidden;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  position: relative;
  height: 250px;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.glass-card:hover .card-img-wrapper img {
  transform: scale(1.08);
}

.balcony-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-primary);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.amenity-tag {
  font-size: 0.75rem;
  background: var(--bg-primary);
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-weight: 500;
}

/* Featured Grid */
.stays-grid {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

/* Horizontal Scroll Experiences */
.experiences-scroll {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 1rem 0 2rem 0;
  scrollbar-width: none; /* Firefox */
}
.experiences-scroll::-webkit-scrollbar {
  display: none;
}

.experience-card {
  min-width: 300px;
  height: 400px;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}

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

.experience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: white;
}

.experience-overlay h3 {
  color: white;
  margin-bottom: 0.5rem;
}

/* Split Layout Discover */
.split-layout {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 4rem;
  box-shadow: var(--shadow-soft);
}

.split-img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hover);
}

/* Contact Section */
.contact-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: var(--glass-border);
  box-shadow: var(--shadow-soft);
}

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

.form-control {
  width: 100%;
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0,0,0,0.1);
  background: var(--bg-secondary);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #2f80ed;
  box-shadow: 0 0 0 4px rgba(47, 128, 237, 0.1);
}

/* Footer */
footer {
  background: var(--bg-secondary);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(0,0,0,0.05);
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a:hover {
  color: #2f80ed;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.05);
  color: var(--text-secondary);
}

/* Animations */
.fade-in {
  animation: fadeIn 1s ease forwards;
}

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

/* Standard Pages Background */
.page-header {
  padding: 6rem 0 4rem;
  text-align: center;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid, .split-layout {
    grid-template-columns: 1fr;
  }
  
  .hero-visuals {
    height: 400px;
  }
  
  .split-layout {
    padding: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: var(--space-mobile) 0;
  }
}