/* Font Face Declarations */
@font-face {
    font-family: 'Decalotype';
    src: url('fonts/Decalotype-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Decalotype';
    src: url('fonts/Decalotype-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Decalotype';
    src: url('fonts/Decalotype-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Decalotype';
    src: url('fonts/Decalotype-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Decalotype';
    src: url('fonts/Decalotype-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Decalotype';
    src: url('fonts/Decalotype-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Haas Display';
    src: url('fonts/NeueHaasDisplayRoman.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Haas Display';
    src: url('fonts/NeueHaasDisplayMediu.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Haas Display';
    src: url('fonts/NeueHaasDisplayBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Neue Haas Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    scroll-behavior: smooth;
}

.hidden {
    display: none;
}

body {
    padding-top: 40px; /* Further reduced from 60px */
}

.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1280px;
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.app-logo {
    width: 48px;
    height: 48px;
    border-radius: 8px;
}

.app-wordmark {
    height: 32px;
    width: auto;
}

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

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #666;
}

.download-btn {
    background: #000;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.download-btn:hover {
    background: #333;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    color: #333;
}

.hamburger:hover {
    color: #666;
}

/* Hero Section */
.hero {
    padding: 4rem 2rem 0.25rem 2rem;
    min-height: calc(65vh - 40px);
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 0 1rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-family: 'Decalotype', sans-serif;
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 800;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2.5rem;
}

.app-store-button {
    display: inline-block;
    transition: transform 0.3s ease;
    margin-top: 1rem;
}

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

.app-store-button img {
    height: 85px;
    width: auto;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .app-store-button img {
        height: 80px;
    }
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column-reverse;
        text-align: left;
        gap: 0.5rem;
        padding: 0 1rem;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2.4rem;
    }
    
    .hero {
        padding: 3rem 2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .download-btn {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .navbar {
        padding: 0.8rem 1rem;
    }
    
    .app-store-button {
        margin-top: 0.5rem; /* Reduced from 1rem */
    }
    
    .app-store-button img {
        height: 75px;
    }

    .stats-content {
        text-align: left;
        padding: 0 1rem;
    }

    .hero-image img {
        max-width: 120%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2.5rem 1.5rem;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .app-wordmark {
        height: 28px;
        width: auto;
    }
    
    .app-logo {
        width: 40px;
        height: 40px;
    }

    .stats-content {
        text-align: left;
        padding: 0 1rem;
    }

    .app-store-button {
        margin-top: 0.25rem; /* Even smaller margin on very small screens */
    }

    .app-store-button img {
        height: 70px;
    }
}

/* Stats Banner Section */
.stats-banner {
    background: white;
    padding: 3rem 2rem;
    margin: 1rem 0;
}

.stats-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    text-align: center;
}

.stats-number {
    font-family: 'Decalotype', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    white-space: nowrap; /* Prevent number from wrapping */
}

.stats-text {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
    text-align: left;
}

.stats-text a {
    color: inherit; /* Inherit the text color */
    text-decoration: none; /* Remove underline */
    font-weight: 500; /* Reduced from 600 to 500 for less boldness */
}

.stats-text a:hover {
    color: inherit; /* Keep the same color on hover */
    text-decoration: none; /* Keep no underline on hover */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .stats-banner {
        padding: 3.5rem 2rem;
    }
    
    .stats-content {
        gap: 1.5rem;
    }
    
    .stats-number {
        font-size: 4rem;
    }
    
    .stats-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .stats-banner {
        padding: 3rem 1.5rem;
    }
    
    .stats-container {
        justify-content: center;
    }
    
    .stats-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .stats-number {
        font-size: 3.5rem;
    }
    
    .stats-text {
        text-align: left;
    }

    .how-to-section {
        padding: 3rem 1.5rem;
        width: 95%;
        margin: 2rem auto;
    }
    
    .how-to-container {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .how-to-content {
        text-align: left;
    }
    
    .how-to-content h2 {
        font-size: 2rem;
    }
    
    .how-to-image {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .stats-banner {
        padding: 2.5rem 1.5rem;
    }
    
    .stats-number {
        font-size: 3rem;
    }
    
    .stats-text {
        font-size: 1.1rem;
    }

    .how-to-section {
        padding: 2.5rem 1rem;
        margin: 1.5rem auto;
        width: 95%;
    }
    
    .how-to-container {
        padding: 0 1rem;
    }
    
    .how-to-content h2 {
        font-size: 1.8rem;
    }
    
    .how-to-content p {
        font-size: 1rem;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
}

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

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    gap: 1rem;
}

.mobile-menu-content a {
    font-size: 1.1rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.mobile-menu-content a:hover {
    color: #666;
    background: #f8f9fa;
}

.mobile-download-btn {
    background: #000;
    color: white !important;
    padding: 0.8rem 1.6rem !important;
    border-radius: 8px;
    margin-top: 0.5rem;
    text-align: center;
}

.mobile-download-btn:hover {
    background: #333;
    color: white !important;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links, .download-btn {
        display: none;
    }
    
    .navbar {
        padding: 0.8rem 1rem;
    }
}

/* How to Section */
.how-to-section {
    background: linear-gradient(135deg, rgba(255, 64, 0, 0.05) 0%, rgba(255, 64, 0, 0.08) 100%);
    padding: 4rem 0;
    margin: 2rem 0;
    border-radius: 16px;
    width: 95%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.how-to-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 0 2rem;
}

.how-to-content {
    flex: 1;
}

.how-to-content h2 {
    font-family: 'Decalotype', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.how-to-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
}

.how-to-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
}

.how-to-image img {
    max-width: 60%;
    height: auto;
    border-radius: 12px;
}

@media (max-width: 1024px) {
    .how-to-container {
        gap: 3rem;
    }
    
    .how-to-content h2 {
        font-size: 2.2rem;
    }
    
    .how-to-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .how-to-section {
        padding: 3rem 1.5rem;
        width: 95%;
        margin: 2rem auto;
    }
    
    .how-to-container {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .how-to-content {
        text-align: left;
    }
    
    .how-to-content h2 {
        font-size: 2rem;
    }
    
    .how-to-image {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .how-to-section {
        padding: 2.5rem 1rem;
        margin: 1.5rem auto;
        width: 95%;
    }
    
    .how-to-container {
        padding: 0 1rem;
    }
    
    .how-to-content h2 {
        font-size: 1.8rem;
    }
    
    .how-to-content p {
        font-size: 1rem;
    }
}

/* Footer Styles */
.footer {
    background: #000;
    color: #fff;
    padding: 4rem 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo .app-logo {
    width: 40px;
    height: 40px;
}

.footer-logo .app-wordmark {
    height: 32px;
    width: auto;
}

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

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-download .app-store-button img {
    height: 40px;
    width: auto;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 1.5rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .footer-download .app-store-button img {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2.5rem 1rem;
    }
    
    .footer-logo .app-logo {
        width: 32px;
        height: 32px;
    }
    
    .footer-logo .app-wordmark {
        height: 28px;
        width: auto;
    }
    
    .footer-download .app-store-button img {
        height: 30px;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
        text-align: center;
    }
}

/* Why Choose Section */
.why-choose-section {
    padding: 4rem 2rem;
    background: white;
    width: 95%;
    max-width: 1280px;
    margin: 2rem auto;
}

.section-title {
    font-family: 'Decalotype', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 16px;
    text-align: left;
    transition: transform 0.3s ease;
}

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

.emoji {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Decalotype', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

@media (max-width: 1024px) {
    .why-choose-section {
        padding: 3.5rem 1.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .feature-card {
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .cards-container {
        gap: 1.5rem;
    }
    
    .feature-card {
        min-width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .why-choose-section {
        padding: 2.5rem 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-card p {
        font-size: 1rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 4rem 2rem;
    background: white;
    width: 95%;
    max-width: 1280px;
    margin: 2rem auto;
}

.faq-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
}

.faq-item h3 {
    font-family: 'Decalotype', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.faq-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

@media (max-width: 1024px) {
    .faq-section {
        padding: 3.5rem 1.5rem;
    }
    
    .faq-container {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 1rem;
    }
    
    .faq-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-item {
        padding: 1.25rem;
    }
    
    .faq-item h3 {
        font-size: 1.2rem;
    }
    
    .faq-item p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 2.5rem 1rem;
    }
    
    .faq-item {
        padding: 1rem;
    }
}
