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

body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #fff;
    color: #222;
}

body {
    position: relative;
    min-height: 100vh;
}

.background-blur {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: url('../img/gallery-blur.jpg') no-repeat center center;
    background-size: cover;
    filter: blur(6px) brightness(1.1);
    opacity: 0.7;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    background: transparent;
    padding-top: 32px;
    padding-bottom: 16px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 48px;
    font-weight: 700;
    color: #ff6f4d;
    letter-spacing: 2px;
    margin: 0;
}

nav {
    display: flex;
    gap: 18px;
}

.nav-btn {
    background: #fff;
    color: #ff6f4d;
    border: 1px solid #ff6f4d;
    border-radius: 8px;
    padding: 8px 18px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(255,111,77,0.08);
    transition: background 0.2s, color 0.2s;
}

.nav-btn:hover {
    background: #ff6f4d;
    color: #fff;
}

main {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro {
    text-align: center;
    margin-bottom: 48px;
}

.intro h2 {
    font-size: 32px;
    color: #ff6f4d;
    margin-bottom: 16px;
    font-weight: 700;
}

.intro p {
    font-size: 20px;
    font-weight: 400;
    color: #444;
    margin-bottom: 0;
}

.download {
    text-align: center;
    margin-bottom: 32px;
}

.download h3 {
    font-size: 24px;
    color: #ff6f4d;
    margin-bottom: 8px;
    font-weight: 700;
}

.download p {
    font-size: 18px;
    margin-bottom: 18px;
    color: #222;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 18px;
}

.store-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 16px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    text-decoration: none;
    transition: box-shadow 0.2s, border 0.2s;
}

.store-btn img {
    height: 48px;
    margin-bottom: 8px;
}

.store-btn span {
    font-size: 16px;
    color: #444;
    font-weight: 500;
}

.store-btn:hover {
    box-shadow: 0 4px 24px rgba(255,111,77,0.15);
    border: 1px solid #ff6f4d;
}

.store-btn.disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* Interior pages (About, Contact) */
.page-main {
    padding: 40px 0 60px;
    display: block;
}

.page-hero {
    text-align: center;
    margin: 10px 0 40px;
}

.page-hero h2 {
    font-size: 40px;
    margin: 0 0 12px;
    color: #ff6f4d;
}

.page-hero .lead {
    font-size: 20px;
    color: #444;
    margin: 0;
    font-weight: 500;
}

.content-block {
    background: rgba(255,255,255,.9);
    padding: 30px 34px;
    border-radius: 18px;
    box-shadow: 0 8px 32px -8px rgba(0,0,0,.15);
    backdrop-filter: blur(4px);
    line-height: 1.55;
    font-size: 17px;
    color: #333;
}

.content-block p {
    margin-top: 0;
}

.content-block p + p {
    margin-top: 18px;
}

.cta-block {
    text-align: center;
    margin: 50px 0 0;
}

.primary-btn {
    display: inline-block;
    background: #ff6f4d;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: .5px;
    box-shadow: 0 10px 30px -8px rgba(255,111,77,.4);
    transition: .25s;
}

.primary-btn:hover {
    background: #ff7f62;
    transform: translateY(-2px);
}

.primary-btn:active {
    transform: translateY(0);
}

.card-ish {
    background: #fff;
    border: 1px solid #ffe1d9;
    padding: 28px 30px 32px;
    border-radius: 16px;
    box-shadow: 0 6px 26px -6px rgba(255,111,77,.25);
}

.card-ish h3 {
    margin-top: 0;
    color: #ff6f4d;
}

.contact-block {
    margin-top: 20px;
}

footer {
    background: transparent;
    text-align: center;
    padding: 32px 0 16px 0;
    color: #a56565;
    font-weight: 700;
    font-size: 18px;
}

a {
    color: #ff6f4d;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .container {
        max-width: 98vw;
        padding: 0 14px;
    }
    .logo {
        font-size: 32px;
    }
    .intro h2 {
        font-size: 22px;
    }
    .intro p, .download p {
        font-size: 15px;
    }
    .download h3 {
        font-size: 16px;
    }
    .store-btn img {
        height: 32px;
    }
    .store-buttons {
        gap: 18px;
    }
    .page-hero h2 {
        font-size: 30px;
    }
    .page-hero .lead {
        font-size: 17px;
    }
    .content-block {
        padding: 24px 24px 28px;
        font-size: 16px;
    }
}
