/* === Force Reset Margins/Padding === */
html, body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    overflow-x: hidden;
}

/* --- General Reset & Base Styles --- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #f1f1f1;
    font-weight: 400;
}

/* --- Color Palette Variables --- */
:root {
    --color-dark: #1a1a1a;
    --color-light: #f8f8f8;
    --color-red-accent: #c00;
    --color-gold-accent: #daa520;
    --color-text-dark: #222;
    --color-text-light: #ebebeb;
    --color-text-mid: #555;
}

/* --- Site Header Styles (Non-Sticky) --- */
.site-header {
    background-color: var(--color-dark);
    padding: 10px 0; /* Padding around logo */
    border-bottom: 3px solid var(--color-gold-accent);
    /* No sticky */
}

.site-header .header-content {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 2rem; /* Side padding */
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* No justify-content (logo left) */
}

#site-logo {
    height: 100px; /* Logo height */
    width: auto;
    display: block;
}


/* --- Typography --- */
h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 700; margin-bottom: 1rem; color: var(--color-text-dark); line-height: 1.3; }
h1 { font-size: 3.2rem; color: var(--color-light); text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); }
/* --- Reset H1 Top Margin Inside Hero --- */
.hero-section h1 {
    margin-top: 0; /* << REMOVED NEGATIVE MARGIN - Set to 0 */
    margin-bottom: 1.5rem;
}
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 2.5rem; position: relative; padding-bottom: 0.8rem; }
h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 70px; height: 4px; background-color: var(--color-gold-accent); }
h2.light-text { color: var(--color-light); }
h2.light-text::after { background-color: var(--color-gold-accent); }
h3 { font-size: 1.5rem; color: var(--color-dark); margin-bottom: 0.7rem; font-family: 'Roboto', sans-serif; font-weight: 700; }
p { margin-bottom: 1rem; color: var(--color-text-mid); font-size: 1rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.subtitle { font-size: 1.3rem; font-weight: 400; color: #ddd; max-width: 650px; margin: 0 auto 2rem auto; font-family: 'Roboto', sans-serif; }
p.light-text { color: var(--color-text-light); }
a { color: var(--color-red-accent); text-decoration: none; font-weight: 700; }
a:hover { text-decoration: underline; }

/* --- Layout Containers --- */
.content-wrapper { max-width: 1150px; margin: 0 auto; padding: 5rem 2rem; text-align: center; }
.content-section {}
.light-bg { background-color: var(--color-light); }
.dark-bg { background-color: var(--color-dark); color: var(--color-text-light); }

/* --- Hero Section Styling --- */
.hero-section {
    background-color: var(--color-dark);
    color: var(--color-text-light);
    margin-top: 0 !important;
    padding-top: 0 !important;
    position: relative;
    /* No overflow: hidden needed now */
}
.hero-section .subtitle {
    /* subtitle styles are okay */
}

/* --- Control Hero Spacing with Content Wrapper Padding --- */
/* This padding is the ONLY thing controlling space below the yellow line */
.hero-section .content-wrapper {
    padding-top: 1rem;  /* << CONTROLS SPACE (Try 0.5rem, 1rem, 1.5rem) */
    padding-bottom: 5rem;
    padding-left: 2rem;
    padding-right: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}


/* --- Parallax Sections (Only for Dividers) --- */
/* ... (Keep parallax styles) ... */
.parallax-section { min-height: 45vh; background-attachment: fixed; background-position: center center; background-repeat: no-repeat; background-size: cover; position: relative; display: flex; align-items: center; justify-content: center; }
.overlay { background-color: rgba(0, 0, 0, 0.75); position: absolute; top: 0; left: 0; right: 0; bottom: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem; text-align: center; }
.overlay.subtle { background-color: rgba(26, 26, 26, 0.8); }

/* --- Buttons - Red Theme --- */
/* ... (Keep button styles) ... */
.cta-button { display: inline-block; background-color: var(--color-red-accent); color: #fff; padding: 14px 30px; border-radius: 5px; text-decoration: none; font-weight: 700; font-family: 'Roboto', sans-serif; text-transform: uppercase; letter-spacing: 1px; transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease; border: none; cursor: pointer; font-size: 1rem; box-shadow: 0 4px 10px rgba(102, 0, 0, 0.3); }
.cta-button:hover { background-color: #a00; color: #fff; text-decoration: none; transform: translateY(-3px); box-shadow: 0 6px 15px rgba(102, 0, 0, 0.5); }
.cta-button.large { padding: 18px 40px; font-size: 1.15rem; }
.cta-button.small { padding: 8px 15px; font-size: 0.85rem; text-transform: none; letter-spacing: 0; box-shadow: 0 2px 5px rgba(102, 0, 0, 0.2); }


/* --- How It Works Section --- */
/* ... (Keep How It Works styles) ... */
#how-it-works .content-wrapper { padding-top: 5rem; padding-bottom: 5rem; }
.steps-container { display: flex; justify-content: space-around; gap: 2.5rem; margin-top: 3rem; flex-wrap: wrap; }
.step { flex-basis: calc(33.333% - 3rem); min-width: 260px; background-color: #fff; padding: 2.5rem 2rem; border-radius: 8px; border: 1px solid #eee; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.step:hover { transform: translateY(-6px); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); }
.step-icon { background-color: var(--color-red-accent); color: #fff; width: 55px; height: 55px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; font-weight: 700; margin: 0 auto 1.5rem auto; box-shadow: 0 3px 8px rgba(102, 0, 0, 0.4); }


/* --- Gallery Section --- */
/* ... (Keep Gallery styles) ... */
#gallery .content-wrapper { padding-top: 5rem; padding-bottom: 5rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.gallery-item { background-color: var(--color-light); border-radius: 8px; overflow: hidden; box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4); transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; border: 3px solid var(--color-gold-accent); }
.gallery-item:hover { transform: scale(1.03); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6); }
.gallery-item img { display: block; width: 100%; height: 320px; object-fit: cover; }
.gallery-item .caption { padding: 1rem; font-weight: 700; text-align: center; background-color: var(--color-dark); color: var(--color-gold-accent); font-size: 1rem; border-top: 3px solid var(--color-gold-accent); }
.gallery-item.placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; height: calc(320px + 58px); border: 3px dashed var(--color-gold-accent); background-color: rgba(255,255,255, 0.05); box-shadow: none; }
.gallery-item.placeholder:hover { transform: none; box-shadow: none; }
.gallery-item.placeholder p { color: var(--color-gold-accent); font-weight: bold; font-size: 1.4rem; margin-bottom: 1rem; font-family: 'Playfair Display', serif; }


/* --- CTA Section --- */
/* ... (Keep CTA styles) ... */
.cta-section { border-top: 5px solid var(--color-gold-accent); border-bottom: 5px solid var(--color-gold-accent); }
.cta-section .content-wrapper { padding-top: 5rem; padding-bottom: 5rem; }
.cta-section h2 { color: var(--color-dark); }
.cta-section h2::after { background-color: var(--color-red-accent); }
.cta-section p { color: var(--color-text-mid); max-width: 650px; }
.cta-section .cta-button.primary-action { margin-top: 2rem; }
.price-info { margin-top: 1.5rem; font-size: 1rem; font-weight: 700; color: var(--color-dark); }


/* --- Footer --- */
footer { color: var(--color-text-light); text-align: center; padding: 2.5rem 1rem; font-size: 0.9rem; background-color: var(--color-dark); }
footer p { color: #aaa; margin-bottom: 0; }
footer a { color: var(--color-gold-accent); }
footer a:hover { color: #fff; }

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    /* ... (Keep responsive adjustments) ... */
    .gallery-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
    .site-header .header-content { padding: 0 1rem; }
    .content-wrapper { padding: 5rem 1rem; }
    .hero-section .content-wrapper { padding-left: 1rem; padding-right: 1rem; }
}
@media (max-width: 768px) {
    /* ... (Keep responsive adjustments) ... */
    h1 { font-size: 2.5rem; }
    .hero-section h1 { margin-top: 0; } /* Ensure no negative margin */
    h2 { font-size: 2rem; }
    .subtitle { font-size: 1.1rem; }
    #site-logo { height: 100px; } /* Keep logo size consistent */
    .content-wrapper { padding: 4rem 1rem; }
    .hero-section .content-wrapper { padding-top: 1rem; padding-bottom: 4rem; } /* Adjust padding */
    .steps-container { flex-direction: column; align-items: center; gap: 2rem; }
    .step { flex-basis: 90%; max-width: 450px; }
    .gallery-item img { height: 280px; }
    .gallery-item.placeholder { height: calc(280px + 58px); }
}
@media (max-width: 480px) {
    /* ... (Keep responsive adjustments) ... */
    h1 { font-size: 2rem; }
    .hero-section h1 { margin-top: 0; } /* Ensure no negative margin */
    #site-logo { height: 100px; } /* Keep logo size consistent */
    .cta-button { padding: 12px 25px; font-size: 0.9rem; }
    .cta-button.large { padding: 15px 30px; font-size: 1rem; }
    .gallery-item img { height: 240px; }
    .gallery-item.placeholder { height: calc(240px + 58px); }
    .hero-section .content-wrapper { padding-top: 1rem; padding-bottom: 3rem; } /* Adjust padding */
}