:root {
  --color-primary: #f5a623;
  --color-dark: #2c3e50;
  --color-light: #ecf0f1;
  --color-text: #ffffff;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Source Sans Pro', sans-serif;
  --font-accent: 'Vollkorn', serif;
}

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

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--color-text);
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  min-height: 100vh;
  position: relative;
}

/* Navigation */
.navigation {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(44, 62, 80, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1.25rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  color: var(--color-text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover:after {
  transform: scaleX(1);
}

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

.nav-cta {
  background: transparent;
  border: 2px solid var(--color-primary);
  padding: 0.6rem 1.75rem;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.875rem;
}

.nav-cta:after {
  display: none;
}

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

.logo {
  text-decoration: none;
  color: var(--color-text);
  display: flex;
  align-items: center;
}

.logo h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-image: 
    linear-gradient(rgba(44, 62, 80, 0.8), rgba(52, 73, 94, 0.8)),
    url('/images/sky-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
  max-width: 1200px;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--color-text);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--color-light);
  margin-bottom: 3rem;
}

.hero-features span {
  position: relative;
  padding: 0 1rem;
}

.hero-features span:not(:last-child):after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 50%;
}

.hero-arrow {
  animation: bounce 2s infinite;
  color: var(--color-primary);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Sections */
.section {
  padding: 6rem 0;
  background: var(--color-light);
}

.section-alt {
  background: #f8f9fa;
}

.section-cta {
  background: linear-gradient(135deg, var(--color-dark) 0%, #34495e 100%);
  color: var(--color-text);
  padding: 8rem 0;
}

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

.section-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  max-width: 800px;
}

.section-text {
  flex: 1;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
  margin-bottom: 1.5rem;
}

.section p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #555;
}

.section strong {
  color: var(--color-dark);
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-dark);
  padding: 1rem 2.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(245, 166, 35, 0.3);
}

.btn-primary:hover {
  background: #f39c12;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.4);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  padding: 1rem 2.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

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

/* CTA Section */
.cta-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.cta-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.cta-content p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--color-light);
  margin: 2rem auto 3rem;
  max-width: 700px;
}

/* Footer */
footer {
  background: #1a1a1a;
  padding: 4rem 0 2rem;
  position: relative;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h4 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.footer-section p {
  color: var(--color-light);
  font-size: 0.975rem;
  line-height: 1.8;
}

.footer-section span {
  display: block;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: #999;
  font-size: 0.875rem;
}

.footer-bottom a {
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--color-primary);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: rgba(44, 62, 80, 0.95);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 10px;
  max-width: 400px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  display: none;
}

.cookie-consent.show {
  display: block;
}

.cookie-consent h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.cookie-consent p {
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  color: var(--color-light);
}

.btn-accept {
  background: var(--color-primary);
  color: var(--color-dark);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

/* Mobile Navigation Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--color-text);
  margin: 5px 0;
  transition: 0.3s;
}

/* Responsive */
@media (max-width: 1024px) {
  .nav-wrapper {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .nav-left, .nav-right {
    gap: 1.5rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .container {
    padding: 0 2rem;
  }
}

@media (max-width: 768px) {
  /* Mobile Navigation */
  .nav-toggle {
    display: block;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .nav-wrapper {
    position: relative;
  }
  
  .nav-left, .nav-right {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    flex-direction: column;
    padding: 2rem;
    margin-top: 1rem;
  }
  
  .nav-left.active, .nav-right.active {
    display: flex;
  }
  
  .logo {
    margin-right: auto;
  }
  
  /* Hero */
  .hero {
    min-height: 100vh;
    padding-top: 80px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-features span:not(:last-child):after {
    display: none;
  }
  
  /* Sections */
  .section {
    padding: 3rem 0;
  }
  
  .section h2 {
    font-size: 1.75rem;
  }
  
  .section p {
    font-size: 1rem;
  }
  
  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  /* Cookie Consent */
  .cookie-consent {
    right: 1rem;
    left: 1rem;
    max-width: none;
  }
}