/* Font Face Declarations */
@font-face {
    font-family: 'Neulis Cursive';
    src: url('assests/drive-download-20251021T233613Z-1-001/Neulis Cursive Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Neulis Cursive';
    src: url('assests/drive-download-20251021T233613Z-1-001/Neulis Cursive Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Neulis Cursive';
    src: url('assests/drive-download-20251021T233613Z-1-001/Neulis Cursive Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Neulis Cursive';
    src: url('assests/drive-download-20251021T233613Z-1-001/Neulis Cursive Semi Bold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Neulis Cursive';
    src: url('assests/drive-download-20251021T233613Z-1-001/Neulis Cursive Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Neulis Cursive';
    src: url('assests/drive-download-20251021T233613Z-1-001/Neulis Cursive Extra Bold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

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

body {
    font-family: 'Neulis Cursive', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #fff;
    overflow-x: hidden;
}

/* Main Container - Two Column Layout */
.main-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* Left Section - Visual Side */
.left-section {
    flex: 1;
    position: relative;
    background: linear-gradient(135deg, #ff6b6b, #ffa726);
    overflow: hidden;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-food {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

.phone-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    max-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 100%;
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    border-radius: 25px;
}

/* Right Section - Content Side */
.right-section {
    flex: 1;
    background-color: #2c2c2c;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.content-container {
    max-width: 500px;
    width: 100%;
}

/* Main Heading */
.main-heading {
    margin-bottom: 40px;
    line-height: 1.2;
    white-space: nowrap;
}

.heading-part1 {
    display: inline;
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0px;
    line-height: 1;
    vertical-align: bottom;
}

.heading-part2 {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffeb3b;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.logo-in-heading {
    display: inline-block;
    max-width: 200px;
    height: auto;
    margin-left: 5px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
     line-height: 1;
    vertical-align: bottom;
}

/* Content Text */
.content-text {
    margin-bottom: 40px;
}

.paragraph {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.7;
    opacity: 0.9;
}

.paragraph:last-child {
    margin-bottom: 0;
}

/* Coming Soon */
.coming-soon {
    margin-bottom: 30px;
}

.coming-soon-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffeb3b;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Neulis Cursive', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Download Badges */
.download-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.download-badge {
    display: inline-block;
}

.badge {
    height: 60px;
    width: auto;
    border-radius: 8px;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
    }
    
    .left-section {
        height: 70vh;
        min-height: 500px;
        position: relative;
    }
    
    .right-section {
        height: auto;
        min-height: 40vh;
        /* padding: 60px 20px 40px 20px; */
        position: relative;
        z-index: 2;
        margin-top: 0px;
    }
    
    .phone-overlay {
        position: absolute;
        top: 80px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        width: 100%;
        max-width: 240px;
    }
    
    .phone-mockup {
        max-width: 220px;
        width: 100%;
        height: auto;
        filter: drop-shadow(0 25px 50px rgba(0,0,0,0.4));
    }
    
    .content-container {
        max-width: none;
        /*padding-top: 40px;*/
    }
    
    .heading-part1 {
        font-size: 2.5rem;
        font-weight: 600;
    }
    
    .heading-part2 {
        font-size: 2.8rem;
        font-weight: 800;
    }
    
    .logo-in-heading {
        max-width: 250px;
        margin-left: 5px;
        vertical-align: bottom;
         line-height: 1;
        display: inline-block;
    }
    
    .paragraph {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 18px;
    }
    
    .coming-soon-text {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 25px;
    }
    
    .badge {
        height: 55px;
    }
    
    .download-badges {
        /* justify-content: center; */
        gap: 12px;
    }
    
    .main-heading {
        margin-bottom: 30px;
    }
    
    .content-text {
        margin-bottom: 30px;
    }
    
    /* Ensure proper spacing for mobile layout */
    .bg-food {
        /* filter: blur(12px); */
        transform: scale(1.2);
    }
    
    /* Adjust z-index layering for proper overlap */
    .left-section {
        z-index: 1;
    }
    
    .right-section {
        /* margin-top: -80px; */
        z-index: 2;
    }
    
    .phone-overlay {
        z-index: 10;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .left-section {
        height: 65vh;
        min-height: 550px;
    }
    
    .right-section {
        height: auto;
        min-height: 45vh;
        /* padding: 60px 15px 30px 15px; */
        margin-top: 0px;
    }
    
    .phone-mockup {
        max-width: 200px;
    }
    
    .heading-part1 {
        font-size: 2.5rem;
    }
    
    .heading-part2 {
        font-size: 2.5rem;
    }
    
    .logo-in-heading {
        max-width: 150px;
        margin-left: 5px;
        vertical-align: bottom;
         line-height: 1;
        display: inline-block;
    }
    
    .paragraph {
        font-size: 1.05rem;
    }
    
    .badge {
        height: 50px;
    }
    
    .download-badges {
        gap: 10px;
    }
}

/* Tablet Responsive Design */
@media (min-width: 769px) and (max-width: 1024px) {
    .right-section {
        padding: 50px 30px;
    }
    
    .heading-part1 {
        font-size: 2.8rem;
    }
    
    .heading-part2 {
        font-size: 3.2rem;
    }
    
    .phone-mockup {
        max-width: 250px;
    }
    
    .badge {
        height: 55px;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .content-container {
        max-width: 600px;
    }
    
    .heading-part1 {
        font-size: 3.5rem;
    }
    
    .heading-part2 {
        font-size: 4rem;
    }
    
    .phone-mockup {
        max-width: 320px;
    }
    
    .paragraph {
        font-size: 1.1rem;
    }
    
    .badge {
        height: 70px;
    }
}


/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.download-badge:focus {
    outline: 2px solid #ffeb3b;
    outline-offset: 4px;
    border-radius: 8px;
}

