/* ================================
   GLOBAL STYLES
================================ */
body {
    background: #e3e3e3;
    font-family: Inter, sans-serif;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.heinz-wrapper {
    max-width: 420px;
    background: white;
    min-height: 100vh;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
    border-radius: 20px;  /* Rounded corners for floating card */
    overflow: hidden;
}

/* ================================
   HERO / H1 HEADINGS
   Font: Oswald (Industrial / Modern)
================================ */
.heinz-hero h1 {
    font-family: 'Oswald', sans-serif; /* Oswald for strong hero headings */
    font-weight: 700;                  /* bold and impactful */
    font-size: 32px;                   /* adjust as needed for mobile/desktop */
    line-height: 1.2;
    text-align: center;
    margin: 0 0 12px 0;
    letter-spacing: 1px;               /* optional, subtle spacing for industrial look */
    color: white;                       /* keeps contrast on hero background */
}

/* ================================
   HEADER
================================ */
.heinz-header {
    position: sticky;
    top: 0;
    background: white;
    border-bottom: 1px solid #eee;
    height: 60px;
    z-index: 10;
}

.heinz-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    height: 60px;
}

.heinz-logo {
    font-weight: 700;
    font-size: 18px;
}

.heinz-header-icons a {
    font-size: 22px;
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ================================
   HERO SECTION
================================ */
.heinz-hero {
    position: relative;
    background: #2a7f65; /* Softer green accent */
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px; /* extra padding so header doesn't overlap */
}

.heinz-hero-overlay {
    display: none; /* not needed with solid background */
}

.heinz-hero-content h1 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin: 0 0 12px 0;
}

.hero-sub {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin: 0 0 8px 0;
}

.hero-text {
    color: white;
    font-weight: 400;
    margin-bottom: 20px;
}

/* ================================
   BUTTONS (REDONE)
================================ */
.btn-primary {
    background-color: #1F7F66;   /* softer green */
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 24px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;       /* allows centering */
    text-align: center;
    width: auto;                 /* auto width instead of 100% */
    min-width: 200px;            /* prevents tiny buttons on mobile */
    max-width: 100%;             /* never overflow wrapper */
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #17614f;   /* slightly darker on hover */
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #1F7F66;
    color: #1F7F66;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 24px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    width: auto;
    min-width: 200px;
    max-width: 100%;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.btn-secondary:hover {
    background-color: #1F7F66;
    color: #ffffff;
    transform: translateY(-1px);
}

/* Center buttons inside container */
.heinz-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;   /* ensures buttons are centered horizontally */
    margin-top: 20px;
}

/* ================================
   SECTIONS
================================ */
.heinz-section {
    padding: 60px 24px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.heinz-section.visible {
    opacity: 1;
    transform: none;
}

.grey {
    background: #F7F7F7;
}

h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

h3 {
    font-weight: 600;
    margin: 12px 0;
}

p {
    color: #555555;
    font-weight: 400;
    line-height: 1.5;
}

/* ================================
   CARD / IMAGE STYLING
================================ */
.heinz-card {
    background: white;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 20px;
    margin-bottom: 20px;
}

.heinz-card img,
.heinz-image {
    width: 100%;
    height: auto; /* dynamically scale images */
    max-width: 100%;
    border-radius: 12px;
    margin-top: 20px;
}

/* Checklist */
.heinz-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.heinz-checklist li {
    margin: 12px 0;
}

.heinz-gallery img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

/* ================================
   FORM
================================ */
.heinz-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.heinz-form input,
.heinz-form textarea {
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    width: 100%;
    box-sizing: border-box;
}

/* ================================
   FOOTER TEXT SPECIFIC
================================ */
.heinz-footer {
    background: #1F5F4A;  /* dark green background */
    text-align: center;
    padding: 40px 20px;
    border-radius: 0 0 20px 20px; /* optional, matches floating card */
}

.heinz-footer-text {
    color: #dce4e1;  /* lighter, readable text */
    margin: 4px 0;
    font-weight: 400;
}

.heinz-footer-text a {
    color: #cde1df;   /* lighter link color */
    text-decoration: none;
}
/* ================================
   FLOATING WHATSAPP BUTTON
================================ */
.heinz-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ================================
   GALLERY (FLEXBOX VERSION)
================================ */
.heinz-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.heinz-gallery img {
    width: calc(50% - 5px); /* 2 per row with 10px gap */
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 10px;
}

/* Stack images on small screens */
@media (max-width: 480px) {
    .heinz-gallery img {
        width: 100%; /* full width */
        margin-bottom: 12px;
    }
}