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

body {
    font-family: Georgia, 'Times New Roman', serif;
    background-color: #f5f1e8;
    color: #000;
    line-height: 1.6;
    padding: 20px;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.2;
}

.tagline {
    font-style: italic;
    font-size: 1.1rem;
    color: #000;
}

main {
    margin-bottom: 40px;
}

section {
    margin-bottom: 30px;
}

/* Location Section */
.location-section {
    margin-bottom: 30px;
    text-align: center;
}

.btn {
    border: none;
    border-radius: 30px;
    padding: 12px 24px;
    font-size: 1rem;
    cursor: pointer;
    font-family: Georgia, 'Times New Roman', serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s;
    text-decoration: none; /* For anchor tags styled as buttons */
}

.btn:hover {
    opacity: 0.9;
}

.btn-primary {
    background-color: #4caf50;
    color: #fff;
}

#googleMapsLink.btn-primary {
    background-color: #146936;
}

#locateBtn {
    background-color: #45C277;
}

.btn-primary-outlined {
    background-color: transparent;
    border: 2px solid #4caf50;
    color: #4caf50;
}

.btn-large {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 1.1rem;
    text-align: center;
}

.pin-icon {
    font-size: 1.2rem;
}

.instruction {
    margin: 15px 0 10px 0;
    font-family: Georgia, 'Times New Roman', serif;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ddd;
}

/* Mapbox styles */
.mapboxgl-canvas {
    border-radius: 8px;
}

.mapbox-marker {
    cursor: pointer;
    user-select: none;
}

/* Vibe Section */
.vibe-section h2 {
    font-size: 1.2rem;
    font-weight: normal;
    margin-bottom: 15px;
    font-family: Georgia, 'Times New Roman', serif;
}

.vibe-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vibe-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-family: Georgia, 'Times New Roman', serif;
}

.vibe-option input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.emoji {
    font-size: 1.5rem;
}

.vibe-text {
    font-size: 1rem;
}

/* Action Section */
.action-section {
    margin: 30px 0;
}

/* Adventure Section */
#googleMapsLink {
    text-decoration: none; /* Remove underline from anchor tag styled as button */
    margin-bottom: 15px;
    text-align: center;
}

.reveal-instruction {
    margin-bottom: 0;
    padding-bottom: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 0.9rem;
    font-style: italic;
    text-align: center;
}

.adventure-reveal {
    background-color: #b8e6b8;
    border: 10px solid #b8e6b8;
    border-radius: 30px;
    padding: 20px;
    min-height: 100px;
}

.adventure-reveal.revealed {
    background-color: transparent;
}

.reveal-btn {
    background: transparent;
    border: none;
    width: 100%;
    padding: 15px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1rem;
    cursor: pointer;
    color: #000;
}

.adventure-content {
    margin-top: 15px;
    font-family: Georgia, 'Times New Roman', serif;
}

.adventure-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.adventure-content p {
    margin-bottom: 8px;
}

.adventure-content .address {
    font-style: italic;
    color: #555;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #ddd;
    margin-top: 40px;
}

footer p {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 0.9rem;
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .map-container {
        height: 300px;
    }
}

