@import url('https://api.fontshare.com/v2/css?f[]=general-sans@500,600,400,700&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@900,700,500,301,701,300,501,401,901,400&display=swap');

body {
    font-family: 'General Sans', 'Satoshi', sans-serif;
    color: #1d282c;
    background-color: #f4f0e6;
    overflow-x: hidden;
}

.navbar {
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(244, 240, 230, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.action-button {
    background-color: #432f8a;
    transition: background-color 0.3s ease;
}

.action-button:hover {
    background-color: #372775;
}

.learn-more {
    transition: transform 0.3s ease;
    color: #432f8a;
}

.learn-more:hover {
    transform: translateX(5px);
}

.hero-section {
    background: linear-gradient(135deg, #f4f0e6 80%, #ebe5db 100%);
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Desktop (Large Screen) */
@media (min-width: 1280px) {
    .desktop-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 100vh;
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 4rem;
        position: relative;
    }
    
    .text-column {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        padding-left: 4rem;
        height: 100vh;
    }
    
    .text-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .button-row {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 3rem;
        margin-bottom: 3rem;
    }
    
    .action-button {
        width: auto;
        margin-bottom: 1rem;
    }
    
    .learn-more {
        display: inline-flex;
    }
    
    .image-column {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        position: relative;
        overflow: visible;
    }
    
    .desktop-image {
        position: absolute;
        width: auto;
        height: 76vh; /* 80% of current 95vh */
        max-height: none;
        bottom: -5vh;
        right: -30%;
        z-index: 5;
        object-fit: contain;
        transform-origin: top right;
    }
}

/* Mac layout (768px to 1279px) */
@media (min-width: 768px) and (max-width: 1279px) {
    .desktop-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 100vh;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 3rem;
        position: relative;
    }
    
    .text-column {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        padding-left: 3rem;
        height: 100vh;
    }
    
    .text-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .button-row {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 3rem;
        margin-bottom: 3rem;
    }
    
    .action-button {
        width: auto;
        margin-bottom: 1rem;
    }
    
    .learn-more {
        display: inline-flex;
    }
    
    .image-column {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        position: relative;
        overflow: visible;
    }
    
    .desktop-image {
        position: absolute;
        width: auto;
        height: 68vh; /* 80% of current 85vh */
        max-height: none;
        bottom: -4vh;
        right: -20%;
        z-index: 5;
        object-fit: contain;
        transform-origin: top right;
    }
}

/* Mobile layout (Phone) */
@media (max-width: 767px) {
    .desktop-layout {
        display: none;
    }
    
    .hero-container {
        position: relative;
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }
    
    .hero-content {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 120px;
        padding-left: 20px;
        padding-right: 20px;
        position: relative;
        z-index: 10;
        display: flex;
        flex-direction: column;
        justify-content: space-between; /* Create space between elements */
        height: 100vh;
        padding-bottom: 30vh; /* Space for image at bottom */
    }
    
    .hero-image {
        position: absolute;
        right: -10%;
        bottom: 0;
        max-height: 60vh;
        z-index: 5;
    }
    
    .mobile-text-content {
        padding-top: 5vh; /* Add some space at top */
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
        z-index: 10;
        width: 60%;
        gap: 1rem;
        /* No margins needed - now positioned by flex container */
    }
    
    .hero-heading {
        width: 70%;
        font-size: 2.5rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1rem;
        color: #0b0f0e;
    }
    
    .hero-subheading {
        width: 70%;
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        color: #1d282c;
    }
    
    /* Only for tablets - switch to horizontal buttons */
    @media (min-width: 640px) {
        .cta-buttons {
            flex-direction: row;
            justify-content: flex-start;
            gap: 1.5rem;
        }
    }
}

/* Added from original HTML for FAQ toggle */
.faq-answer {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 500px; /* Adjust this value as needed */
}

/* Shiny gradient effect for divider section */
.shiny-gradient {
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: linear-gradient(45deg, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0) 40%, 
        rgba(255,255,255,0.3) 50%, 
        rgba(255,255,255,0) 60%, 
        rgba(255,255,255,0) 100%);
    transform: rotate(25deg);
    animation: shine 3s infinite linear;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(25deg);
    }
    100% {
        transform: translateX(100%) rotate(25deg);
    }
} 