/* Main stylesheet for Prestige Pressure Washing website */

/* Variables */
:root {
    --primary-blue: #002D72;    /* Dark blue from logo */
    --secondary-blue: #1E73BE;  /* Medium blue */
    --primary-green: #32CD32;   /* Green from logo */
    --secondary-green: #28A428; /* Darker green for hover states */
    --text-dark: #333333;       /* Dark text color */
    --text-light: #FFFFFF;      /* Light text color */
    --background-light: #F5F7FA; /* Light background color */
    --background-dark: #E5E9F0;  /* Slightly darker background for contrast */
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--text-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-blue);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 15px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-blue);
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-green);
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--primary-blue);
    color: var(--text-light);
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--secondary-blue);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: var(--primary-green);
}

.btn-secondary:hover {
    background-color: var(--secondary-green);
}

/* Header */
header {
    padding: 20px 0;
    background-color: var(--text-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    max-width: 220px;
}

.header-contact {
    margin-left: 20px;
}

.header-contact p {
    margin-bottom: 5px;
    font-weight: 500;
}

.header-contact i {
    color: var(--primary-blue);
    margin-right: 8px;
}

/* Navigation */
nav {
    background-color: var(--primary-blue);
}

nav ul {
    display: flex;
    justify-content: center;
    padding: 15px 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: var(--text-light);
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    background-color: var(--primary-green);
    color: var(--text-light);
}

/* Page Header */
.page-header {
    background: linear-gradient(to right, var(--primary-blue), var(--secondary-blue));
    color: var(--text-light);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 45, 114, 0.8), rgba(30, 115, 190, 0.8)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Services Section */
.services {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: var(--background-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

/* About Preview */
.about-preview {
    padding: 80px 0;
    background-color: var(--background-light);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

/* Service Area Preview */
.service-area-preview {
    padding: 80px 0;
    text-align: center;
}

.area-list-preview {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 30px 0;
}

.area-list-preview span {
    background-color: var(--primary-blue);
    color: var(--text-light);
    padding: 8px 15px;
    border-radius: 20px;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(to right, var(--primary-blue), var(--secondary-blue));
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
}

.contact-cta h2 {
    margin-bottom: 20px;
}

.contact-cta p {
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Footer */
footer {
    background-color: var(--primary-blue);
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-section {
    width: 30%;
}

.footer-section h3 {
    color: var(--text-light);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-green);
}

.footer-section p {
    margin-bottom: 10px;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-light);
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Import responsive styles */
@import url('responsive.css');
