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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

header {
    text-align: center;
    padding: 60px 20px;
    color: white;
}

h1 {
    font-size: 4rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    letter-spacing: 0.2em;
}

.tagline {
    font-size: 1.5rem;
    margin-top: 10px;
    opacity: 0.9;
}

main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.attractions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.attraction {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

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

.attraction h2 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.attraction p {
    color: #555;
}

footer {
    text-align: center;
    padding: 30px;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    h1 { font-size: 2.5rem; }
    .tagline { font-size: 1.1rem; }
}
