* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
    background-color: #111;
    color: white;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Arial Black', 'Arial Bold', Gadget, sans-serif;
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 1rem;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #ff6f61;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.site-title {
    font-size: 2rem;
    letter-spacing: 1px;
    text-align: left;
}

.main-nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    position: relative;
    padding: 0.3rem 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff6f61;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    width: 100%;
    margin-bottom: 2rem;
}

.hero-image {
    width: 100%;
    height: 70vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("eaton3.jpeg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: backgroundZoom 10s infinite alternate ease-in-out;
}

@keyframes backgroundZoom {
    0% { background-size: 100%; }
    100% { background-size: 120%; }
}

.hero-overlay {
    text-align: center;
    padding: 2rem;
    background-color: rgba(26, 26, 26, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px inset #ff6f61;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin: 0 auto;
}

.hero-overlay h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-overlay p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Content Container */
.content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.content-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.content-block {
    background-color: rgba(26, 26, 26, 0.8);
    border-radius: 8px;
    padding: 2rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.content-block:hover {
    background-color: rgba(40, 40, 40, 0.8);
    transform: translateY(-3px);
}

.content-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ff6f61;
}

.content-block p {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.damage-list {
    list-style-type: none;
}

.damage-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.damage-list li::before {
    content: '•';
    color: #ff6f61;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

/* Content blocks with images */
.with-image {
    padding: 0;
    overflow: hidden;
}

.with-image img {
    width: 100%;
    height: auto;
    display: block;
}

.block-caption {
    padding: 1rem;
    font-size: 0.9rem;
    text-align: center;
    background-color: rgba(26, 26, 26, 0.9);
}

/* Map block */
.map-block {
    margin: 3rem 0;
}

.map-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ff6f61;
    text-align: center;
}

#fire-map {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    border: 1px solid #333;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    background-color: rgba(26, 26, 26, 0.8);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-item figcaption {
    padding: 1rem;
    font-size: 0.9rem;
    text-align: center;
    background-color: rgba(26, 26, 26, 0.9);
}

/* Footer Styles */
.main-footer {
    background-color: #000;
    padding: 2rem 1rem;
    margin-top: 3rem;
    border-top: 1px solid #ff6f61;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ff6f61;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
}

.footer-info {
    text-align: center;
    opacity: 0.7;
    font-size: 0.8rem;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.caption-text {
    margin-top: 15px;
    color: white;
    text-align: center;
    font-family: 'Arial', sans-serif;
    font-size: 1.2rem;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover {
    color: #ff6f61;
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    user-select: none;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.prev-btn:hover, .next-btn:hover {
    color: #ff6f61;
}

/* Add cursor pointer to gallery images */
.gallery-img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.02);
}

/* Hide scrollbar when lightbox is open */
body.no-scroll {
    overflow: hidden;
}
/* Responsive Adjustments */
@media (min-width: 680px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}