/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow: hidden;
}

body {
    font-family: 'Product Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #FFFFFF;
    color: #1D0132;
    overflow-x: hidden;
}

/* Main container using flexbox */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Content wrapper - main flex container */
.content-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2rem 2rem 5rem;
    max-width: 1800px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Text content section */
.text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex: 1;
    max-width: 600px;
    z-index: 10;
    position: relative;
}

.main-heading {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1;
    color: #1D0132;
    margin-bottom: 3rem;
}

.cta-button {
    background-color: #1D0132;
    color: #FFFFFF;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 400;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    letter-spacing: 0.01em;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background-color: #2a0548;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 1, 50, 0.3);
}

.cta-button:active {
    transform: translateY(0);
}

/* Visual content section */
.visual-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Mountain shape using Arrow SVG */
.mountain-shape {
    position: fixed;
    top: 0;
    right: -30vw;
    height: 100vh;
    z-index: 1;
    filter: drop-shadow(0 10px 30px rgba(82, 224, 140, 0.2));
}

/* Footer */
.footer {
    padding: 2rem 2rem 2rem 5rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: auto;
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    z-index: 999;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

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

/* Mobile-only logo - hidden by default */
.mobile-logo-container {
    display: none;
}

.mobile-logo {
    height: 32px;
    width: auto;
    max-width: 250px;
}

/* Responsive design using flexbox */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 2rem;
    }
    
    .text-content {
        align-items: center;
        justify-content: start;
        max-width: 100%;
        order: 2;
    }
    
    .visual-content {
        order: 1;
    }
    
    .main-heading {
        text-align: center;
        margin-bottom: 2rem;
        font-size: clamp(3rem, 8vw, 5rem);
    }
    
    .cta-button {
        font-size: 1.25rem;
        padding: 1.125rem 2.75rem;
    }
    
    /* Show mobile logo on tablets and mobile */
    .mobile-logo-container {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 2rem;
    }
    
    .mountain-shape {
        position: relative;
        top: auto;
        right: auto;
        height: 50vh;
        z-index: 1;
    }
    
    .footer {
        padding: 1.5rem;
        justify-content: center;
    }
    
    .logo-container {
        justify-content: center;
    }
    
    .logo {
        height: 32px;
    }
}

@media (max-width: 480px) {
    html {
        overflow-y: initial;
    }

    .content-wrapper {
        padding: 5rem 1rem 1rem;
    }
    
    .main-heading {
        font-size: 2.8rem;
        margin-bottom: 3.5rem;
    }
    
    .cta-button {
        padding: 1rem 2.25rem;
        font-size: 1.125rem;
    }
    
    .mountain-shape {
        position: absolute;
        right: auto;
        height: 100vh;
        z-index: 1;
        top: 32%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .footer {
        display: none;
    }
}

/* Large screens */
@media (min-width: 1200px) {
    .main-heading {
        font-size: 5rem;
        margin-bottom: 4rem;
    }
    
    .visual-content {
        min-height: 70vh;
    }
}
