:root {
    --primary-yellow: #FCDD4D;
    --primary-yellow-hover: #e5c843;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --background-light: #fdfdfd;
    --font-main: 'Nunito', sans-serif;
    --radius-pill: 50px;
    --radius-card: 20px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--background-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-yellow);
    color: var(--text-dark);
    font-weight: 700;
    border-radius: var(--radius-pill);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(252, 221, 77, 0.4);
    background-color: var(--primary-yellow-hover);
}

.text-center {
    text-align: center;
}

/* Header */
header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

.logo img {
    height: 40px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 999;
}

.nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.nav-menu ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.nav-menu a {
    font-weight: 700;
    font-size: 1.1rem;
}

.menu-toggle {
    display: block;
    /* Show on mobile */
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

.btn-header-cta {
    display: inline-block;
    font-size: 0.75rem;
    /* Smaller for mobile */
    padding: 8px 15px;
}

@media (min-width: 400px) {
    .btn-header-cta {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

/* Hero Section */
.hero {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    background-image: url('images/yellow_hexagonal_pattern.jpg');
    /* Use the pattern loosely */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}

/* Masking the background for a fade effect */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.9) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
}

/* Overlay Phone */
.hero-overlay-phone {
    display: none;
    /* Hidden on mobile */
}

@media (min-width: 1100px) {
    .hero-overlay-phone {
        display: block;
        position: absolute;
        left: -80px;
        /* Positioned to the left overlapping content or edge */
        bottom: -60px;
        /* Adjust vertical position */
        width: 350px;
        /* Adjust size as needed */
        z-index: 20;
        /* On top of everything */
        transform: rotate(-5deg);
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    }
}

/* Floating Hexagons */
.hexagon-badge {
    position: absolute;
    width: 100px;
    height: 110px;
    /* Hexagon ratio approx */
    background-color: white;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--text-dark);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    /* Box shadow doesn't work well with clip-path, using filter instead on parent if needed, or simulated border */
    /* Simulating border with a pseudo element wrapper if needed, but for now simple style */
    padding: 10px;
    filter: drop-shadow(0 5px 15px rgba(252, 221, 77, 0.4));
    border: 4px solid var(--primary-yellow);
    /* Border applies to the clip box, careful */
}

/* Re-implementing hexagon with an image or different method for border might be safer, 
   but let's try a simpler circular/rounded playful shape if hexagon is too complex for pure CSS with border.
   Actually, the design has hexagons with yellow borders. 
   Let's use a background image for the shape or SVG, but I don't have one.
   I will use a rounded square with rotation for a similar "badge" feel, or just the clip path with a pseudo-element for border.
*/

/* .hexagon-wrapper -- implementing simpler consistent look for now: */
.floating-badge {
    position: absolute;
    width: 110px;
    height: 120px;
    background-color: var(--primary-yellow);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 800;
    font-size: 1rem;
    color: var(--text-dark);
    /* Remove shadow from parent as it's clipped */
    /* Remove animation */
    z-index: 5;
    /* Ensure above phone if needed */
}

/* Inner white part */
.floating-badge::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: white;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: -1;
}

.badge-1 {
    top: 0;
    right: 220px;
}

.badge-2 {
    top: 0;
    right: 95px;
}

.badge-3 {
    top: 0px;
    /* 120px height + ~20px gap */
    left: 220px;
}

.hero-text {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 600px;
    padding-top: 100px;
}

.hero-text h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Features Section */
.features {
    padding: 60px 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(252, 221, 77, 0.05) 100%);
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #fff4c1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 0 0 10px rgba(252, 221, 77, 0.2);
}

.feature-icon-wrapper img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.feature-desc {
    max-width: 500px;
    color: var(--text-light);
    font-size: 1rem;
}

/* Showcase Section */
.showcase {
    padding: 80px 0;
}

.showcase-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.showcase-img {
    width: 100%;
    max-width: 500px;
}

.showcase-cta {
    text-align: center;
}

.showcase-label {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    display: block;
    line-height: 1.2;
}

.showcase-cta .feature-desc {
    margin-bottom: 30px;
}

@media (min-width: 900px) {
    .showcase-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
        gap: 80px;
    }

    .showcase-cta {
        text-align: left;
        flex: 1;
    }

    .showcase-img {
        flex: 1;
    }
}

/* App Download Bar */
.download-bar {
    background-color: var(--primary-yellow);
    padding: 40px 0;
    text-align: center;
    position: relative;
}

.download-text {
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.store-badge {
    height: 50px;
    /* Standard badge height or similar */
    width: auto;
    cursor: pointer;
    transition: transform 0.2s;
}

.store-badge:hover {
    transform: scale(1.05);
}

.social-follow {
    display: flex;
    flex-direction: column;
    /* Stack vertically */
    justify-content: center;
    align-items: center;
    gap: 15px;
    /* Increased gap */
    font-weight: 600;
    margin-top: 20px;
    /* Add some space above */
}

.social-icon {
    width: 120px;
    /* Bigger logo */
    height: auto;
    vertical-align: middle;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    text-align: center;
}

.contact h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-sub {
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #eee;
    background: #f9f9f9;
    border-radius: var(--radius-card);
    font-family: var(--font-main);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-yellow);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    padding: 40px 0;
    background: #f9f9f9;
    font-size: 0.9rem;
    color: var(--text-light);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.footer-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 5px;
}

/* Responsive */
@media (min-width: 768px) {
    .header-content {
        padding: 0 40px;
    }

    .menu-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        background: transparent;
        padding: 0;
        box-shadow: none;
        transform: none;
        opacity: 1;
        pointer-events: all;
    }

    .nav-menu ul {
        flex-direction: row;
        gap: 30px;
    }

    .btn-header-cta {
        display: inline-block;
        font-size: 0.9rem;
    }

    .hero {
        padding: 100px 0;
    }

    /* .hero-visual content removed as it was empty */

    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-around;
        text-align: left;
    }
}