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

body {
    font-family: 'Fira Sans', sans-serif;
    background-color: #004AAD;
    color: white;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

/* --- NAVIGATION / TOP BAR --- */
.top-bar {
    background-color: #FFC108;
    width: 100%;
    min-height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-weight: 700;
    z-index: 100;
}

.nav-left a {
    text-decoration: none;
    color: #004AAD;
    margin-right: 25px;
    text-transform: uppercase;
    font-size: 0.95rem;
    transition: opacity 0.2s;
}

.nav-left a:hover {
    opacity: 0.7;
}

.nav-right {
    color: #004AAD;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-btn {
    cursor: pointer;
    font-size: 0.95rem;
}

.lang-btn:hover {
    text-decoration: underline;
}

.lang-btn.active {
    text-decoration: underline;
    font-weight: 900;
}

.lang-divider {
    opacity: 0.5;
}

/* --- MAIN CONTENT --- */
.content-container {
    flex: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Page Visibility Toggles */
.active-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    animation: fadeIn 0.5s ease-in-out;
}

.hidden-page {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- TEXT PAGES (Instructions / Info) --- */
.text-page {
    text-align: center;
    padding-top: 40px;
    max-width: 800px;
}

.page-title {
    font-size: 2.5rem;
    color: #FFC108;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 40px;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.text-block {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    text-align: left;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
}

.text-block h3 {
    color: #FFC108;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.text-block p {
    line-height: 1.6;
    font-size: 1rem;
}

/* --- HOME PAGE ELEMENTS --- */

/* Header Text */
.header-text {
    text-align: center;
    padding-top: 80px;
    padding-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.5;
    max-width: 600px;
}

/* Title Area */
.title-area {
    width: 100%;
    max-width: 600px;
    text-align: center;
    margin-bottom: 40px;
}

.location {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: -30px;
    display: block;
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1);
}

/* Features Grid */
.features-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 250px;
}

.circle {
    background-color: #FFC108;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #004AAD;
    font-weight: 800;
    flex-direction: column;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.circle:hover {
    transform: scale(1.3);
}

.circle span {
    display: block;
}

.circle-price {
    font-size: 2rem
}

.circle-small {
    font-size: 1.5;
}

.circle-time {
    font-size: 2rem;
}

.circle-hours-sm {
    font-size: 1.5rem;
}

.circle-hours-lg {
    font-size: 1.5rem;
}

.feature-text {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.6;
}

.footer-info {
    text-align: center;
    font-size: 1rem;
    margin-top: auto;
    margin-bottom: 30px;
    font-weight: 500;
    max-width: 800px;
}

/* --- BOTTOM BAR --- */
.bottom-bar {
    background-color: #FFC108;
    width: 100%;
    padding: 20px;
    text-align: center;
    /* Updated Blue */
    color: #004AAD;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.bottom-bar a {
    color: #004AAD;
    text-decoration: none;
}

/* --- BUBBLES --- */
.bubbles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.bubble {
    position: absolute;
    border: 2px solid rgba(173, 216, 230, 0.3);
    border-radius: 50%;
}

.b1 {
    width: 60px;
    height: 60px;
    top: 10%;
    left: 5%;
}

.b2 {
    width: 90px;
    height: 90px;
    top: 20%;
    right: 10%;
}

.b3 {
    width: 40px;
    height: 40px;
    top: 15%;
    right: 25%;
}

.b4 {
    width: 50px;
    height: 50px;
    bottom: 30%;
    left: 8%;
}

.b5 {
    width: 80px;
    height: 80px;
    bottom: 40%;
    left: 15%;
}

.b6 {
    width: 30px;
    height: 30px;
    top: 40%;
    left: 2%;
}

.b7 {
    width: 70px;
    height: 70px;
    bottom: 15%;
    right: 5%;
}

.b8 {
    width: 55px;
    height: 55px;
    top: 50%;
    right: 8%;
}

.b9 {
    width: 45px;
    height: 45px;
    bottom: 50%;
    right: 15%;
}

.b10 {
    width: 100px;
    height: 100px;
    bottom: 5%;
    left: -20px;
    opacity: 0.4;
}

.b11 {
    width: 60px;
    height: 60px;
    top: 5%;
    left: 40%;
}

.b12 {
    width: 35px;
    height: 35px;
    bottom: 25%;
    right: 20%;
}

/* Mobile Tweaks */
@media (max-width: 768px) {
    .header-text {
        padding-top: 100px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .location {
        font-size: 2.2rem;
    }

    .features-grid {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .top-bar {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }
}