/*
 * Ready Divorce Service Custom Stylesheet
 * Filename: ready-divorce-style.css
 */

/* BASIC CSS RESET & FONTS */
:root {
    --primary-color: #0A3A5B; /* Deep Navy Blue for professional trust */
    --secondary-color: #F7C04A; /* Soft Gold for accents */
    --light-bg: #F9F9F9;
    --text-color: #333;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Roboto', sans-serif;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-color);
    background-color: white;
    overflow-x: hidden; 
}

/* --- NEW STYLE ADDED HERE --- */
/* Target general paragraph text (p) to increase size */
p {
    font-size: 1.1em; /* Increased paragraph text size */
    margin-bottom: 1.2em; /* Added margin for better vertical spacing between paragraphs */
}
/* --- END OF NEW STYLE ADDED --- */


/* UTILITIES */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.text-center { text-align: center; }
.btn {
    display: inline-block;
    padding: 12px 30px;
    margin-top: 15px;
    border-radius: 5px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s;
    cursor: pointer;
    border: none; 
}
.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
}
.btn-primary:hover {
    background-color: #E6B040;
    border-color: #E6B040;
}
.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    margin-left: 20px;
}
.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* HEADER & NAVIGATION */
header {
    background-color: var(--primary-color);
    padding: 15px 0; 
    position: sticky; 
    top: 0;
    z-index: 1000;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; 
}
.logo a {
    font-family: var(--font-serif);
    font-size: 1.8em;
    font-weight: 700;
    color: white;
    text-decoration: none;
    flex-grow: 1; 
}
.logo span {
    color: var(--secondary-color);
}

/* DESKTOP MENU */
.nav-links {
    display: flex;
    align-items: center;
}
.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 400;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: var(--secondary-color);
}

/* DROPDOWN MENU STYLES */
.dropdown {
    position: relative;
    display: none; 
}
.dropbtn {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 10px 15px;
    font-size: 1em;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 250px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1000;
    left: 0; 
    top: 100%;
}
.dropdown-content a {
    color: var(--primary-color);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #eee;
}
.dropdown-content a:hover {
    background-color: var(--light-bg);
}
.show {display: block;}

/* HERO SECTION */
.hero {
    background: linear-gradient(rgba(10, 58, 91, 0.85), rgba(10, 58, 91, 0.85)), url('placeholder-image-of-serene-desk-or-oklahoma-sky.jpg') center center / cover;
    color: white;
    padding: 100px 0;
    text-align: center;
}
.hero h1 {
    font-family: var(--font-serif);
    font-size: 3em;
    margin-bottom: 15px;
    line-height: 1.2;
}
.hero p {
    font-size: 1.3em; /* Overrides the generic p size for the hero section, keeping it larger */
    max-width: 800px;
    margin: 0 auto 30px;
}
.hero strong {
    color: var(--secondary-color);
}

/* SERVICE BENEFITS SECTION */
.benefits {
    padding: 60px 0;
    background-color: white;
    text-align: center;
}
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 20px; 
    margin-top: 40px;
}
.benefit-card {
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: left;
    transition: transform 0.3s;
    max-width: 600px; 
    margin: 0 auto;
}

/* KEY CONTENT SECTIONS */
.content-section {
    padding: 80px 0;
}
.content-section:nth-child(even) {
    background-color: var(--light-bg);
}

/* ELIGIBILITY & PRICING CONTAINER */
.eligibility-container {
    margin-top: 30px;
}
.pricing-card {
    background-color: white; 
    padding: 30px; 
    border-radius: 8px; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-top: 40px; 
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* TRUST & AUTHORITY SECTION */
.trust-section {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
}
.trust-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; 
    margin-top: 30px;
    gap: 20px;
}
.trust-item {
    text-align: center;
    flex-basis: 22%; 
    min-width: 200px;
}

/* FOOTER STYLES */
footer {
    background-color: #222;
    color: white;
    padding: 40px 0;
    font-size: 0.9em;
}
.footer-content {
    display: flex;
    justify-content: center; 
    text-align: center; 
}
.footer-info {
    text-align: center; 
}
.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.5em;
    color: white;
    margin-bottom: 10px;
}
.disclaimer {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #444;
    font-size: 0.8em;
}

/* MEDIA QUERIES */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .dropdown { display: block; }
    .dropdown-content {
        width: 100vw; 
        left: -20px; 
        min-width: auto;
    }
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .benefit-card {
        max-width: 100%;
    }
    .trust-grid {
        flex-direction: column;
    }
}
