/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: "museo-sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
}

body {
    display: flex;
    flex-direction: column;
}

/* Container */
.maintenance-container {
    max-width: 1500px;
    margin: 0 auto;
    width: 100%;
}

/* Logo Section */
.logo-section {
    text-align: center;
    padding: 40px 20px 20px;
}

.logo {
    max-width: 300px;
    height: auto;
}

@media screen and (max-width: 600px) {
    .logo {
        max-width: 200px;
    }
}

/* Message Section */
.message-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #F4F8FB;
}

.message-section h1 {
    color: #2fb1c7;
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 600;
}

.message-section p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 700px;
    margin: 10px auto;
    color: #555;
}

@media screen and (max-width: 600px) {
    .message-section h1 {
        font-size: 26px;
    }

    .message-section p {
        font-size: 16px;
    }
}

/* Hero Banner Section */
.hero-banner {
    padding: 80px 20px;
    min-height: 500px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("https://storage.googleapis.com/yourpilatesphysio.appspot.com/static_assets/home%20banner-min.jpg");
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 600px) {
    .hero-banner {
        min-height: 400px;
        background-image: url("https://storage.googleapis.com/yourpilatesphysio.appspot.com/static_assets/home_banner_md-min.jpg");
        padding: 40px 20px;
    }
}

.hero-content {
    max-width: 800px;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 600px) {
    .hero-content {
        padding: 25px 20px;
        background: rgba(255, 255, 255, 0.98);
    }
}

.hero-content h2 {
    font-size: 32px;
    color: #2fb1c7;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: left;
}

@media screen and (max-width: 800px) {
    .hero-content h2 {
        font-size: 28px;
    }
}

@media screen and (max-width: 600px) {
    .hero-content h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }
}

.hero-content ul {
    list-style: none;
    margin: 0 0 30px 0;
    padding: 0;
    text-align: left;
}

.hero-content ul li {
    font-size: 20px;
    color: #333;
    padding-bottom: 12px;
    line-height: 1.4;
}

.hero-content ul li i {
    color: #2fb1c7;
    margin-right: 10px;
}

@media screen and (max-width: 800px) {
    .hero-content ul li {
        font-size: 18px;
        padding-bottom: 8px;
    }
}

@media screen and (max-width: 600px) {
    .hero-content ul li {
        font-size: 15px;
        padding-bottom: 6px;
    }
}

/* App Store Buttons */
.app-store-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 20px;
}

.app-store-buttons a {
    display: inline-block;
}

.app-store-buttons img {
    height: 50px;
    width: auto;
    transition: transform 0.2s ease;
}

.app-store-buttons img:hover {
    transform: scale(1.05);
}

@media screen and (max-width: 600px) {
    .app-store-buttons {
        justify-content: center;
        gap: 15px;
    }

    .app-store-buttons img {
        height: 40px;
    }
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 20px;
    background-color: #F4F8FB;
    margin-top: auto;
}

.footer p {
    font-size: 16px;
    color: #555;
}

.footer a {
    color: #2fb1c7;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer a:hover {
    color: #25899c;
    text-decoration: underline;
}

@media screen and (max-width: 600px) {
    .footer p {
        font-size: 14px;
    }
}
