.anton-regular {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-style: normal;
}

.special-gothic-expanded-one-regular {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-weight: 400;
    font-style: normal;
}

.elsie-regular {
    font-family: 'Elsie', serif;
    font-weight: 400;
    font-style: normal;
}

.elsie-black {
    font-family: 'Elsie', serif;
    font-weight: 900;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* make link underline none */
a {
    text-decoration: none;
    color: inherit;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
        sans-serif;
    overflow-x: hidden;
    color: white;
    background-color: black;
}

.hero-container {
    height: 100vh;
    position: relative;
    /* background: linear-gradient(
    135deg,
    #ff6b35 0%,
    #f7931e 25%,
    #ffd700 50%,
    #ff8c42 75%,
    #ff6b35 100%
  ); */
    /* background-size: 400% 400%; */
    /* animation: gradientShift 8s ease infinite; */
    background: url(./assets/images/hero-2.jpg) no-repeat center center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: radial-gradient(
      circle at 30% 40%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(circle at 70% 60%, rgba(0, 0, 0, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%); */
}

.hero-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background-image: radial-gradient(
      circle at 25% 25%,
      #ffffff08 0%,
      transparent 25%
    ),
    radial-gradient(circle at 75% 75%, #ffffff12 0%, transparent 25%),
    radial-gradient(circle at 50% 50%, #ffffff05 0%, transparent 50%);
  animation: shimmer 6s ease-in-out infinite alternate; */
}

@keyframes shimmer {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.7;
    }
}

header {
    position: relative;
    z-index: 100;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
}

nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    font-size: 16px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 1;
}

.cta-button {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.hero-content {
    position: relative;
    z-index: 10;
    height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    padding: 0 40px;
}

.content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.left-content {
    flex: 1;
    max-width: 520px;
    /* margin-top: 48px; */
}

.hero-title {
    font-size: clamp(40px, 8vw, 60px);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 24px;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); */
}

.features {
    list-style: none;
    margin-top: 40px;
    background: rgba(160, 160, 160, 0.10);
    backdrop-filter: blur(15px) saturate(1.5);
    padding: 24px 16px;
    border-radius: 16px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 32px;
    opacity: 0;
    animation: slideInLeft 0.8s ease forwards;
}

.feature-item:nth-child(1) {
    animation-delay: 0.2s;
}
.feature-item:nth-child(2) {
    animation-delay: 0.4s;
}
.feature-item:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-content {
    text-align: left;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 14px;
    line-height: 1.5;
}

.right-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-left: 60px;
}

.hero-subtitle {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 40px;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); */
    opacity: 0;
    animation: slideInRight 0.8s ease 0.3s forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.main-cta {
    padding-left: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    /* padding: 18px 36px; */
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: slideInUp 0.8s ease 0.5s forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.main-cta:hover::before {
    left: 100%;
}

.main-cta:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.arrow-right {
    height: 42px;
    width: 42px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    margin-left: 44px;
    transform: rotate(-45deg);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 0;
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    transform: scale(0.7);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.modal.show .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: white;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.modal-body {
    padding: 30px;
}

.modal-body p {
    margin: 0 0 24px 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.email-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.email-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 16px 20px;
    backdrop-filter: blur(10px);
}

.email-text {
    font-size: 18px;
    font-weight: 500;
    color: white;
    user-select: all;
    flex: 1;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.modal-actions {
    display: flex;
    justify-content: center;
}

.email-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.email-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Update main CTA button styles to work as button */
.main-cta {
    border: 2px solid rgba(255, 255, 255, 0.3);
    /* background: rgba(255, 255, 255, 0.15); */
    background: rgb(0 0 0 / 15%);

    color: white;
    cursor: pointer;
    font-family: inherit;
}

@media (max-width: 768px) {
    .hero-container {
        background-position: center 320px;
    }

    .content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .right-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .nav-links {
        display: none;
    }

    header {
        padding: 20px 20px;
    }

    .hero-content {
        /* height: calc(100vh - 175px); */
        padding: 0 20px;
    }

    .feature-content h3 {
        font-size: 12px;
        margin-bottom: 2px;
    }

    .feature-content p {
        font-size: 10px;
    }

    .feature-icon {
        width: 24px;
        height: 24px;
    }

    .feature-icon svg {
        width: 16px;
        height: 16px;
    }

    .modal-content {
        width: 95%;
        margin: 20px;
    }

    .modal-header {
        padding: 20px;
    }

    .modal-body {
        padding: 20px;
    }

    .email-display {
        /* flex-direction: column; */
        gap: 12px;
        align-items: stretch;
    }

    .copy-btn {
        margin-left: 0;
        align-self: center;
    }
}
