/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #5d4e37;
    background-color: #f5f2ed;
}

/* Typography */
h2, h3 {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.3;
}

h2 {
    font-size: 2rem;
    color: #8b7355;
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    color: #a67c6d;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.subtitle {
    font-size: 1.3rem;
    color: #8b7355;
    font-style: italic;
}

.highlight {
    background-color: #f0e6dc;
    padding: 1rem;
    border-left: 4px solid #d4a574;
    margin: 1.5rem 0;
    font-weight: 500;
}

/* Navigation */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #8b7355 0%, #a67c6d 100%);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: #f0e6dc;
}

/* Main Content */
.main-content {
    margin-top: 80px;
    margin-bottom: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 3rem 0;
    min-height: auto;
    display: block;
}

.section-alt {
    background-color: #faf8f5;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.left-column,
.right-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.left-column .image-content img[src="helen.jpeg"] {
    max-height: 600px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.text-content {
    padding: 1rem;
}

.text-content.full-width {
    grid-column: 1 / -1;
}

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

.section-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #8b7355 0%, #a67c6d 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    box-shadow: 0 3px 15px rgba(139, 115, 85, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 115, 85, 0.3);
}

.cta-button:focus {
    outline: 2px solid #f0e6dc;
    outline-offset: 2px;
}

/* Lists */
.offer-list {
    list-style: none;
    padding: 0;
}

.offer-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    padding-left: 2rem;
}

.offer-list li:before {
    content: "•";
    color: #d4a574;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.offer-list li:last-child {
    border-bottom: none;
}

/* Contact Info */
.contact-info {
    background-color: #f0e6dc;
    padding: 2rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border-left: 4px solid #d4a574;
}

.contact-info p {
    margin: 0.5rem 0;
}

/* Links */
.links-section {
    margin-top: 3rem;
    text-align: center;
}

.links-list {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.links-list a {
    color: #8b7355;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border: 2px solid #8b7355;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.links-list a:hover {
    background-color: #8b7355;
    color: white;
}

/* Emergency Section */
.emergency-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.emergency-group {
    background-color: #fdf2f2;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #d4a574;
}

.emergency-group h3 {
    color: #d4a574;
    margin-bottom: 1rem;
}

.emergency-group a {
    color: #8b7355;
    text-decoration: none;
    font-weight: 500;
}

.emergency-group a:hover {
    text-decoration: underline;
}

/* Subsections */
.subsection {
    margin-bottom: 2.5rem;
}

.subsection:last-child {
    margin-bottom: 0;
}

/* Sticky Footer */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 1rem 2rem;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.footer-content p {
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        padding-top: env(safe-area-inset-top, 1rem);
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .image-content {
        order: -1;
    }
    
    h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .main-content {
        margin-top: 140px;
        margin-bottom: 120px;
        padding-top: env(safe-area-inset-top, 0);
    }
    
    .section {
        padding: 3rem 0;
        min-height: auto;
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
    }
    
    .left-column,
    .right-column {
        gap: 1.5rem;
    }
    
    .links-list {
        flex-direction: column;
        align-items: center;
    }
    
    .emergency-content {
        grid-template-columns: 1fr;
    }
    
    .sticky-footer {
        font-size: 0.8rem;
        padding: 0.8rem 1rem;
        padding-bottom: calc(0.8rem + env(safe-area-inset-bottom, 0));
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        font-size: 0.8rem;
        gap: 0.5rem;
    }
    
    .nav-menu a {
        padding: 0.3rem 0.5rem;
    }
    
    h2 {
        font-size: 1.3rem;
        margin-bottom: 1.8rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    .main-content {
        margin-top: 150px;
    }
    
    .section {
        padding: 2.5rem 0;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .emergency-group {
        padding: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus States */
.nav-menu a:focus,
.links-list a:focus {
    outline: 2px solid #f0e6dc;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .nav-header,
    .sticky-footer {
        display: none;
    }
    
    .main-content {
        margin: 0;
    }
    
    .section {
        min-height: auto;
        page-break-inside: avoid;
    }
}
