/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #191919;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Colors */
:root {
    --smash-peach: #cd2f82;
    --core-black: #191919;
    --background-white: #FFFFFF;
    --light-grey: #F0F0F0;
    --smash-peach-dark: #FF8A65;
    --smash-pink: #F48FB1;
    --smash-pink-light: #FFCDD2;
    --smash-peach-light: #FFE0B2;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.nav-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-link {
    text-decoration: none;
    color: var(--core-black);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
}

.nav-link:hover {
    background: rgba(255, 203, 55, 0.1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sign-in-btn {
    background: var(--core-black);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sign-in-btn:hover {
    background: #333;
    transform: translateY(-1px);
}

.sign-up-btn {
    background: var(--smash-peach);
    color: var(--core-black);
    border: 2px solid var(--smash-peach-dark);
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sign-up-btn:hover {
    background: var(--smash-peach-dark);
    transform: translateY(-1px);
}

.hero {
    background: var(--smash-peach);
    padding: 120px 0 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-slider-wrapper {
    width: 100%;
    max-width: 980px;
    overflow: hidden;
    position: relative;
}

.hero-slider {
    display: flex;
    transition: transform 0.8s ease-in-out;
}

.hero-slide {
    width: 100%;
    flex-shrink: 0;
    text-align: center;
}

.slide-images {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-bottom: 20px;
}

.slide-img {
    width: 320px;
    height: 450px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.slide-text {
    font-size: 28px;
    font-weight: 800;
    color: white;
}

/* MOBILE FIXES */
@media (max-width: 768px) {

    .slide-images {
        flex-direction: row;       /* side-by-side */
        justify-content: center;   /* center align */
        align-items: center;
        gap: 15px;                 /* smaller gap */
        padding-left: 0;
    }

    .slide-img {
        width: 45%;                /* both images fit in one row */
        height: 260px;             /* reduced height for mobile */
        object-fit: cover;
    }

    .slide-text {
        text-align: center;        /* center text under images */
        padding-left: 0;
    }
}


/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--core-black);
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.7;
}

.app-image{
    display:flex;
    justify-content:center;
}
.app-image img{
    width:120px;
    margin:unset !important;
}
.cta-btn {
    background: var(--core-black);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Mission Section */
.mission {
    background: var(--background-white);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mission-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.mission-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.lifestyle-tags {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tag {
    background: var(--smash-peach);
    color: var(--core-black);
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

/* First to Know Section */
.first-know {
    background: var(--light-grey);
}

.first-know-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.image-grid {
    display: grid;
    
    gap: 20px;
    padding: 20px;
}

.grid-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 270px;
}

.grid-item img {
    width: 100%;
    height: 100%;
        object-fit: contain;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--smash-peach);
    color: var(--core-black);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Product Section */
.products {
    background: var(--background-white);
}

.product-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.product-card {
    background: var(--smash-peach);
    border-radius: 32px;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-visual {
    margin-bottom: 40px;
}

.phone-mockup {
    width: 420px;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--core-black);
    margin-bottom: 20px;
}

.product-description {
    font-size: 16px;
    color: var(--core-black);
    margin-bottom: 30px;
    line-height: 1.6;
}

.product-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid white;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.product-link:hover {
    border-bottom-color: transparent;
}

/* Testimonial Section */
.testimonial {
    background: var(--background-white);
}

.testimonial-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.testimonial-text {
    position: relative;
}

.quote-icon {
    font-size: 80px;
    color: var(--bumble-yellow);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 20px;
}

.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 600;
    color: var(--core-black);
    margin-bottom: 30px;
    line-height: 1.4;
    quotes: """ """ "'" "'";
}

.testimonial-quote:before {
    content: open-quote;
}

.testimonial-quote:after {
    content: close-quote;
}

.testimonial-caption {
    color: #666;
    margin-bottom: 40px;
}

.couple-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 24px;
}

/* Events Section */
.events {
    background: var(--light-grey);
}

.events-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.events-img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 24px;
}

/* App Download Section */
.app-download {
    background: var(--smash-peach);
}

.app-download-content {
    
    align-items: center;
}


/* Footer */
.footer {
    background: var(--background-white);
    padding: 60px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--core-black);
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-title {
    font-weight: 600;
    color: var(--core-black);
    margin-bottom: 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-link {
    display: block;
    color: #666;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--core-black);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icon {
    color: var(--core-black);
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--bumble-yellow);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #eee;
    padding-top: 30px;
    display: flex;
    justify-content: flex-end;
}

.footer-controls {
    display: flex;
    gap: 15px;
}

.language-btn {
    background: white;
    color: var(--core-black);
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-btn:hover {
    background: var(--light-grey);
}

.sign-in-btn-footer {
    background: white;
    color: var(--core-black);
    border: 1px solid #ddd;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sign-in-btn-footer:hover {
    background: var(--core-black);
    color: white;
}

/* Floating QR Code */
.floating-qr {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--smash-peach);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.qr-content {
    text-align: center;
}

.qr-image img {
    width: 80px;
    height: 80px;
    background: white;
    padding: 8px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.qr-text {
    font-size: 12px;
    color: var(--core-black);
    font-weight: 600;
    max-width: 120px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-img {
        width: 160px;
        height: 220px;
    }
    
    .mission-content,
    .first-know-content,
    .testimonial-content,
    .events-content,
    .app-download-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .product-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-sections {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .app-phones {
        height: 300px;
    }
    
    .phone-stack {
        width: 100px;
        height: 160px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 12px 20px;
    }
    
    .sign-in-btn {
        padding: 8px 18px;
        font-size: 13px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-images {
        gap: 20px;
    }
    
    .hero-img {
        width: 120px;
        height: 160px;
    }
    
    .hero-img-left {
        transform: translateX(-40px) rotate(-3deg) !important;
    }
    
    .hero-img-center {
        width: 140px;
        height: 180px;
    }
    
    .hero-img-right {
        transform: translateX(40px) rotate(3deg) !important;
    }
    
    .lifestyle-tags {
        position: static;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
        flex-wrap: wrap;
    }
    
    .tag {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .image-grid {

        gap: 15px;
    }
    
    .grid-item {
        height: 285px;
    }
    
    .product-card {
        padding: 40px 30px;
    }
    
    .phone-mockup {
        width: 100px;
        height: 160px;
    }
    
    .couple-img {
        height: 300px;
    }
    
    .events-img {
        height: 250px;
    }
    
    .app-phones {
        height: 250px;
    }
    
    .phone-stack {
        width: 80px;
        height: 130px;
    }
    
    .phone-1 {
        top: 20px;
        left: 10px;
    }
    
    .phone-2 {
        top: 60px;
        left: 60px;
        width: 90px;
        height: 150px;
    }
    
    .phone-3 {
        top: 40px;
        right: 10px;
    }
    
    .footer-sections {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .floating-qr {
        bottom: 20px;
        left: 20px;
        padding: 15px;
    }
    
    .qr-image img {
        width: 60px;
        height: 60px;
    }
    
    .qr-text {
        font-size: 11px;
        max-width: 100px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .navbar {
        top: 15px;
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 10px 16px;
    }
    
    .sign-in-btn {
        font-size: 12px;
        padding: 4px 8px;
    }
    
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-images {
        gap: 40px;
        transform: translate(-44%, -72%);
    }
    
    .hero-img {
        width: 90px;
        height: 120px;
    }
    
    .hero-img-left {
        transform: translateX(-20px) rotate(-2deg) !important;
    }
    
    .hero-img-center {
        width: 100px;
        height: 140px;
    }
    
    .hero-img-right {
        transform: translateX(20px) rotate(2deg) !important;
    }
    
    section {
        padding: 40px 0;
    }
    
    .mission-content,
    .first-know-content,
    .testimonial-content,
    .events-content,
    .app-download-content {
        gap: 40px;
    }
    
    .product-card {
        padding: 30px 20px;
    }
    
    .phone-mockup {
        width: 258px;
        height: 144px;
    }
    }
    
    .couple-img {
        height: 200px;
    }
    
    .events-img {
        height: 180px;
    }
    
    .app-phones {
        height: 200px;
    }
    
    .phone-stack {
        width: 70px;
        height: 110px;
    }
    
    .floating-qr {
        display: none;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .floating-qr {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
    
    section {
        padding: 30px 0;
    }
}