* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
    background-color: #1A4329; 
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

.content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.main-headline {
    font-size: clamp(2.5rem, 8vw, 6rem); 
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.tm-symbol {
    color: #FFD166;
    font-size: 0.4em;
    font-weight: 300;
    vertical-align: super;
}

.coming-soon {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 300;
    letter-spacing: 6px;
    color: #FFD166; 
    text-transform: lowercase;
    margin-bottom: 30px;
}

.btn-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #FFD166;
    color: #1A4329;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 209, 102, 0.2);
    margin-bottom: 40px;
}

.btn-location:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 209, 102, 0.4);
    background-color: #ffdf8c;
}

.map-container {
    width: 100%;
    max-width: 600px; 
    height: 300px;
    border-radius: 20px;
    overflow: hidden; 
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3); 
    border: 4px solid rgba(255, 255, 255, 0.1); 
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer {
    text-align: center;
    padding: 20px;
    font-size: 0.85rem;
    color: #A3B8A8; 
    letter-spacing: 1px;
}