
body {
  font-family: 'Inter', 'Roboto', 'Segoe UI', sans-serif;
}

h1, h2, h3 {
  font-family: 'Montserrat', 'Arial', sans-serif;
}

.landing{
    width: 100%;
    min-height: 100vh;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--mainFontColour);
    background: linear-gradient(180deg, #000000 0%, #111111 100%);
    overflow: hidden;
}

.landing h1, .landing h2, .landing p {
    color: white !important; 
}

.coverLogo {
    display: inline-block;       
    background-color: white;     
    padding: 2px;           
    border-radius: 50%;          
    z-index: 2;
}

.coverLogo img {
    display: block;
    width: 100%; 
    height: 100%; 
}

.hero-text{
    color: #fff;
    text-align: center;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
    animation: fadeInUp 1.2s ease forwards;
}
.hero-text .accent,
.why-me-content .accent{
    color: #f18701;
}



.orange{
     color: #f18701;
}

.hero-lead{
    max-width: 600px;
    color: #e0e0e0;
    font-size: 1.25rem;
    animation: fadeInUp 1.5s ease forwards;
}

.hero-about{
    max-width: 600px;
    color: black;
    font-size: 1.25rem;
    animation: fadeInUp 1.5s ease forwards;
}


.hero-btn{
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    background-color: #f18701;
    color: #000;
    border: 3px solid black;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}
.hero-btn:hover{
    box-shadow: 0 0 20px #f18701;
    transform: translateY(-3px);
}

.currency{
    fill: #f0f0f0;
}

.feature-icon{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}
.feature-icon:hover{
    transform: translateY(-5px) scale(1.05);
}
.feature-icon svg{
    transition: transform 0.3s ease, fill 0.3s ease;
}
.feature-icon:hover svg{
    transform: rotate(5deg) scale(1.1);
    fill: #f18701;
}

@keyframes fadeInUp{
    0%{
        opacity: 0;
        transform: translateY(20px);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}

@media(max-width:768px){
    .hero-text{
        font-size: 2rem;
    }
    .hero-lead{
        font-size: 1rem;
    }
    .feature-icon svg, .feature-icon img{
        height: 100px !important;
    }
}

@keyframes float {
    0% { transform: translateY(0) translateX(0) rotate(0deg); }
    50% { transform: translateY(-20px) translateX(10px) rotate(180deg); }
    100% { transform: translateY(0) translateX(0) rotate(360deg); }
}

.landing {
    background: linear-gradient(270deg, #000000, #1a1a1a, #2e2e2e, #434343);
    background-size: 800% 800%;
    animation: gradientBG 30s ease infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.autoShow{
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 1.5s ease, transform 1.5s ease;
  will-change: opacity, transform;
}
.autoShow.visible{
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce){
  .autoShow{ transition: none; }
}

