:root {
    --gold: #D4AF37;
    --black: #000000;
    --light-bg: #f5f5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: var(--light-bg);
}

.banner-container {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.banner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-out;
    will-change: transform;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
    z-index: 1;
}

.banner-title-container {
    text-align: center;
    margin: 2rem 0;
    padding: 0 2rem;
}

.banner-title {
    color: var(--gold);
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(1px);
    display: inline-block;
    border: 3px solid var(--gold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-out;
}

.banner-title:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.banner-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

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

.section {
    margin-bottom: 3rem;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.section h1 {
    color: var(--gold);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.section h2 {
    color: var(--gold);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.section h3 {
    color: var(--black);
    margin: 1.5rem 0 1rem;
    font-size: 1.5rem;
}

.section p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #333;
}

.content {
    display: grid;
    gap: 2rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    text-align: center;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 3px solid var(--gold);
}

@media (max-width: 768px) {
    .banner-container {
        height: 300px;
    }
    .banner-title-container {
        margin: 1.5rem 0;
        padding: 0 1rem;
    }
    .banner-title {
        font-size: 2rem;
        padding: 1rem 1.5rem;
    }
    .section {
        padding: 1.5rem;
    }
    .grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .banner-container {
        height: 200px;
    }
    .banner-title-container {
        margin: 1rem 0;
        padding: 0 0.5rem;
    }
    .banner-title {
        font-size: 1.5rem;
        padding: 0.8rem 1.2rem;
    }
} 