/*
Theme Name: Slip and Fall Lawyer Oakville
Description: A professional legal website theme for slip and fall lawyers in Oakville
Version: 1.0
Author: Your Name
*/

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 1.6;
    background-color: #000;
    color: #fff;
    min-height: 100vh;
}

/* Typography */
.heading-font {
	font-family: 'Poppins', sans-serif;
    /* font-family: 'Gantari', sans-serif; */
    font-weight: 800;
}

.body-font {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

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


.wp-block-group{
	max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;	
}

.wp-block-group p {
	margin-bottom: 16px;
}

/* Header */
.header {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(128, 128, 128, 0.5);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.header-text {
    flex: 1;
    font-size: 14px;
    color: #d1d5db;
}

h2.wp-block-heading {
	font-family: 'Poppins', sans-serif;
	color: #fcd34d;
	margin-top:28px;
	margin-bottom: 18px;
	line-height:1.1em;
	font-size: 1.9em;
}

h3.wp-block-heading {
	font-family: 'Poppins', sans-serif;
	color: #ffffff;
	margin-top:24px;
	margin-bottom: 12px;
	line-height:1.2em;
	font-size: 1.5em;
}

.header-button {
    background-color: #fbbf24;
    color: #000;
    padding: 8px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    transform: scale(1);
}

.header-button:hover {
    background-color: #fcd34d;
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://slipandfalllawyeroakville.ca/wp-content/uploads/2025/06/slipandfalllawyeroakville.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text-container {
    width: 50%;
    max-width: 500px;
    padding-left: 24px;
}

.hero-title {
    font-size: 48px;
    color: #fc4d76;
    line-height: .9;
    text-transform: uppercase;
text-shadow: 
0px 1px 4px rgba(233, 233, 233, 0.9),
1px 2px 4px rgba(233, 233, 233, 0.9),
1px 3px 4px rgba(233, 233, 233, 0.9),
2px 4px 4px rgba(233, 233, 233, 0.9),
3px 5px 4px rgba(11, 11, 11, 0.9),
3px 6px 4px rgba(11, 11, 11, 0.9);
    -webkit-text-stroke: 2px whitesmoke;
}

main {
background: repeating-conic-gradient(
  from 45deg at 15% 15%,
rgba(0, 0, 0, .4) 0deg 10deg,
rgba(88, 89, 89, .4) 10deg 20deg,
rgba(122, 122, 122, .4) 20deg 30deg,
rgba(96, 107, 115, .4) 30deg 40deg
)}


/* Organic Background */
.organic-background {
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,215,0,0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,215,0,0.02) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255,215,0,0.025) 0%, transparent 50%);
    position: relative;
}

.organic-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255,215,0,0.015) 2px,
            rgba(255,215,0,0.015) 4px
        );
    pointer-events: none;
}

/* Content Sections */
.content-section {
    padding: 32px 0;
    position: relative;
}

.section-title {
    font-size: 32px;
    color: #fff;
    margin-bottom: 24px;
    text-wrap: balance;
}

.section-content {
    font-size: 18px;
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: none;
}

.consultation-button {
    background-color: #fbbf24;
    color: #000;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transform: translateY(0) scale(1);
}

.consultation-button:hover {
    background-color: #fcd34d;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Footer */
.footer {
    width: 100%;
    background-color: rgba(31, 41, 55, 0.5);
    border-top: 1px solid rgba(128, 128, 128, 0.5);
    margin-top: 48px;
    backdrop-filter: blur(8px);
}

.footer-content {
    padding: 48px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.footer-section h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 24px;
}

.footer-address {
    color: #9ca3af;
    font-style: normal;
}

.footer-address p {
    margin-bottom: 4px;
}

.footer-disclaimer {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(128, 128, 128, 0.5);
    margin-top: 48px;
    padding-top: 24px;
    text-align: center;
}

.footer-copyright {
    font-size: 12px;
    color: #6b7280;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .header-text {
        font-size: 12px;
    }
    
    .hero {
        height: 320px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 64px;
    }
    
    .section-content {
        font-size: 16px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 256px;
		margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-text-container {
        width: 80%;
        padding-left: 16px;
    }
}

@media (min-width: 769px) {
    .header-text {
        font-size: 16px;
    }
    
    .hero {
        height: 480px;
		margin-bottom: 26px;
    }
    
    .hero-title {
        font-size: 64px;
    }
    
    .section-title {
        font-size: 48px;
    }
    
    .content-section {
        padding: 40px 0;
    }
}

@media (min-width: 1024px) {
    .hero {
        height: 500px;
		margin-bottom: 32px;
    }
    
    .hero-title {
        font-size: 80px;
    }
    
    .section-title {
        font-size: 56px;
    }
}
