@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

:root {
  --primary-color: #EE7738; /* Coral from palette */
  --secondary-color: #2C3D4F; /* Navy from palette */
  --accent-color: #F59D2A; /* Orange */
  --light-color: #F2F2F2;
  --dark-color: #0F1021;
  --gradient-primary: linear-gradient(135deg, #EE7738 0%, #F59D2A 100%);
  --hover-color: #D35400;
  --background-color: #FFFFFF;
  --text-color: #2C3E50;
  --border-color: rgba(238, 119, 56, 0.2);
  --divider-color: rgba(44, 61, 79, 0.1);
  --shadow-color: rgba(44, 61, 79, 0.15);
  --highlight-color: #FFEB00;
  --main-font: 'Oswald', sans-serif;
  --alt-font: 'Lato', sans-serif;
}

body {
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Neuromorphism effects */
.nm-flat {
    background: #ffffff;
    box-shadow: 20px 20px 60px #d9d9d9, -20px -20px 60px #ffffff;
}

.nm-inset {
    background: #ffffff;
    box-shadow: inset 20px 20px 60px #d9d9d9, inset -20px -20px 60px #ffffff;
}

/* Transitions */
a, button {
    transition: all 0.3s ease;
}

/* Responsive Navigation without JS */
@media (max-width: 768px) {
    .navigation {
        display: none;
        background: var(--dark-color);
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 20px;
    }
}