@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Roboto:wght@400;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(#d4af37, #b8972e);
    color: #1a1a1a;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background: rgba(255, 255, 255, 0.97);
    padding: 20px 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}

.logo {
    width: 240px;
    height: auto;
    flex-shrink: 0;
}

.title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    color: #0c2c5e;
    text-shadow: 3px 3px 6px rgba(212, 175, 55, 0.6);
    letter-spacing: 2px;
    white-space: nowrap;
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.map-container,
.content-card {
    background: white;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    max-width: 1150px;
    width: 100%;
    text-align: center;
}

h1 {
    text-align: center;
    color: #0c2c5e;
    margin-bottom: 8px;
    font-size: 2.4rem;
}

.subtitle {
    text-align: center;
    color: #444;
    margin-bottom: 25px;
    font-size: 1.25rem;
}

.map-wrapper {
    position: relative;
    display: inline-block;
}

#us-map {
    width: 100%;
    max-width: 980px;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.25));
}

.state {
    fill: #e6c15c;
    stroke: #0c2c5e;
    stroke-width: 1.8;
    transition: all 0.25s ease;
    cursor: pointer;
}

.state:hover,
.state:focus {
    fill: #ffd700;
    stroke: #0c2c5e;
    stroke-width: 3.5;
    filter: brightness(1.15);
    outline: none;
}

footer {
    text-align: center;
    padding: 25px;
    color: #0c2c5e;
    font-size: 1rem;
    background: rgba(255,255,255,0.75);
}

.info {
    margin: 25px 0;
    font-style: italic;
    color: #333;
}

.coming-soon-message {
    font-size: 1.2rem;
    color: #444;
    margin: 1.5rem 0 2rem;
    line-height: 1.6;
}

.back-link {
    display: inline-block;
    padding: 12px 28px;
    background: #0c2c5e;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: background 0.2s ease;
}

.back-link:hover {
    background: #1a4480;
}

@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }

    .logo {
        width: 160px;
    }
}
