@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: 'Montserrat', sans-serif;
    background: #F5F1E3;
    color: #2F5233;
    line-height: 1.6;
    min-height: 100vh;
}

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

.header {
    background: linear-gradient(135deg, #F5F1E3 0%, #FAF8F0 100%);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 2px;
    box-shadow: 0 4px 12px rgba(47, 82, 51, 0.12);
    border: 1px solid rgba(47, 82, 51, 0.1);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(47, 82, 51, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.header h1 {
    color: #2F5233;
    font-size: 32px;
    margin-bottom: 12px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.header-subtitle {
    color: #2F5233;
    font-size: 18px;
    opacity: 0.85;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.header-controls {
    position: absolute;
    top: 2px;
    right: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    z-index: 10;
}

.guest-location-info {
    margin-bottom: 2px;
}

.location-card {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid rgba(47, 82, 51, 0.2);
    box-shadow: 0 4px 12px rgba(47, 82, 51, 0.1);
}

.location-card h4 {
    color: #2F5233;
    margin-bottom: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-card p {
    color: #2F5233;
    margin-bottom: 8px;
    font-weight: 500;
}

.location-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.location-note {
    color: #2F5233;
    font-size: 14px;
    opacity: 0.8;
}

.card {
    background: white;
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(47, 82, 51, 0.08);
    border: 1px solid rgba(47, 82, 51, 0.08);
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #2F5233;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
