/* ====================================================
   Angel Daires - Main Stylesheet
   Section Annotations Added
==================================================== */

/* =============================
   Card Styling (Products, Team, Recipes)
============================= */
.product, .team-member {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(44,62,80,0.08);
    padding: 1.5rem;
    width: 250px;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.product:hover, .team-member:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(44,62,80,0.16);
}

/* =============================
   Recipes Page Styling
============================= */
.content {
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #fffbe6 0%, #e0f7fa 100%);
    min-height: 80vh;
}

.content h1 {
    font-family: 'Pacifico', cursive;
    color: #e74c3c;
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 8px rgba(231,76,60,0.08);
}

.recipe-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.recipe {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(44,62,80,0.08);
    padding: 2rem 1.5rem;
    width: 320px;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.recipe:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(44,62,80,0.16);
}
.recipe h3 {
    font-family: 'Pacifico', cursive;
    color: #2c3e50;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}
.recipe ul {
    margin-bottom: 1rem;
    padding-left: 1.2rem;
}
.recipe li {
    font-size: 1.08rem;
    margin-bottom: 0.5rem;
}
.recipe p {
    font-size: 1.08rem;
    color: #333;
    margin-bottom: 0.5rem;
}

/* =============================
   Banner Section Styling
============================= */
.banner-with-content {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    margin-bottom: 2rem;
    min-height: 400px;
}

.banner-with-content .banner-img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
    border-radius: 0px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.hero-on-banner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 700px;
    /*background: rgba(44, 62, 80, 0.6);*/
    /*padding: 2rem;*/
    /*border-radius: 16px;*/
    /*box-shadow: 0 2px 16px rgba(0,0,0,0.12);*/
}

.hero-on-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
/* Larger font for hero-on-banner paragraph */
.hero-on-banner p {
    font-size: 1.7rem;
    margin-bottom: 2rem;
}

/* =============================
   Banner Image Styling
============================= */
.banner {
    width: 100%;
    display: flex;
    justify-content: center;
    background: transparent;
    align-items: center;
    margin-bottom: 2rem;
}

.banner-img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

/* =============================
   CSS Reset & Base Styles
============================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =============================
   Body & Typography
============================= */
body {
    font-family: 'Quicksand', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* =============================
   Navigation Bar Styling
============================= */
.navbar {
    background-color: #2c3e50; /* Dark blue background */
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* =============================
   Logo Styling
============================= */
.logo {
    display: flex;
    align-items: center;
    /* Remove fixed positioning to allow flexbox layout */
    position: static;
    background: transparent;
}

/* =============================
   Sticky Navbar
============================= */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
}

/* =============================
   Logo Image Styling
============================= */
.logo-img {
    height: 40px;
    width: auto;
    margin-right: 0.5rem;
}

/* =============================
   Logo Text Styling
============================= */
.logo-text {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* =============================
   Navigation Links Styling
============================= */
.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
}

.nav-links a:hover {
    color: #e74c3c; /* Red hover effect */
}

.nav-toggle {
    display: none; /* Hidden by default, shown on mobile */
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* =============================
   Hero Section (Main Page)
============================= */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    background-color: transparent; /* Light gray background */
}

/* =============================
   Animated Title (Home Page)
============================= */
.animated-title {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    animation: fadeInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.96);
    }
    60% {
        opacity: 1;
        transform: translateY(-8px) scale(1.04);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Use Pacifico for main hero heading */
.hero h1, .hero-on-banner h1, .about h2, .services h2, .logo-text {
    font-family: 'Pacifico', cursive;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    background-color: #e74c3c; /* Red button */
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
}

.btn:hover {
    background-color: #c0392b; /* Darker red on hover */
}

/* =============================
   Content Section (Products & Team)
============================= */
.content {
    padding: 2rem;
    text-align: center;
}

.content h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.product-list, .team-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.product h3, .team-member h3 {
    margin-bottom: 0.5rem;
}

/* =============================
   Footer Styling
============================= */
footer {
    text-align: center;
    padding: 1rem;
    background-color: #2c3e50;
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* =============================
   Persistent Phone Button Styling
============================= */
.phone-btn {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    background: #e74c3c;
    color: white;
    font-size: 1.15rem;
    font-family: 'Quicksand', Arial, sans-serif;
    padding: 0.8rem 1.4rem;
    border-radius: 32px;
    box-shadow: 0 4px 24px rgba(44,62,80,0.12);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 999;
    transition: background 0.2s, box-shadow 0.2s;
}
.phone-btn:hover {
    background: #c0392b;
    box-shadow: 0 8px 32px rgba(44,62,80,0.18);
}

/* =============================
   About Section Styling
============================= */
.about {
    padding: 3rem 2rem;
    background-color: #ffffff; /* White background */
    text-align: center;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50; /* Matches navbar color */
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* =============================
   Services Section Styling
============================= */
.services {
    padding: 3rem 2rem;
    background-color: #f9f9f9; /* Light gray background, matches product/team cards */
    text-align: center;
}

.services h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.services p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    margin-bottom: 2rem; /* Added bottom margin */
}

/* =============================
   Mobile Responsiveness
============================= */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hidden by default on mobile */
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #2c3e50;
    }

    .nav-links.active {
        display: flex; /* Shown when toggled */
    }

    .nav-links li {
        margin: 1rem 0;
        text-align: center;
    }

    .nav-toggle {
        display: block; /* Show hamburger menu on mobile */
    }

    /* Adjust padding for mobile */
    .about, .services {
        padding: 2rem 1rem;
    }
}