@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

:root {
  /* Palette: #D35400, #FEFAE0, #A9B388, #2C3D4F */
  --primary-color: #D35400;
  --secondary-color: #E67E22;
  --accent-color: #A9B388;
  --light-color: #FEFAE0;
  --dark-color: #2C3D4F;
  --gradient-primary: linear-gradient(180deg, #D35400 0%, #E67E22 100%);
  --hover-color: #BA4A00;
  --background-color: #FFFDF5;
  --text-color: #4B5563;
  --border-color: rgba(211, 84, 0, 0.2);
  --divider-color: rgba(169, 179, 136, 0.3);
  --shadow-color: rgba(211, 84, 0, 0.1);
  --highlight-color: #F1C40F;
  
  --main-font: 'Playfair Display', serif;
  --alt-font: 'Lato', sans-serif;
}

body {
    font-family: var(--alt-font);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: var(--main-font);
}

/* Soft Neumorphism */
.soft-card {
    background: #FFFDF5;
    border-radius: 20px;
    box-shadow: 15px 15px 30px #ebe9dc, -15px -15px 30px #ffffff;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.8);
}

.action-btn {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(211, 84, 0, 0.2);
    transition: all 0.3s ease;
}
.action-btn:hover {
    background: var(--hover-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(211, 84, 0, 0.3);
}

/* Timeline */
.step-item {
    display: flex;
    margin-bottom: 2rem;
    align-items: flex-start;
}
.step-number {
    background: var(--accent-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    margin-right: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Mobile Menu */
#mobile-check { display: none; }
.nav-links {
    transition: transform 0.3s ease-in-out;
}
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--dark-color);
        flex-direction: column;
        align-items: center;
        transform: scaleY(0);
        transform-origin: top;
    }
    #mobile-check:checked ~ .nav-links {
        transform: scaleY(1);
    }
}