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

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Background Pattern */
.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 48, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(7, 193, 96, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Logo Section */
.logo-section {
    text-align: center;
    margin-bottom: 2rem;
}

.logo-container {
    display: inline-block;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #d0d0d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* margin-bottom: 0.5rem; */
    letter-spacing: -0.02em;
}

.logo-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: #888888;
    font-weight: 400;
    /* text-transform: uppercase; */
    letter-spacing: 0.1em;
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
}

.animated-text-container {
    margin-bottom: 2rem;
}

.main-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.word-morph {
    background: linear-gradient(135deg, #ff7730 0%, #ff4757 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    min-width: 120px;
    text-align: center;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive word-morph adjustments */
@media (max-width: 768px) {
    .word-morph {
        min-width: 80px;
    }
}

@media (max-width: 480px) {
    .word-morph {
        min-width: 50px;
        font-size: 0.95em;
    }

    .main-heading {
        font-size: 1.6rem !important;
        line-height: 1.3;
        word-spacing: -0.1em;
    }
}

.word-morph.morphing {
    transform: scale(1.1);
    filter: blur(2px);
}

.word-morph.transformed {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1);
    filter: blur(0);
}

.greek-translation {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    margin-top: 0.5rem;
}

.greek-translation.show {
    opacity: 1;
    transform: translateY(0);
}

.greek-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: #888888;
    font-style: italic;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight {
    background: linear-gradient(135deg, #ff7730 0%, #ff4757 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.25rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
}

.description {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #999999;
    line-height: 1.7;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    width: 100%;
    max-width: 800px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 119, 48, 0.1);
    border-radius: 12px;
    color: #ff7730;
}

.feature-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: #999999;
    font-weight: 400;
}

/* CTA Section */
.cta-section {
    text-align: center;
    width: 100%;
    max-width: 500px;
}

.email-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.5rem;
    backdrop-filter: blur(10px);
}

.email-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    font-family: 'Open Sans', sans-serif;
}

.email-input::placeholder {
    color: #666666;
}

.notify-btn {
    background: linear-gradient(135deg, #ff7730 0%, #ff4757 100%);
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 119, 48, 0.3);
}

.notify-btn:active {
    transform: translateY(0);
}

.form-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: #666666;
    font-weight: 400;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem;
    color: #666666;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
    font-family: 'Open Sans', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding: 1.5rem;
    }

    .logo {
        font-size: 3rem;
    }

    .main-heading {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .email-form {
        flex-direction: column;
        gap: 1rem;
    }

    .notify-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 1rem;
    }

    .logo {
        font-size: 2.5rem;
    }

    .main-heading {
        font-size: 1.8rem;
    }

    .hero-section {
        margin-bottom: 3rem;
    }

    .features-grid {
        margin-bottom: 3rem;
    }

    .feature-item {
        padding: 1.5rem 1rem;
    }
}

/* Smooth animations */
@media (prefers-reduced-motion: no-preference) {
    .logo {
        animation: fadeInUp 0.8s ease-out;
    }

    .main-heading {
        animation: fadeInUp 0.8s ease-out 0.2s both;
    }

    .subtitle {
        animation: fadeInUp 0.8s ease-out 0.4s both;
    }

    .description {
        animation: fadeInUp 0.8s ease-out 0.6s both;
    }

    .features-grid {
        animation: fadeInUp 0.8s ease-out 0.8s both;
    }

    .cta-section {
        animation: fadeInUp 0.8s ease-out 1s both;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*
 Floating Cooking Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: floatAround 8s ease-in-out infinite;
    animation-delay: var(--delay);
    left: var(--x);
    top: var(--y);
}

@keyframes floatAround {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.6;
    }

    25% {
        transform: translate(20px, -30px) rotate(90deg);
        opacity: 0.8;
    }

    50% {
        transform: translate(-15px, -20px) rotate(180deg);
        opacity: 0.4;
    }

    75% {
        transform: translate(25px, 10px) rotate(270deg);
        opacity: 0.7;
    }
}

/* Enhanced background animation */
.background-pattern {
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

/* Logo pulse animation */
.logo {
    animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {

    0%,
    100% {
        transform: scale(1);
        filter: brightness(1);
    }

    50% {
        transform: scale(1.02);
        filter: brightness(1.1);
    }
}

/* Email form glow effect */
.email-form {
    position: relative;
    overflow: hidden;
}

.email-form::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(255, 119, 48, 0.1), transparent);
    border-radius: 14px;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.8;
    }
}

/* Button hover enhancement */
.notify-btn {
    position: relative;
    overflow: hidden;
}

.notify-btn::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.5s;
}

.notify-btn:hover::before {
    left: 100%;
}

/* Responsive floating elements */
@media (max-width: 768px) {
    .floating-element {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .floating-element {
        font-size: 1.2rem;
        opacity: 0.4;
    }
}