@font-face {
    font-family: 'San Francisco Display';
    src: url('assets/fonts/SanFranciscoDisplay-Regular.otf') format('opentype');
    font-weight: normal;
}

@font-face {
    font-family: 'San Francisco Display Black';
    src: url('assets/fonts/SanFranciscoDisplay-Black.otf') format('opentype');
    font-weight: bold;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'San Francisco Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
    background-color: #FFFCFA;
    line-height: 1.6;
    color: #27292E;
}

.black {
    font-family: 'San Francisco Display Black', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: bold;
}

header {
    background: url('assets/hero-background.png') no-repeat center top/cover;
    color: #fff;
    text-align: center;
    padding: 2rem;
}

main {
    background-color: #FFFCFA;
    max-width: 1440px;
    margin: 0 auto;
    color: #27292E;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0rem 2rem;
    position: relative;
}

.logo img {
    width: 50px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    transition: color 0.3s;
    cursor: pointer;
}

.nav-links li a:hover {
    color: #fafafa;
    text-decoration: underline;
}

.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.hamburger .fa-times {
    display: none;
}

.hamburger.active .fa-bars {
    display: none;
}

.hamburger.active .fa-times {
    display: block;
}

.nav-links.open {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(39, 41, 46, 0.9);
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    display: flex;
    border-radius: 10px;
    z-index: 20;
}

.nav-links.open li {
    margin: 0.5rem 0;
}

.hero {
    padding: 2rem 0;
    position: relative;
    max-width: 850px;
    margin: 0 auto;
}

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

.hero .play-button {
    background: #fff;
    border: none;
    padding: 1rem;
    font-size: 1.5rem;
    color: #FFAF00;
    border-radius: 50%;
    height: 60px;
    width: 60px;
    cursor: pointer;
    margin-bottom: 1rem;
    transition: background-color 0.3s;
}

.hero .play-button:hover {
    background-color: #FFAF00;
    color: #fff;
}

.hero .waiting-list {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.hero .waiting-list .email-input {
    position: relative;
    width: 70%;
    margin-right: 0.5rem;
}

.hero .waiting-list .email-input i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
}

.hero .waiting-list input {
    padding: 1rem;
    padding-left: 2.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 100px;
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.hero .waiting-list input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

#thank-you-message {
    text-align: center;
}

.hero .waiting-list button, #thank-you-message button {
    padding: 0rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    background: #FFAF00;
    border: none;
    color: #fff;
    border-radius: 100px;
    cursor: pointer;
    text-transform: uppercase;
    height: 50px;
    transition: background-color 0.3s;
    white-space: nowrap !important;
    display: inline-block;
}

.hero .waiting-list button:hover, #thank-you-message button:hover {
    background-color: #e68a00;
}

.thanks {
    font-weight: bold;
    margin-top: 15px;
}

#thank-you-message button i{
    margin-right: 10px;
    margin-bottom: 2px;
}

.features {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.feature.reverse {
    flex-direction: row-reverse;
}

.feature h2 {
    font-size: 2.5rem;
    line-height: 3rem;
}

.feature img {
    width: 500px;
    margin: 0 1rem;
}

.feature-text {
    max-width: 500px;
    margin: 50px; 

}


.reverse .feature-text {
    text-align: right;
}

.pricing {
    padding: 2rem 0;
    text-align: center;
    background-color: #FFFCFA;
}

.pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #27292E;
}

.pricing-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.pricing-card {
    background: #F7F7F7;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    width: 300px;
    margin: 1rem;
    font-size: 12px;

}

.pricing-card.card-highlight {
    background: #FFAF00;

}

.pricing-card h3 {
    font-size: 1.5rem;
    color: #27292E;
}

.pricing-card .price {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #27292E;
    font-weight: bold;
}

.price span{
    opacity: 0.5;
}
.pricing-card ul {
    padding: 0;
    margin: 0 auto;
    color: #666;
    width: 125px;
    text-align: center;
}

.pricing-card ul li {
    text-align: left;
}

.pricing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 16px;
    width: 100%;
    max-width: 1200px;
}

/* 📱 Mobile & iPad: Center the toggle */
@media (max-width: 1024px) {
    .pricing-toggle-container {
        justify-content: center;
        margin-left: 0;
    }
}

.toggle-label {
    color: #27292E;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #40434A;
}

input:checked + .slider:before {
    transform: translateX(24px);
}

.yearly-badge {
    background-color: #40434A;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 20px;
}


.pricing-rollover{
    font-size: 12px;
    color: #666;
    font-style: italic;
}



.card-highlight h3, .card-highlight .price, .card-highlight p, .card-highlight ul  {
    color:#fff;
}

.cta {
    text-align: center;
    padding: 2rem 0;
    max-width: 1150px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.5rem;
    line-height: 3rem;
    margin-bottom: 1rem;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 20px; 
}

@media (max-width: 768px) {
    .button-container {
        flex-direction: column;
        gap: 20px;
        align-items: center; 
    }
}


.app-store, .app-store-es, .google-play {
    background: #FFAF00;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 0.8rem;
    font-weight: bold;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 70px;
    margin: 20px;
    text-align: left;
}

.app-store i, .app-store-es i, .google-play i  {
    font-size: 2.5rem;
    margin-right: 10px;
}

.app-store .text-container, .app-store-es .text-container, .google-play .text-container {
    display: flex;
    flex-direction: column;
}

.app-store .small-text,.app-store-es .small-text, .google-play .small-text {
    font-size: 0.8rem;
}

.app-store .big-text, .app-store-es .big-text, .google-play .big-text {
    font-size: 1.5rem;
}

.app-store:hover, .app-store-es:hover, .google-play:hover {
    background-color: #e68a00;
}

.highlight {
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    width: 135px;
    height: 13px;
    background: url('assets/underline@3x.png') no-repeat center center;
    background-size: 135px 13px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.contact {
    background: #40434A;
    text-align: center;
    padding: 2rem;
    margin: 2rem auto;
    border-radius: 20px;
    width: 90%;
    color: #fff;
    max-width: 1200px;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 2.5rem;
}

.contact p {
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 665px;
    margin: 0 auto;
}

.contact-form .email-input {
    position: relative;
    width: 100%;
    margin-bottom: 1rem;
}

.contact-form .email-input i {
    position: absolute;
    left: 10px;
    top: 38%;
    padding-left: 5px;
    transform: translateY(-50%);
    color: #fff;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.5);
    color: #fff;
    padding-left: 40px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form textarea {
    height: 200px;
}

.contact-form button {
    padding: 1rem 2rem;
    background: #fff;
    border: none;
    color: #40434A;
    font-weight: bold;
    border-radius: 100px;
    cursor: pointer;
    text-transform: uppercase;
    align-self: flex-end;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #e6e6e6;
}

.footer-info {
    background: #FFAF00;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    width: 100%;
    margin: 0 auto;
}

.footer-info .footer-left {
    display: flex;
    align-items: center;
}

.footer-info .footer-left img {
    width: 50px;
    margin-right: 1rem;
}

.footer-info p {
    margin-bottom: 0;
    text-align: left;
}

.footer-info .social-media {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

.footer-info .social-media a {
    background: #fff;
    color: #FFAF00;
    margin: 0 0.5rem;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
}

.footer-info .social-media a:hover {
    background: #40434A;
    color: #fff;
}

.footer-info ul {
    list-style: none;
    display: flex;
    padding: 0;
}

.footer-info ul li {
    margin-left: 1rem;
}

.footer-info ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-info ul li a:hover {
    text-decoration: underline;
}
/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .nav-links.open {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 0.5rem 0;
    }

    .features {
        padding: 1rem 0;
    }

    .feature {
        flex-direction: column;
        text-align: center; 
    }

    .feature.reverse {
        flex-direction: column;
    }
    .feature.reverse h2, .feature.reverse p {
            text-align: center;
    }

    .feature img {
        margin: 0 0 1rem 0;
        max-width: 100%;
    }
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 80%;
    }
    .pricing-tab {
        width:400px;
     }       
    .cta {
        padding: 1rem 0;
    }

    .cta h2 {
    }

    .contact {
        padding: 1rem;
    }

    .contact h2 {
    }

    .footer-info {
        flex-direction: column;
        align-items: center;
    }

    .footer-info .footer-left,
    .footer-info .footer-right {
        flex-direction: column;
        align-items: center;
    }

    .footer-info p {
        margin-bottom: 0.5rem;
    }

    .hero .waiting-list {
        flex-direction: column;
    }

    .hero .waiting-list .email-input,
    .hero .waiting-list button {
        width: 100%;
        margin-bottom: 0.5rem;
    }    
}

.video-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.video-overlay video {
    width: 80%;
    height: auto;
    max-width: 1000px;
    max-height: 80%;
}


.earlyaccess, .login{
    text-align: center;
}    

.earlyaccess img, .login img {
    width: 100px;
}    

.registration-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
}

.registration-form .email-input,
.registration-form .password-input {
    position: relative;
    width: 70%;
    margin-bottom: 1rem;
}

.registration-form .email-input i,
.registration-form .password-input i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.registration-form input {
    padding: 1rem;
    padding-left: 2.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 100px;
    width: 100%;
    background: rgba(255, 165, 0, 0.2); 
    color: #666;
}

.registration-form input::placeholder {
    color: rgba(51, 51, 51, 0.7); 
}

.registration-form button {
    padding: 0rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    background: #FFAF00;
    border: none;
    color: #fff;
    border-radius: 100px;
    cursor: pointer;
    text-transform: uppercase;
    height: 50px;
    transition: background-color 0.3s;
    white-space: nowrap !important;
    display: inline-block;
}

.registration-form button:hover {
    background-color: #e68a00;
}

#error-message {
    color: #b20000;
    margin-top: 15px;
}

#success-message {
    text-align: center;
}

#success-message .thanks {
    font-weight: bold;
    margin-top: 15px;
}

#success-message button {
    padding: 0rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    background: #FFAF00;
    border: none;
    color: #fff;
    border-radius: 100px;
    cursor: pointer;
    text-transform: uppercase;
    height: 50px;
    transition: background-color 0.3s;
    white-space: nowrap !important;
    display: inline-block;
}

#success-message button:hover {
    background-color: #e68a00;
}

.user-list-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.user-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #ccc;
}

.user-item button {
    padding: 0.5rem 1rem;
    background: #FFAF00;
    border: none;
    color: #fff;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.user-item button:hover {
    background-color: #e68a00;
}

.android-link {
    text-align: center;
    margin-top: 20px;
}

.android-link a {
    color: #fff; 
    text-decoration: none;
    font-size: 15px;
}

.android-link a:hover {
    text-decoration: underline;
}

.login-form button, 
.login-form input,
.login-form .email-input, 
.loging-form .password-input {
    width:350px;
}

.alt-login {
  text-align: center;
  margin-top: 20px;
}

.alt-btn {
    padding: 0rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    background: #27292E;
    border: none;
    color: #fff;
    border-radius: 100px;
    cursor: pointer;
    text-transform: uppercase;
    height: 50px;
    transition: background-color 0.3s;
    white-space: nowrap !important;
    display: inline-block;
    width:350px;
}

.alt-btn i {
  font-size: 18px;
  margin-right:15px;
}

.google-btn:hover {
  background-color: #c1351d;
}

.apple-btn i {
  font-size: 23px;
}


.apple-btn:hover {
  background-color: gray;
}

.separator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 350px; /* The total width of the separator */
    margin: 20px auto; /* Center the separator */
}

.separator span {
    background: #fff;
    padding: 0 10px;
    font-weight: bold;
    font-size: 14px;
    color: #777;
    text-align: center;
    white-space: nowrap; /* Prevents text from wrapping */
}

.separator::before,
.separator::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #ddd;
    margin: 5px;
}

.register-text {
    margin-top: 20px;
    font-size: 14px;
    color: #555;
    text-align: center;
}

.register-text a {
    color: #FFAF00; /* Adjust to match your brand color */
    font-weight: bold;
    text-decoration: none;
}

.register-text a:hover {
    text-decoration: underline;
}

.profile {
    text-align: center;
    padding: 2rem 0;
    max-width: 400px;
    margin: 0 auto;
}

.profile img {
    width: 100px;
    margin-bottom: 10px;
}

.profile-info {
    padding: 1.5rem;
    margin: 20px;
}

.profile-item {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #27292E;
    margin-bottom: 10px;
}

.profile-item i {
    color: #FFAF00;
    font-size: 18px;
    margin-right: 10px;
}

.profile-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.profile-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    background: #FFAF00;
    border: none;
    color: #fff;
    border-radius: 100px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s;
    width: 100%;
    max-width: 280px;
}

.profile-btn i {
    margin-right: 10px;
}

.profile-btn:hover {
    background-color: #e68a00;
}

.logout-btn {
    background: #27292E;
}

.logout-btn:hover {
    background-color: #444;
}

.checkout {
    text-align: center;
    padding: 2rem 0;
    max-width: 400px;
    margin: 0 auto;
}

.checkout img {
    width: 100px;
    margin-bottom: 10px;
}

.checkout-form {
    margin-top: 20px;
}

.subscription-option {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 12px 15px;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid #ddd;
    transition: all 0.3s ease;
    font-size: 16px;
    width: 250px;
    margin-bottom: 20px;
}

.subscription-option:hover {
    border-color: #FFAF00;
    background: #FFFAF0;
}

.subscription-option input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #FFAF00; /* Orange when checked */
}

.subscription-option span {
    font-weight: 500;
    color: #333;
    flex: 1; /* Ensures text takes up the remaining space */
}

.subscription-option input:checked + span {
    color: #FFAF00;
    font-weight: bold;
}

.back-link {
    display: block;
    margin-top: 20px;
    font-size: 14px;
    color: #FFAF00;
    text-decoration: none;
    font-weight: bold;
}

.back-link:hover {
    text-decoration: underline;
}

.back-link i {
    margin-right: 5px;
}

/* Checkout Success & Cancel Page Styling */
.checkout-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #FFFCFA;
}

.checkout-container {
    background: #fff;
    padding: 30px;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.checkout-message {
    font-size: 18px;
    color: #27292E;
    font-weight: bold;
    margin-bottom: 10px;
}

.checkout-status {
    font-size: 16px;
    color: #666;
}

.checkout-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.success-icon {
    color: #2ecc71; 
}

.cancel-icon {
    color: #e74c3c;
}

.pricing-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 1rem;
}

.checkout-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    background: #FFAF00;
    color: #fff;
    border-radius: 100px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s;
}

.checkout-btn:hover {
    background-color: #e68a00;
}

.card-highlight .checkout-btn {
    background: #F7F7F7; 
    color: #27292E; 
}

.card-highlight .checkout-btn:hover {
    background: #ddd; 
}

