@font-face {
    font-family: Nunito;
    src: url(../assets/fonts/Nunito.ttf);
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #42ad96;
    --accent-hover: #337a6b;
    --bg-light: #e9edf0;
    --bg-color: linear-gradient(135deg, #e0f7fa 0%, #ffffff 100%);
    --text-dark: #333;
    --text-muted: #666;
    --shadow-card: 0 10px 20px rgba(0, 0, 0, 0.08);
    --font-heading: Nunito;
    --font-body: Nunito;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

header {
    display: flex;
    background-color: #e0f7fa;
    justify-content: space-between;
    border-bottom: 2px solid rgb(44, 62, 80);
}

#header-image {
    filter: hue-rotate(335deg);
    margin-bottom: auto;
}

.landing-wrapper {
    font-family: var(--font-body);
    color: var(--text-dark);
    overflow-x: hidden;
}


.hero {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    padding: 6rem 2rem 4rem;
    background: var(--bg-color);
    min-height: 90vh;
    position: relative;
}

@media (min-width: 992px) {
    .hero {
        flex-direction: row;
        justify-content: space-between;
        padding: 6rem 8rem;
    }
}

.hero-text {
    flex: 1;
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

@media (min-width: 992px) {
    .hero-text {
        text-align: left;
        padding-right: 4rem;
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
    .hero-subtitle {
        margin-left: 0;
    }
}


.cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 576px) {
    .cta-group {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 992px) {
    .cta-group {
        justify-content: flex-start;
    }
}

.btn-landing {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
    cursor: pointer;
}

.btn-primary-landing {
    background-color: var(--accent-color);
    color: white;
    box-shadow: 0 4px 15px rgba(54, 153, 95, 0.4);
    border: 2px solid transparent;
}

.btn-primary-landing:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.5);
}

.btn-secondary-landing {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary-landing:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.2);
}

.hero-image-container {
    flex: 1;
    width: 100%;
    max-width: 650px;
    margin-bottom: 3rem;
    position: relative;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

@media (min-width: 992px) {
    .hero-image-container {
        margin-bottom: 0;
    }
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    animation: float 6s ease-in-out infinite;
}


.features {
    padding: 6rem 2rem;
    background-color: white;
    text-align: center;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #eee;
    opacity: 0;
    transform: translateY(30px);
}


.feature-card.visible {
    animation: fadeInUp 0.8s ease-out forwards;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
    border-color: transparent;
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background-color: var(--accent-color);
}

.feature-icon {
    font-size: 2rem;
    color: var(--accent-color);
    transition: color 0.3s;
}

.feature-card:hover .feature-icon {
    color: white;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-desc {
    color: var(--text-muted);
    line-height: 1.6;
}


.info-section {
    padding: 6rem 2rem;
    background-color: #f0f8ff;
    text-align: center;
    position: relative;
    overflow: hidden;
}


.info-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(39, 174, 96, 0.05);
    border-radius: 50%;
}

.info-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.info-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--secondary-color);
    margin-bottom: 2.5rem;
    font-weight: 300;
}