/* app/static/css/style.css */

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    /* Add more global styles if needed */
}

/* Hero Section Styles */
.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-background.jpg'); /* Overlay + Image */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: white;
    padding: 3rem 1rem; /* Adjust padding as needed */
    text-align: center;
    margin-bottom: 2rem; /* Space below hero */
    margin-top: -2rem;
}

.sarahs-sweets-hero-section {
    /* Show the cloud logo whole (contain, not cover) on its own sky blue,
       so nothing renders on top of the artwork. */
    background-image: url('../images/sarahs_sweets/main_logo.webp');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #BED4E8; /* sampled from the logo's own background */
    height: 26rem;
    text-align: center;
    margin-bottom: 2rem;
    /* Option C: the kicker sits above, so the hero no longer pulls itself
       up under the preceding paragraph (the old -2rem was what dragged the
       tagline on top of the logo in the first place). */
    margin-top: 0;
}

/* Tagline band: the jar-why line sits in its own cream ribbon below the
   hero instead of rendering on top of the logo. */
/* Option C kicker: no band, no border — the line reads as an eyebrow
   introducing the hero rather than a caption answering it. */
.sarahs-sweets-kicker {
    padding: 1.25rem 0 0.4rem;
}

.sarahs-sweets-tagline {
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-size: 1.15rem;
    color: #6B8E7C;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.sarah-personal-hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url('../images/sarah_and_link.webp'); /* Overlay + Image */
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    color: white;
    padding: 3rem 1rem; /* Adjust padding as needed */
    text-align: center;
    margin-bottom: 2rem; /* Space below hero */
    margin-top: -2rem;
}

.sarah-personal-hero-section .lead {
    font-size: 1.1rem;

    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 26rem;

    text-shadow:
        -1px -1px 0 black,
        1px -1px 0 black,
        -1px 1px 0 black,
        1px 1px 0 black;
}

.sarah-personal-hero-section .display-4 {
    font-size: 3.2rem;
    font-weight: bold;
    color: white;
    text-shadow:
        -2px -2px 0 black,
        2px -2px 0 black,
        -2px 2px 0 black,
        2px 2px 0 black;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7); /* Optional text shadow */
}

.hero-section .lead {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 20rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7); /* Optional text shadow */
}

.hero-section .btn-primary {
    font-size: 1.25rem;
    padding: 0.75rem 1.5rem;
}

/* Featured Photos Section */
.featured-photos {
    padding-top: 2rem;
    padding-bottom: 3rem;
    background-color: #f8f9fa; /* Light background for this section */
}

.featured-photos h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: bold;
}

.featured-photos .card {
    border: none; /* Remove card border if desired */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.featured-photos .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.featured-photos .card-img-top {
    width: 100%; /* Make images responsive within card */
    height: 200px; /* Fixed height for uniformity, adjust as needed */
    object-fit: cover; /* Crop images to fit, maintaining aspect ratio */
}

.featured-photos .card-body {
    text-align: center;
}

.project-of-the-month {
}

/* Navbar Enhancements */
.navbar-brand img {
    vertical-align: middle; /* Better alignment if text is next to logo */
}

.navbar .nav-item .nav-link {
    font-weight: 500; /* Slightly bolder nav links */
    transition: color 0.2s ease-in-out;
}



.navbar .nav-item .nav-link:hover,
.navbar .nav-item .nav-link.active {
    color: #adb5bd; /* Lighter color for hover/active on dark navbar */
}

#mainNavbar { // Or whatever ID you give your navbar in base.html
    transition: top 0.3s ease-in-out;
}

.dropdown-item:hover {
    background-color: #495057; /* Darker hover for dropdown items */
}

/* General body and footer */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure footer sticks to bottom */
}

main.container {
    flex: 1; /* Allows main content to grow and push footer down */
}

.home-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.footer {
    background-color: #343a40 !important; /* Dark footer to match navbar */
    color: #f8f9fa;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
.footer p {
    color: #ffffff; /* Brighter link color for dark footer */
}

/* Honeypot: parked offscreen (not display:none -- some bots skip
   display:none fields, and browsers won't autofill offscreen ones). */
.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
}