/*
 * style.css
 * Static CSS for WallaceEdits.com clone
 */

/* 1. Global Reset & Typography */
:root {
    --primary-color: #333; /* Dark text */
    --secondary-color: #555; /* Less dark text */
    --accent-color: #D9534F; /* Red/Orange for CTAs (Common marketing color) */
    --light-bg: #f7f7f7; /* Light background for contrast sections */
    --max-width: 1000px;
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Open Sans', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--primary-color);
    background-color: white;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: var(--heading-font);
    margin-bottom: 0.5em;
    line-height: 1.2;
}

h2 { font-size: 2.5em; }
h3 { font-size: 1.8em; }

p {
    margin-bottom: 1em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: color 0.3s;
}

a:hover {
    color: #a33b37; /* Darker accent */
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.1s;
    text-align: center;
}

.primary-btn {
    background-color: var(--accent-color);
    color: white;
    border: 2px solid var(--accent-color);
}

.primary-btn:hover {
    background-color: #c94642;
    color: white;
    transform: translateY(-2px);
}

.secondary-btn {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.secondary-btn:hover {
    background-color: var(--accent-color);
    color: white;
}

/* 2. Header & Navigation */
header {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
    font-size: 1.5em;
    color: var(--primary-color);
}

header nav a {
    font-size: 1em;
    font-weight: 600;
    color: var(--secondary-color);
}

/* 3. Sections */
section {
    padding: 80px 0;
    text-align: center;
}

/* Hero Section */
.hero-section {
    background-color: var(--light-bg);
    padding-top: 50px;
    padding-bottom: 50px;
}

.hero-section .tagline {
    font-size: 1.2em;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.hero-section h2 {
    color: var(--accent-color);
}

.hero-section h3 {
    font-weight: 400;
    max-width: 700px;
    margin: 0.5em auto 2em;
}

.hero-section .cta-box {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    margin-bottom: 40px;
    display: inline-block;
    max-width: 600px;
}

.hero-section .cta-box p {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 20px;
}

.placeholder-image {
    width: 100%;
    max-width: 800px;
    height: 350px;
    background-color: #ddd;
    margin: 40px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-style: italic;
    border-radius: 8px;
}

/* Story Section */
.story-section {
    background-color: white;
}

.story-section ul {
    list-style-type: none;
    padding: 0;
    max-width: 600px;
    margin: 20px auto 0;
    text-align: left;
}

.story-section li {
    background-color: var(--light-bg);
    padding: 15px;
    margin-bottom: 10px;
    border-left: 5px solid var(--accent-color);
    border-radius: 4px;
    font-weight: 600;
}

/* Alert Bar */
.alert-bar {
    background-color: #f0ad4e; /* A strong yellow/orange for the alert */
    color: white;
    padding: 15px 0;
    font-size: 1.2em;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Video Section */
.video-section {
    background-color: var(--light-bg);
}

.video-placeholder {
    width: 100%;
    max-width: 650px;
    height: 365px; /* Standard 16:9 aspect ratio */
    background-color: #333;
    margin: 20px auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-style: italic;
    border-radius: 8px;
}

hr {
    border: 0;
    border-top: 1px solid #ddd;
    margin: 50px auto;
    width: 80%;
}

/* Zoom Call Section */
.zoom-call-section {
    background-color: white;
}

.zoom-call-section .btn {
    margin-top: 20px;
}

/* Consultation Section */
.consultation-section {
    background-color: var(--primary-color);
    color: white;
    padding: 50px 0;
}

.consultation-section h3 {
    color: white;
    margin-bottom: 30px;
}

.consultation-box {
    background-color: var(--accent-color);
    padding: 30px;
    border-radius: 8px;
    display: inline-block;
    max-width: 600px;
}

.consultation-box p {
    font-size: 1.1em;
    margin-bottom: 10px;
    font-weight: 600;
}

.consultation-box .name {
    font-size: 1.3em;
    font-family: var(--heading-font);
    font-weight: 700;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background-color: #222;
    color: #aaa;
    padding: 20px 0;
    font-size: 0.9em;
    text-align: center;
}