/* ==========================
   Import Style Templates
========================== */

@import url('templates/header.css');
@import url('templates/footer.css');
@import url('templates/form.css');
@import url('templates/menu.css');
@import url('templates/profile.css');
@import url('templates/settings.css');
@import url('templates/recipe.css');
@import url('templates/dashboard.css');
@import url('templates/explore.css');
@import url('templates/monitor.css');
@import url('templates/wiki.css');

/* ==========================
   General Styles 
========================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

body {
    background: #f0f0f0;
    color: #333;
    margin: 0;
    padding-top: 100px;
}

/* ==========================
   Hero Section 
========================== */
.hero-section {
    background: linear-gradient(to right, #ffafcc, #ffc3a0);
    color: #fff;
    padding: 100px 20px;
    text-align: center;
    transition: background 0.3s ease;
}

.hero-section:hover {
    background: linear-gradient(to right, #ffc3a0, #ffafcc);
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px #555;
}

.hero-section p {
    font-family: "Just Another Hand", cursive;
    font-size: 40px;
    margin-bottom: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    background: #6c5b7b;
    color: #fff;
    padding: 12px 30px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s, transform 0.3s;
}

.btn:hover {
    background: #f4a261;
    transform: scale(1.05);
}

.less-hero {
    padding: 50px 0;
    /* Reduce padding */
    text-align: center;
    background-color: #f4a261;
}


/* ==========================
   Features Section 
========================== */

.just-another-hand-regular {
    font-family: "Just Another Hand", cursive;
    font-weight: 400;
    font-style: normal;
}

.features {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 60px 20px;
    background: #f0f0f0;
    flex-wrap: wrap;
}

.about-features {
    padding: 60px 20px;
    background: #f0f0f0;
}


.feature {
    flex: 1;
    margin: 15px;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    text-align: center;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-feature {
    width: 100%;
    margin: 20px 0;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    text-align: center;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature h2 {
    font-size: 1.8rem;
    color: #6c5b7b;
    margin-bottom: 15px;
}

.feature p {
    font-family: "Just Another Hand", cursive;
    font-size: 30px;
    color: #555;
}

.about-feature h2 {
    font-size: 1.8rem;
    color: #6c5b7b;
    margin-bottom: 15px;
}

.about-feature p {
    font-family: "Just Another Hand", cursive;
    font-size: 30px;
    color: #555;
}

/* ==========================
   Responsive Design 
========================== */
@media (max-width: 1100px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        flex-direction: column;
        padding: 0;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .features {
        flex-direction: column;
    }

    .feature {
        margin: 20px 10px;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
    }

    .feature h2 {
        font-size: 1.5rem;
    }

    .feature p {
        font-size: 0.9rem;
    }
}