/*
Theme Name: Dream Renovation Theme
Theme URI: https://www.dreamrenovation.co.uk
Author: GS Renovation Ltd
Author URI: https://www.dreamrenovation.co.uk
Description: A premium WordPress theme for structural alterations and high‑end renovations in London.  Implements a luxury, modern design and optimised conversion features as recommended in the site audit.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dream-renovation
Tags: two-column, right-sidebar, custom-colors, custom-menu, featured-images
*/

/*--------------------------------------------------------------
  Base Styles
--------------------------------------------------------------*/

body {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    color: #333;
    background-color: #ffffff;
}

a {
    color: #0d3b66;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 0.5em;
    font-weight: 700;
    color: #0d3b66;
}

h1 {
    font-size: 2.25rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin: 0 0 1em;
    font-size: 1rem;
    color: #505050;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

.site-header .top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.site-header .top-bar .contact-info {
    display: flex;
    gap: 1.5rem;
}

.site-header .branding {
    display: flex;
    align-items: center;
    padding: 1rem 0;
}

.site-header .branding h1 {
    font-size: 2rem;
    margin: 0;
    color: #0d3b66;
}

.site-header nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 0.5rem 0;
}

.site-header nav a {
    font-weight: 600;
    color: #0d3b66;
    transition: color 0.2s ease;
}

.site-header nav a:hover,
.site-header nav a:focus {
    color: #e28a3f;
}

/* Hero Section */
.hero {
    background: url('images/hero.jpg') no-repeat center center / cover;
    color: #ffffff;
    text-align: center;
    padding: 120px 20px;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 59, 102, 0.7);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    color: #f5f5f5;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-primary {
    background-color: #e28a3f;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #c57335;
}

.btn-secondary {
    background-color: #0d3b66;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #092855;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.services .service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.services .card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    text-align: left;
}

.services .card h3 {
    margin-bottom: 0.5rem;
    color: #0d3b66;
}

.services .card p {
    color: #505050;
}

/* Process Section */
.process {
    padding: 80px 0;
    text-align: center;
}

.process .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process .step {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 2rem 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.process .step h4 {
    margin-bottom: 0.5rem;
    color: #0d3b66;
}

.process .step p {
    color: #505050;
}

/* Testimonials Section */
.testimonials {
    background-color: #f5f5f5;
    padding: 80px 0;
    text-align: center;
}

.testimonials .testimonial {
    max-width: 700px;
    margin: 0 auto 2rem;
}

.testimonials blockquote {
    font-style: italic;
    color: #505050;
    margin-bottom: 1rem;
}

.testimonials cite {
    font-weight: 600;
    color: #0d3b66;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-section form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.contact-section input,
.contact-section textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.contact-section button {
    background-color: #e28a3f;
    color: #ffffff;
    border: none;
    padding: 0.75rem;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.contact-section button:hover {
    background-color: #c57335;
}

/* Footer */
footer.site-footer {
    background-color: #0d3b66;
    color: #ffffff;
    padding: 2rem 0;
}

.site-footer .footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding-bottom: 2rem;
}

.site-footer h4 {
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.site-footer p,
.site-footer a {
    color: #dddddd;
    font-size: 0.9rem;
}

.site-footer a:hover {
    color: #ffffff;
}

.site-footer .bottom-bar {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    font-size: 0.8rem;
}