* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, serif;
    color: #fff;
    background: #2b1515;
}

/* Hero Section */
.hero {
    position: relative;
    height: 700px;
    background: url('../assets/anoka-image.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-logo {
    display: block;
    width: 240px;
    height: auto;
    margin-bottom: 5px;
    filter: drop-shadow(1px 1px 4px rgba(0,0,0,0.6));
}

.hero-title {
    font-size: 3.2rem;
    font-weight: normal;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-button {
    display: inline-block;
    background-color: #5a2222;
    color: #fff;
    padding: 12px 28px;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 3px;
}

.hero-button:hover {
    background-color: #6a2828;
}

/* Welcome Banner */
.welcome-banner {
    background-color: #5a2222;
    text-align: center;
    padding: 50px 20px;
}

.welcome-banner h2 {
    font-size: 2.5rem;
    font-weight: normal;
    margin-bottom: 15px;
}

.welcome-banner p {
    font-size: 1.5rem;
    opacity: 0.95;
}

/* Cards Section */
.cards-section {
    padding: 40px 20px;
}

.cards-burgundy {
    background-color: #5a2222;
}

.cards-dark {
    background-color: #5a2222;
}

.cards-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 30 20px;
}

.card-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/11;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.card-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-label {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(40, 80, 100);
    color: #fff;
    padding: 8px 16px;
    font-size: 0.95rem;
    border-radius: 5px;
    font-weight: normal;
}

.card-item:hover {
    opacity: 0.95;
    cursor: pointer;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.scripture-section {
    background: url('../assets/rug.png');
    background-color: #4a1e1e;
    text-align: center;
    padding: 25px 30px;
}

.scripture-text {
    font-size: 2.1rem;
    font-style: italic;
    margin-bottom: 10px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.scripture-ref {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 1024px) {
    .cards-container {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-left: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-logo {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 20px;
        font-size: 0.85rem;
    }

    .hero {
        padding-left: 20px;
        height: auto;
        min-height: 500px;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-logo {
        width: 170px;
        margin-bottom: 16px;
    }

    .welcome-banner h2 {
        font-size: 2rem;
    }

    .scripture-text {
        font-size: 1.4rem;
    }
}