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

body {
    font-family: 'Urbanist', sans-serif !important;

}

a,
a:hover,
a:focus,
a:active {
    text-decoration: none !important;
    color: #0035a7;
}

/* Container */
.main-header .container {

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

/* Header */
.main-header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Logo */
.logo img {
    height: 60px;
}

/* Navigation */
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin-bottom: 0px;
}

.nav-menu a {
    text-decoration: none;
    color: #4e342e;
    /* dark brown */
    font-weight: 500;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: #8d6e63;
    /* lighter brown */
}

/* CTA Button */
.btn-one {
    background: #6d4c41;
    /* primary brown */
    color: #fff;
    padding: 14px 22px;
    border-radius: 36px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
    border: 2px solid #6d4c41;
}

.btn-one:hover,
.btn-one:focus,
.btn-one:active {
    background: #000000;
    border-color: #000000;
    color: white;
    outline: none;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .btn-one {
        padding: 8px 16px;
        font-size: 14px;
    }
}


/* BANNER */

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fdf8f6, #f5ebe7);
}

/* Text */
.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: #3e2723;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text h1 span {
    color: #6d4c41;
}

.hero-text p {
    font-size: 16px;
    color: #6d4c41;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: #6d4c41 !important;
    border-color: #6d4c41 !important;
    color: #fff !important;
    padding: 12px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: #5d4037 !important;
    border-color: #5d4037 !important;
    color: #fff !important;
    outline: none !important;
    box-shadow: none !important;
}

.btn-outline {
    border: 2px solid #6d4c41 !important;
    color: #6d4c41 !important;
    background: transparent !important;
    padding: 12px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active {
    background: #6d4c41 !important;
    color: #fff !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Image */
.hero-image img {
    width: 100%;
    max-width: 420px;
    display: block;
    margin-left: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-image img {
        margin: 30px auto 0;
    }
}


/* ABOUT US */

/* About Section */
.about-section {
    padding: 30px 0;
    background: #ffffff;
}

/* Image */
.about-image img {
    width: 100%;
    border-radius: 12px;
}

/* Content */
.about-content {
    padding-left: 40px;
}

.section-subtitle {
    color: #8d6e63;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #3e2723;
    margin-bottom: 20px;
}

.about-content p {
    color: #6d4c41;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Features */
.about-features {
    margin-bottom: 25px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.feature span {
    color: #6d4c41;
    font-weight: bold;
}

/* Button reuse */
.btn-primary {
    background: #6d4c41 !important;
    border-color: #6d4c41 !important;
    color: #fff !important;
    padding: 12px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: #5d4037 !important;
    border-color: #5d4037 !important;
    color: #fff !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
        text-align: center;
    }

    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .feature {
        justify-content: center;
    }
}


/* FEATURES */


/* Section */
.features-section {
    padding: 100px 0;
    background: #fdf8f6;
}

/* Heading */
.section-header h6 {
    color: #8d6e63;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #3e2723;
    margin-bottom: 15px;
}

.section-header p {
    color: #6d4c41;
    max-width: 600px;
    margin: 0 auto 50px;
}

/* Cards */
.feature-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 14px;
    text-align: left;
    transition: all 0.3s ease;
    margin-bottom: 25px;
    border: 1px solid #f0e6e2;
    position: relative;
    overflow: hidden;
}

/* Hover effect */
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Icon */
.feature-card .icon {
    font-size: 32px;
    margin-bottom: 15px;
}

/* Title */
.feature-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #3e2723;
    margin-bottom: 10px;
}

/* Text */
.feature-card p {
    color: #6d4c41;
    font-size: 15px;
    line-height: 1.6;
}

/* Subtle top accent */
.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: #6d4c41;
    opacity: 0;
    transition: 0.3s;
}

.feature-card:hover::before {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }

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


/* APP DOWNLOAD */

/* Banner Section */
.app-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #6d4c41, #4e342e);
}

/* Container layout */
.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* Text */
.banner-text h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.banner-text p {
    color: #f5ebe7;
    margin-bottom: 25px;
    line-height: 1.7;
}

/* Store Buttons */
.store-buttons {
    display: flex;
    gap: 15px;
}

.store-btn {
    background: #fff;
    border: 2px solid #fff;
    color: #4e342e;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.store-btn:hover,
.store-btn:focus,
.store-btn:active {
    background: #f5ebe7;
    border-color: #f5ebe7;
    color: #4e342e;
    outline: none;
    box-shadow: none;
}

/* Image */
.banner-image img {
    max-width: 320px;
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Responsive */
@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .store-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .banner-image img {
        margin-top: 20px;
    }
}




/* CTA SECTION */

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: #fff;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #6d4c41, #4e342e);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

/* Subtle glow effect */
.cta-box::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 60%);
    top: -50%;
    left: -50%;
}

/* Text */
.cta-box h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-box p {
    color: #f5ebe7;
    margin-bottom: 30px;
    font-size: 16px;
}

/* Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Note: The CTA section deliberately overrides .btn-primary to be white */
.cta-buttons .btn-primary {
    background: #fff !important;
    border: 2px solid #fff !important;
    color: #4e342e !important;
    padding: 12px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.cta-buttons .btn-primary:hover,
.cta-buttons .btn-primary:focus,
.cta-buttons .btn-primary:active {
    background: #f5ebe7 !important;
    border-color: #f5ebe7 !important;
    color: #4e342e !important;
    outline: none !important;
    box-shadow: none !important;
}

.cta-buttons .btn-outline-light {
    border: 2px solid #fff !important;
    background: transparent !important;
    color: #fff !important;
    padding: 12px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.cta-buttons .btn-outline-light:hover,
.cta-buttons .btn-outline-light:focus,
.cta-buttons .btn-outline-light:active {
    background: #fff !important;
    color: #4e342e !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-box h2 {
        font-size: 28px;
    }
}


/* FOOTER */

/* Footer */
.main-footer {
    background: #3e2723;
    color: #f5ebe7;
    padding-top: 60px;
}

/* Logo */
.footer-logo {
    height: 45px;
    margin-bottom: 15px;
}

/* Top Layout */
.footer-top {
    padding-bottom: 30px;
}

/* Headings */
.main-footer h5 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff;
}

/* Text */
.main-footer p {
    font-size: 14px;
    line-height: 1.6;
    color: #d7ccc8;
}

/* Links */
.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #d7ccc8;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #bcaaa4;
    margin-bottom: 0px;
}

.footer-bottom a {
    font-size: 13px;
    color: #bcaaa4;
    margin-bottom: 0px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-top {
        text-align: center;
    }

    .footer-links ul {
        padding: 0;
    }
}



/* Scope everything inside legal-section */
.legal-section {
    font-family: 'Poppins', sans-serif;
    background: #fdf8f6;
    color: #3e2723;
}

/* Container */
.legal-section .container {
    max-width: 900px;
    margin: auto;
    padding: 40px 20px;
}

/* Section */
.legal-section .legal-section {
    padding: 60px 0;
}

/* Headings */
.legal-section h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.legal-section h2 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 10px;
}

/* Paragraph */
.legal-section p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #5d4037;
}

.legal-section a {
    color: rgb(32, 32, 255);
}

/* Lists */
.legal-section ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.legal-section ul li {
    margin-bottom: 8px;
    font-size: 15px;
    color: #5d4037;
}

/* Last updated */
.legal-section .last-updated {
    font-size: 13px;
    color: #8d6e63;
    margin-bottom: 25px;
}

/* Spacing rhythm */
.legal-section h2+p,
.legal-section h2+ul {
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-section .container {
        padding: 30px 15px;
    }

    .legal-section h1 {
        font-size: 28px;
    }

    .legal-section h2 {
        font-size: 18px;
    }
}

/* Enhancements: Hover Effects & Animations */

/* Nav link hover animation */
.nav-menu a {
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #6d4c41;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Fix flex layout for buttons so icons align perfectly */
.btn-one,
.btn-primary,
.btn-outline,
.btn-outline-light,
.store-btn {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Button smooth hover transforms & shadows */
.btn-one:hover,
.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(109, 76, 65, 0.3);
}

.btn-outline:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(109, 76, 65, 0.15);
}

.btn-outline-light:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.store-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Feature card enhanced micro-interactions */
.feature-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.feature-card .icon {
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease !important;
}

.feature-card:hover .icon {
    transform: scale(1.3) rotate(5deg);
    color: #4e342e !important;
}

/* Utility Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}