/**
 * Alexa Rossi Law - Application Stylesheet
 * Page-specific styles and section designs
 */

/* Hero Section */
.hero {
	background:  var(--color-primary-dark);
	color:       var(--color-neutral-light);
	padding:     6rem 1.5rem;
	text-align:  center;
	position:    relative;
	overflow:    hidden;
}

.hero::before {
	content:     '';
	position:    absolute;
	top:         0;
	left:        0;
	right:       0;
	bottom:      0;
	background:  linear-gradient(135deg, rgba(15, 77, 63, 0.95) 0%, rgba(123, 137, 111, 0.85) 100%);
	z-index:     1;
}

.hero-content {
	max-width:  var(--max-width);
	margin:     0 auto;
	position:   relative;
	z-index:    2;
}

.hero h2 {
	font-size:       1.75rem;
	color:           var(--color-accent);
	font-weight:     400;
	margin:          2rem 0 1rem;
	font-family:     var(--font-secondary);
	letter-spacing:  0;
}

.hero p {
	font-size:  1.125rem;
	max-width:  600px;
	margin:     0 auto 2.5rem;
	color:      var(--color-neutral-light);
	opacity:    0.95;
}

/* Services Section */
.services {
	background: var(--color-neutral-light);
}

.services h2 {
	text-align:  center;
	color:       var(--color-primary-dark);
}

/* Why Choose Section */
.why-choose {
	background: #ffffff;
}

.why-choose h2 {
	text-align:  center;
	color:       var(--color-primary-dark);
}

/* Contact Section */
.contact {
	background:  var(--color-primary-dark);
	color:       var(--color-neutral-light);
	border-top:  6px solid var(--color-primary-light);
}

.contact-content {
	text-align: center;
}

.contact h2 {
	color:   var(--color-accent);
	margin:  0 0 1rem;
}

.contact p {
	font-size:  1.125rem;
	margin:     0 0 2.5rem;
}

/* Footer Styles */
footer p {
	margin:     0;
	font-size:  0.875rem;
}

.footer-disclaimer {
	font-size:   0.75rem;
	line-height: 1.5;
	color:       rgba(99, 99, 99, 0.8);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	.hero {
		padding: 4rem 1.5rem;
	}
	
	.hero h2 {
		font-size: 1.25rem;
	}
	
	.hero p {
		font-size: 1rem;
	}
}