@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

:root {
  --primary-color: #EE7738; /* Orange Accent */
  --secondary-color: #34495D; /* Dark Slate Blue */
  --accent-color: #F59D2A;
  --light-color: #EAE4D5;
  --dark-color: #0F1021; /* Deep Dark */
  --gradient-primary: linear-gradient(135deg, #EE7738 0%, #F59D2A 100%);
  --hover-color: #D35400;
  --background-color: #1a1b2e;
  --text-color: #ECF0F1;
  --border-color: rgba(238, 119, 56, 0.3);
  --divider-color: rgba(255, 255, 255, 0.1);
  --shadow-color: rgba(0, 0, 0, 0.5);
  --highlight-color: #FFEBB0;
  --main-font: 'Playfair Display', serif;
  --alt-font: 'Lato', sans-serif;
}

body { font-family: var(--alt-font); color: var(--text-color); background: var(--background-color); }
h1, h2, h3 { font-family: var(--main-font); color: var(--highlight-color); }

.neu-dark {
    background: #1f2036;
    border-radius: 20px;
    box-shadow: 10px 10px 20px #0d0d1a, -5px -5px 15px #272842;
    border: 1px solid var(--border-color);
}

.hero { height: 65vh; display: flex; align-items: center; justify-content: center; text-align: center; }
section { padding: 10dvh 0; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Mobile Navigation */
#nav-check { display: none; }
.nav-btn { display: none; cursor: pointer; padding: 10px; color: white; }

@media (max-width: 768px) {
    .nav-btn { display: block; }
    nav { position: absolute; top: 70px; left: 0; width: 100%; background: var(--dark-color); display: none; }
    #nav-check:checked ~ nav { display: block; }
    .container { flex-direction: column; }
}