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

body {
    font-family: Helvetica, Arial, sans-serif;
    background-color: #00b6fb;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1400px;
    padding: 40px;
}

.content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.text-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.main-title {
  font-family: "chaloops", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(60px, 8vw, 120px);

  color: #ffffff;
  line-height: 1;
  text-transform: lowercase;
  letter-spacing: -2px;
}

.subtitle {
    font-size: clamp(20px, 2.5vw, 36px);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.3;
}

.email-form {
    display: flex;
    gap: 0;
    max-width: 600px;
    margin-top: 20px;
}

.email-input {
    flex: 1;
    padding: 20px 30px;
    font-size: 18px;
    font-family: 'chamloop', sans-serif;
    background-color: #ffffff;
    border: none;
    outline: none;
    color: #a7c3d3;
    border-radius: 0;
}

.email-input::placeholder {
    color: #a7c3d3;
    opacity: 1;
}

.email-input:focus {
    outline: none;
}

.submit-btn {
    padding: 20px 50px;
    font-size: 18px;
    font-family: 'chamloop', sans-serif;
    font-weight: 700;
    background-color: #002350;
    color: #a7c3d3;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

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

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 100%;
    max-width: 600px;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Success Message */
.success-message {
    display: none;
    padding: 15px 25px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: 8px;
    font-size: 16px;
    margin-top: 20px;
    animation: fadeIn 0.5s ease;
}

.success-message.show {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content {
        gap: 60px;
    }
    
    .logo {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .text-section {
        order: 2;
    }
    
    .logo-section {
        order: 1;
    }
    
    .logo {
        max-width: 400px;
    }
    
    .email-form {
        flex-direction: column;
        margin: 20px auto 0;
    }
    
    .email-input,
    .submit-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px;
    }
    
    .logo {
        max-width: 300px;
    }
    
    .email-input,
    .submit-btn {
        padding: 16px 24px;
        font-size: 16px;
    }
}
