:root {
    --mango: #FFA817;
    --sunset: #FF6500;
    --eggplant: #57383D;
    --frost: #9DC7C8;
    --slate: #477890;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #2c3e50;
}

@font-face {
    font-family: 'Bryant';
    src: url('Bryant-RegularAlternate.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Ostrich';
    src: url('OstrichSans-Black.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'Bryant', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--eggplant);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo-img {
    height: 80px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--eggplant);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--mango);
}

.nav-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.nav-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-app-store {
    display: flex;
    align-items: center;
}

.nav-app-store-badge {
    height: 32px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-app-store:hover .nav-app-store-badge {
    transform: translateY(-1px);
}

.mobile-app-store {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
}

.mobile-app-store-badge {
    height: 40px;
    width: auto;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--eggplant);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn:hover {
    color: var(--mango);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 1rem 2rem;
    text-decoration: none;
    color: var(--eggplant);
    font-weight: 500;
    border-bottom: 1px solid var(--light-gray);
    transition: background-color 0.3s ease;
}

.mobile-menu a:hover {
    background-color: var(--light-gray);
    color: var(--mango);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

/* Hero Section */
.hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--frost) 0%, var(--slate) 100%);
    color: var(--white);
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* Hero Slider */
.hero-slider {
    margin-bottom: 0.5rem;
    width: 100%;
    max-width: 800px;
}

.swiper-container {
    width: 100%;
    max-width: 1200px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin: 0 auto;
}

.swiper-slide {
    width: 330px;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Pagination dots */
.swiper-pagination {
    position: relative;
    margin-top: 20px;
    text-align: center;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    transition: all 0.3s ease;
    display: inline-block;
}

.swiper-pagination-bullet-active {
    background: var(--mango);
    transform: scale(1.2);
}

/* Hero Content */
.hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 60px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--mango);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--sunset);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--slate);
}

.app-store-badge {
    display: inline-block;
    transition: transform 0.3s ease;
}

.app-store-badge:hover {
    transform: translateY(-2px);
}

.app-store-badge img {
    height: 60px;
    width: auto;
}

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

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 3rem;
    color: var(--eggplant);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.01em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--eggplant);
}

.feature-card p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Showcase Section */
.showcase {
    padding: 80px 0;
    background: var(--white);
}

.showcase .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.showcase-content h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--eggplant);
}

.showcase-content p {
    font-size: 1.25rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

.showcase-image {
    text-align: center;
    background: var(--white);
    padding: 20px;
    border-radius: 20px;
}

.showcase-img {
    width: 75%;
    height: auto;
    border-radius: 20px;
}

/* Download Section */
.download {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, var(--mango) 0%, var(--sunset) 100%);
    color: var(--white);
    text-align: center;
}

.download-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    max-width: 65%;
    margin: 0 auto;
    width: 100%;
}



/* Footer */
.footer {
    background: var(--eggplant);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.footer-logo-img {
    height: 30px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-text {
    opacity: 0.8;
    margin-bottom: 1rem;
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

.footer-links a,
.footer-links a:visited,
.footer-links a:active,
.footer-links a:focus {
    color: var(--frost) !important;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-links .separator {
    color: var(--frost);
    opacity: 0.6;
    font-size: 0.9rem;
}

.social-links {
    margin-top: 1rem;
}

.social-link {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .swiper-container {
        width: 100%;
        max-width: 500px;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    
    .swiper-slide {
        width: 250px;
    }
    
    .hero-slider {
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .showcase .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .download-form {
        flex-direction: column;
        align-items: center;
    }
    
    .email-input {
        min-width: 100%;
    }
    
    .footer .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Contact Page Styles */
.contact-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--mango) 0%, var(--sunset) 100%);
    color: var(--white);
    text-align: center;
}

.contact-title {
    font-family: 'Ostrich', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.contact-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

.contact-info {
    padding: 80px 0;
    background: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.contact-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-family: 'Ostrich', sans-serif;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--eggplant);
}

.contact-card p {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

.contact-email {
    display: inline-block;
    color: var(--mango);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-email:hover {
    color: var(--sunset);
}

.contact-link {
    display: inline-block;
    color: var(--slate);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--eggplant);
}

.subscription-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.subscription-links .contact-link {
    display: block;
    padding: 0.75rem 1.5rem;
    background: var(--light-gray);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.subscription-links .contact-link:hover {
    background: var(--eggplant);
    color: var(--white);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
}
