/*
Theme Name: Family Provision Claims
Theme URI: http://example.com/familyprovision
Author: AI Assistant
Author URI: http://example.com
Description: A light, responsive WordPress theme tailored for will‑dispute and family‑provision claims.  It features a clean layout with strong calls to action, a hero banner and easy navigation.
Version: 1.0
License: MIT
License URI: https://opensource.org/licenses/MIT
Text Domain: familyprovision
*/

/* Base styles */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Open+Sans:wght@400;600&display=swap');

body {
  margin: 0;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

a {
  color: #0056b3;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  background-color: #ffffff;
  border-bottom: 1px solid #eaeaea;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2c3e50;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav li {
  margin-left: 20px;
}

nav a {
  font-size: 1rem;
  font-weight: 600;
}

.hero {
  background-image: url('assets/hero-bg.png');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

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

.hero .cta-button {
  background-color: #0056b3;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.hero .cta-button:hover {
  background-color: #003d80;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 40px auto;
}

footer {
  background-color: #f5f5f5;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #777;
}

/* Layout for two columns */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col {
  padding: 15px;
  flex: 1;
  min-width: 250px;
}

/* Styled callout section */
.callout {
  background-color: #f4f7fb;
  padding: 35px 30px;
  border-radius: 12px;
  margin-bottom: 35px;
}

.callout h2 {
  margin-top: 0;
}

.contact-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #0056b3;
  color: #fff;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.contact-button:hover {
  background-color: #003d80;
}

/* About section styling */
.about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.about-section img.about-photo {
  width: 180px;
  height: auto;
  border-radius: 8px;
  margin-right: 20px;
  margin-bottom: 20px;
}

.about-section .about-text {
  flex: 1;
  min-width: 250px;
}