@font-face {
    font-family: 'Ramadhan'; 
    src: url('../font/RamadhanMubarok-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap; 
}

:root {
    /* Primary Color Palette */
    --hot-fuchsia: #F8004D;
    --wheat: #F3D8AF;
    --cotton-rose: #EBBDBF;
    --sunflower-gold: #E9B849;
    --espresso: #4A2114;
    --crimson-violet: #681B3A;
    --almond-cream: #F4E3D4;
    --carmine: #BA143A;
    --space-indigo: #1B1C4B;
    --toffee-brown: #915D3C;
}

.hero {
    height: 85vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #fff;
    padding: 0 20px;
}

.hero-content {
    max-width: 900px;
}

.hero-subtitle {
    display: block;
    font-family: 'Courier New', Courier, monospace; 
    color: var(--sunflower-gold); 
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-title {
    font-family: Ramadhan; 
    font-size: clamp(68px, 8vw, 400px); 
    font-weight: normal;
    color: var(--espresso);
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-description {
    font-family: sans-serif;
    font-size: 18px;
    color: var(--toffee-brown);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-principal {
    background: linear-gradient(135deg, var(--hot-fuchsia), var(--carmine));
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(248, 0, 77, 0.3);
}

.btn-secundario {
    color: var(--espresso);
    padding: 16px 30px;
    text-decoration: none;
    font-weight: 600;
    font-family: sans-serif;
    border: 2px solid var(--cotton-rose);
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secundario i {
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.btn-principal:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(248, 0, 77, 0.4);
    background: linear-gradient(135deg, #ff1a66, #d41f4e);
}

.btn-secundario:hover {
    background-color: var(--almond-cream);
    border-color: var(--crimson-violet);
    color: var(--crimson-violet);
}

.btn-secundario:hover i {
    transform: translate(3px, -3px);
}