/* css/style.css */

/* --- Variables & Basic Setup --- */
:root {
    /* THIS IS THE MOST IMPORTANT SECTION FOR COLORS */
    --primary-color: #A63D40; /* A warm, deep red */
    --secondary-color: #E9B872; /* A soft, elegant gold */
    --bg-color: #FDFCF7; /* A creamy off-white */
    --text-color: #333333; /* A dark, readable grey for text */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Lato', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* THIS RULE SETS THE DEFAULT COLORS FOR THE WHOLE PAGE */
body {
    font-family: var(--body-font);
    background-color: var(--bg-color); /* The light background */
    color: var(--text-color);          /* The dark text color */
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header & Navigation --- */
.site-header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin-left: 25px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 700;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* --- Buttons --- */
.button-primary {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.button-primary:hover {
    background-color: #8c3235; /* Darker red on hover */
    color: #fff;
}

/* --- Hero Section --- */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/kevin-and-marco-hero.jpg');
    background-size: cover;
    background-position: center;
    color: #fff; /* Text is white here, but it's okay because the background is dark */
    text-align: center;
    padding: 120px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-family: var(--heading-font);
    font-size: 4rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.5rem;
    max-width: 700px;
    margin-bottom: 30px;
}

.hero .button-primary {
    font-size: 1.2rem;
    padding: 15px 30px;
    background-color: var(--secondary-color);
    color: var(--text-color);
}
.hero .button-primary:hover {
    background-color: #d4a561;
}

/* --- Content Sections --- */
.content-section {
    padding: 80px 0;
}

.content-section h2 {
    font-family: var(--heading-font);
    font-size: 2.8rem;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
}

.about-us-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
    text-align: left;
}

.about-us-grid img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.about-us-grid p {
    margin-bottom: 15px;
}

/* --- Features Section --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}
.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.feature-card h3 {
    font-family: var(--heading-font);
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* --- CTA Section --- */
.cta-section {
    background-color: var(--primary-color);
    color: #fff; /* White text is okay here because of the red background */
    text-align: center;
}
.cta-section h2 {
    color: #fff;
}
.cta-section .button-primary {
     background-color: var(--secondary-color);
     color: var(--text-color);
     font-size: 1.1rem;
}
.cta-section .button-primary:hover {
    background-color: #d4a561;
}

/* --- Footer --- */
.site-footer {
    background-color: #333;
    color: #f4f4f4; /* Light text is okay here because of the dark background */
    text-align: center;
    padding: 30px 0;
}
.site-footer a {
    color: var(--secondary-color);
    text-decoration: none;
}
.site-footer a:hover {
    text-decoration: underline;
}

/* --- General Alert Boxes (Used for optional JS messages etc) --- */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}
.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.alert p {
    margin: 0;
    color: inherit;
}