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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Section Base Styles */
section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 60px 20px;
}

/* Overlay for better text readability */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0.6)
    );
    z-index: 1;
}

/* Content Container */
.content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    padding: 40px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typography */
h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.main-title {
    font-size: 5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
}

.subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 10px;
    color: #f0f0f0;
}

.location {
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: #d4af37;
    font-weight: 400;
}

h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.8);
}

h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #d4af37;
}

p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #f5f5f5;
    font-weight: 300;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8);
}

/* Hero Section */
.hero {
    min-height: 100vh;
}

.hero .content {
    background: rgba(0, 0, 0, 0.4);
    padding: 60px;
}

/* Welcome, Views, Lifestyle, Community Sections */
.welcome-section .content,
.views-section .content,
.lifestyle-section .content,
.community-section .content {
    max-width: 800px;
}

/* CTA Section */
.cta-section {
    min-height: 100vh;
}

.cta-content {
    max-width: 1000px;
    padding: 60px 50px;
}

.cta-intro {
    font-size: 1.3rem;
    margin-bottom: 50px;
    line-height: 1.8;
}

.instructions {
    margin: 50px 0;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.step {
    display: flex;
    align-items: center;
    gap: 25px;
    text-align: left;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateX(10px);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: #d4af37;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    border: 2px solid #d4af37;
}

.step p {
    font-size: 1.15rem;
    margin: 0;
    flex: 1;
}

/* Download Buttons */
.download-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn svg {
    width: 24px;
    height: 24px;
}

.btn-launch {
    background: linear-gradient(135deg, #ea66d8 0%, #a0486a 100%);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-launch:hover {
    background: linear-gradient(135deg, #a0486a 0%, #ea66d8 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-ios {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-ios:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-android {
    background: linear-gradient(135deg, #3cba92 0%, #0ba360 100%);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-android:hover {
    background: linear-gradient(135deg, #0ba360 0%, #3cba92 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(60, 186, 146, 0.4);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 40px 20px;
    text-align: center;
    min-height: auto;
}

.footer p {
    margin: 10px 0;
    font-size: 1rem;
    color: #ccc;
}

.footer .tagline {
    font-style: italic;
    color: #d4af37;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-title {
        font-size: 4rem;
        letter-spacing: 6px;
    }

    h2 {
        font-size: 3rem;
    }

    .content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    section {
        background-attachment: scroll;
        padding: 40px 15px;
    }

    .main-title {
        font-size: 3rem;
        letter-spacing: 4px;
    }

    .subtitle {
        font-size: 1.4rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    h3 {
        font-size: 1.6rem;
    }

    p {
        font-size: 1.1rem;
    }

    .content {
        padding: 25px;
    }

    .cta-content {
        padding: 40px 25px;
    }

    .step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .download-buttons {
        flex-direction: column;
        gap: 20px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2.2rem;
        letter-spacing: 3px;
    }

    .subtitle {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    h2 {
        font-size: 2rem;
    }

    .step-number {
        font-size: 2rem;
        min-width: 50px;
        height: 50px;
    }

    .hero .content {
        padding: 40px 25px;
    }
}
