/* Start of Landing Section */
.landing-section {
    position: relative;
    overflow: hidden;
    width: calc(100% - 40px);
    max-width: 1200px;
}

.landing-title-container {
    position: absolute;
    width: calc(100% - 40px);
    bottom: -100%;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    animation: slideUp 1s forwards;
    animation-delay: 0.1s;
}

@keyframes slideUp {
    to {
        bottom: 20px;
        /* adjust vertical position above image bottom */
    }
}

/* .landing-title-container {
    margin-bottom: 20px;
	display: flex;
	flex-direction: column;
	gap: 15px;
    margin-top: 20px;
} */
.landing-title {
    margin: 0;
    width: 600px;
}

.landing-description {
    color: rgb(212 212 212);
    font-size: 20px;
    margin: 0;
    margin-left: 5px;
    max-width: 500px;
}

.landing-image-container {
    height: 400px;
    width: 100%;
    background-color: #c2c2c2;
    border-radius: 20px;
    overflow: hidden;
}

.landing-image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
    pointer-events: none;
    border-radius: 0 0 20px 20px;
    /* match container rounding */
}

.landing-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thin-landing-section_border {
    border: none;
    width: 50%;
    height: 2px;
    background-color: #949494;
    max-width: 500px;
}

/* End of Landing Section */

/* ~~~~~~~~~~~~ */

/* Start of Latest Recipes */

.latest-recipes {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.latest-recipes.visible {
    opacity: 1;
    transform: translateY(0);
}

.latest-recipes {
    text-align: center;
    width: calc(100% - 40px);
    max-width: 1200px;
    text-align: left;
}

.latest-recipes-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.latest-recipes-title {
    margin: 0;
    color: #2c2c2c;
    font-size: 34px;
}

.all-recipes-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--main-accent-color);
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    height: 20px;
}

.all-recipes-link:hover {
    background-color: var(--main-accent-color-hover);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.all-recipes-link i {
    font-size: 1.1rem;
}


/* End of Latest Recipes */


.about-lara-section {
	padding: 20px;
	background: linear-gradient(135deg, #696969, #212121);
	display: flex;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	border-radius: 30px;
	margin-bottom: 20px;
	width: calc(100% - 80px);
	max-width: 800px;
}

.about-lara-content {
    max-width: 700px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeUp 1s forwards;
    animation-delay: 0.3s;
}

.about-lara-content h2 {
	font-size: 36px;
	margin-bottom: 20px;
	margin-top: 0;
	color: var(--main-content-background);
}

.about-lara-content p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--main-content-background);
    margin-bottom: 20px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.social-btn.instagram {
    background: #e4405f;
}

.social-btn.youtube {
    background: #ff0000;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

@media (max-width: 768px) {
    .landing-image-container {
        height: 250px;
    }

    .landing-title-container {
        margin-top: 15px;
    }

    .landing-title {
        width: 100%;
    }

    .landing-description {
        font-size: 17px;
    }

    .latest-recipes-title {
        font-size: 24px;
    }

    .all-recipes-link {
        padding: 5px 10px;
    }

    .landing-title-container {
        position: absolute;
        width: calc(100% - 20px);
        bottom: -100%;
        left: 10px;
    }

    @keyframes slideUp {
        to {
            bottom: 10px;
            /* adjust vertical position above image bottom */
        }
    }
}

@media (max-width: 500px) {
    .landing-description {
        font-size: 16px;
    }

    .landing-image-container {
        height: 220px;
    }
}