/* Base Styles & Variables */
:root {
    --primary-red: #8B2635;
    --primary-dark: #661823;
    --navy-blue: #3E5A74;
    --cream-bg: #F4EEDF;
    --gold-accent: #C49F47;

    --text-dark: #3E3836;
    --text-light: #F4EEDF;
    --text-muted: #7A7265;

    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Lora', serif;

    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 15px rgba(0, 0, 0, 0.1);

    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream-bg);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E");
    color: var(--text-dark);
    line-height: 1.6;
    position: relative;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background-image: url('images/logo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
}

h1,
h2,
h3,
h4,
.logo-text {
    font-family: var(--font-heading);
    text-transform: uppercase;
    color: var(--navy-blue);
}

a {
    text-decoration: none;
    color: var(--primary-red);
    transition: var(--transition);
}

ul {
    list-style: none;
}

.text-center {
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

/* Navbar */
.navbar {
    background-color: var(--navy-blue);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    color: var(--text-light);
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--gold-accent);
}

/* Hero Section */
.hero-section {
    padding: 60px 0 100px;
    background: radial-gradient(circle, rgba(253, 251, 247, 1) 0%, rgba(235, 232, 224, 1) 100%);
    border-bottom: 5px solid var(--primary-red);
}

.logo-wrapper {
    margin-bottom: 40px;
}

.main-logo {
    max-width: 100%;
    height: auto;
    width: 600px;
    /* Adjust based on actual logo size */
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--primary-red);
}

.subtitle {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--navy-blue);
    margin-bottom: 20px;
}

.description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--text-muted);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    border: 2px solid transparent;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.2rem;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--text-light);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--navy-blue);
    border-color: var(--navy-blue);
}

.btn-secondary:hover {
    background-color: var(--navy-blue);
    color: var(--text-light);
}

/* Services */
.services-section {
    background-color: #ffffff;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--navy-blue);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--cream-bg);
    padding: 40px 20px;
    border-radius: 8px;
    border-top: 4px solid var(--navy-blue);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-red);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-red);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--navy-blue);
}

.highlight-card {
    background-color: var(--navy-blue);
    border-color: var(--gold-accent);
}

.highlight-card h3 {
    color: var(--text-light);
}

/* Phone CTA Section */
.cta-section {
    background-color: var(--navy-blue);
    color: var(--text-light);
}

.cta-section h2 {
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.phone-number-large {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold-accent);
    display: inline-block;
    border-bottom: 3px solid transparent;
}

.phone-number-large:hover {
    color: #fff;
    border-bottom-color: var(--gold-accent);
}

/* Footer */
.footer {
    background-color: #111;
    color: #aaa;
    padding: 60px 0 30px;
}

.footer h3 {
    color: var(--text-light);
    font-size: 2rem;
    margin-bottom: 5px;
}

.footer p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-links a {
    color: #ddd;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: var(--primary-red);
}

.copyright {
    font-size: 0.9rem;
    border-top: 1px solid #333;
    padding-top: 30px;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
        /* Hide on mobile for simplicity in this version */
    }

    .phone-number-large {
        font-size: 3rem;
    }
}