@font-face {
    font-family: 'Milkyway';
    src: url('./Milkyway.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


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

body {
    font-family: 'Arial', sans-serif;
     background: linear-gradient(135deg, #FFEB3B 0%, #f9d333 50%, #ffffff 100%);

}

.container {
    position: relative;
    width: 100%;
    min-height: 1000px;
}

/* Logo */
.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    cursor: grab;
}

.logo-image {
    width: 155px;
    height: auto;
    max-height: 120px;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

/* .wrap_container {
    height: calc(100vh - 200px);
    overflow: auto;
} */

/* Main Title Text */
.main-title-text {
    position: absolute;
    top: 8vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    font-family: 'Milkyway', Impact, 'Arial Black', sans-serif;
    width: 90%;
    max-width: 1200px;
}

.text-line {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 0;
    flex-wrap: wrap;
    line-height: 0.9;
}

.letter {
    font-size: 4rem;
    font-weight: normal;
    color: #F7F662;
    text-shadow: 4px 4px 0 #FF6B35, -2px -2px 0 #FF6B35, 2px -2px 0 #FF6B35, -2px 2px 0 #FF6B35;
    -webkit-text-stroke: 3px #000000;
    text-stroke: 3px #000000;
    margin: 2px;
    transition: all 0.3s ease;
    cursor: grab;
    position: relative;
    display: inline-block;
    user-select: none;
    touch-action: none;
    font-family: 'Milkyway', Impact, 'Arial Black', sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.letter:hover {
    transform: scale(1.2) rotate(5deg);
    color: #3965E9;
    filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.4));
}

.letter.dragging {
    z-index: 2000;
    cursor: grabbing;
    transform: scale(1.3) rotate(10deg);
    color: #FF1493;
    filter: drop-shadow(6px 6px 12px rgba(0, 0, 0, 0.6));
}

.letter-space {
    width: 1rem;
    display: inline-block;
}


/* Line positioning */
.line-1 {
    font-size: 4rem;
}

.line-2 {
    font-size: 4rem;
    margin-left: 0;
}

.line-3 {
    font-size: 5.5rem;
    margin-left: 0;
}

/* Subtitle */
.subtitle {
    position: absolute;
    top: 40vh;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    width: 90%;
    max-width: 600px;
}

.subtitle p {
    font-size: 14px;
    color: #333;
    margin: 5px 0;
    font-weight: bold;
    cursor: default;
}

/* Description */
.description {
    position: absolute;
    top: 50vh;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 700px;
    text-align: center;
    z-index: 10;
    padding: 0 20px;
}

.description p {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.6;
    cursor: default;
}

/* Form */
.form-container {
    position: absolute;
    top: 62vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 90%;
    max-width: 500px;
    margin-bottom: 100px;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    width: 100%;
}

.form-row {
    display: flex;
    gap: 15px;
    width: 100%;
    justify-content: center;
}

.signup-form input {
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    flex: 1;
    max-width: 200px;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: text;
}

.signup-form input[type="email"],
.signup-form input[type="tel"] {
    width: 100%;
    max-width: 415px;
    flex: none;
}

.signup-form button {
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #333;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 150px;
}

.signup-form button:hover {
    background: linear-gradient(45deg, #FFA500, #FFD700);
}

.status-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    display: none;
}

.status-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.status-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.status-message.loading {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
    display: block;
}

/* Construction Truck */
.construction-truck {
    position: fixed;
    bottom: -13px;
    left: 100px;
    cursor: grab;
    transition: transform 0.3s ease;
    z-index: 9999;
}

.construction-truck:hover {
    transform: scale(1.05);
}

/* Clouds */
.cloud {
    position: absolute;
    background: #fff;
    border-radius: 50px;
    cursor: grab;
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: #fff;
    border-radius: 50px;
}

.cloud1 {
    width: 100px;
    height: 40px;
    top: 100px;
    right: 200px;
}

.cloud1::before {
    width: 50px;
    height: 50px;
    top: -25px;
    left: 10px;
}

.cloud1::after {
    width: 60px;
    height: 20px;
    top: -10px;
    right: 15px;
}

.cloud2 {
    width: 80px;
    height: 35px;
    top: 200px;
    right: 100px;
}

.cloud2::before {
    width: 40px;
    height: 40px;
    top: -20px;
    left: 10px;
}

.cloud2::after {
    width: 50px;
    height: 15px;
    top: -8px;
    right: 10px;
}

.cloud3 {
    width: 120px;
    height: 45px;
    top: 150px;
    right: 300px;
}

.cloud3::before {
    width: 60px;
    height: 60px;
    top: -30px;
    left: 15px;
}

.cloud3::after {
    width: 70px;
    height: 25px;
    top: -12px;
    right: 20px;
}

/* Digging Elements */
.dig-element {
    position: absolute;
    cursor: grab;
    z-index: 5;
    transition: transform 0.3s ease;
}

.dig-element:hover {
    transform: scale(1.1);
}

.dig-element img {
    width: 100px;
    height: auto;
    max-height: 80px;
}



/* Mud Hills */
.mountain {
    position: fixed;
    bottom: 0;
    z-index: 1;
}

.mountain1 {
    width: 300px;
    height: 120px;
    background: linear-gradient(45deg, #8B4513 0%, #A0522D 50%, #CD853F 100%);
    border-radius: 150px 150px 0 0;
    left: 0;
    position: fixed;
    bottom: 0;
}

.mountain1::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 80px;
    width: 60px;
    height: 30px;
    background: #654321;
    border-radius: 30px 30px 0 0;
}

.mountain1::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 180px;
    width: 40px;
    height: 20px;
    background: #5D4037;
    border-radius: 20px 20px 0 0;
}

.mountain2 {
    width: 400px;
    height: 100px;
    background: linear-gradient(45deg, #A0522D 0%, #8B4513 50%, #654321 100%);
    border-radius: 200px 200px 0 0;
    left: 250px;
    position: fixed;
    bottom: 0;
}

.mountain2::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 120px;
    width: 50px;
    height: 25px;
    background: #5D4037;
    border-radius: 25px 25px 0 0;
}

.mountain2::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 250px;
    width: 70px;
    height: 35px;
    background: #654321;
    border-radius: 35px 35px 0 0;
}

.mountain3 {
    width: 350px;
    height: 140px;
    background: linear-gradient(45deg, #654321 0%, #8B4513 50%, #A0522D 100%);
    border-radius: 175px 175px 0 0;
    right: 200px;
    position: fixed;
    bottom: 0;
}

.mountain3::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 100px;
    width: 80px;
    height: 40px;
    background: #5D4037;
    border-radius: 40px 40px 0 0;
}

.mountain3::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 220px;
    width: 45px;
    height: 22px;
    background: #654321;
    border-radius: 22px 22px 0 0;
}

.mountain4 {
    width: 250px;
    height: 90px;
    background: linear-gradient(45deg, #8B4513 0%, #654321 50%, #5D4037 100%);
    border-radius: 125px 125px 0 0;
    right: 0;
    position: fixed;
    bottom: 0;
}

.mountain4::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 60px;
    width: 55px;
    height: 28px;
    background: #A0522D;
    border-radius: 27px 27px 0 0;
}

.mountain4::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 150px;
    width: 35px;
    height: 18px;
    background: #654321;
    border-radius: 17px 17px 0 0;
}

/* Draggable states */
.draggable {
    transition: transform 0.1s ease;
}

.draggable:hover {
    transform: scale(1.05);
}

.draggable.dragging {
    z-index: 1000;
    transform: scale(1.1);
    cursor: grabbing;
}

/* Drag indicator */
.drag-indicator {
    position: fixed;
    background: #4285F4;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.drag-indicator.show {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .letter {
        font-size: 5rem;
    }

    .line-1 {
        font-size: 5.5rem;
    }

    .line-2 {
        font-size: 5rem;
    }

    .line-3 {
        font-size: 4.5rem;
    }
}

@media (max-width: 768px) {
    .logo {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 80px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #FFEB3B;
    }

    /* .container {
        min-height: calc(100vh - 200px);
        overflow: auto;
    } */

    .logo-image {
        width: 100px;
        max-height: 100px;
    }

    .main-title-text {
        top: 14vh;
        width: 95%;
    }

    .text-line {
        margin: 0px 0;
        line-height: 0.8;
    }

    .letter {
        font-size: 2.8rem;
        margin: 0px;
        letter-spacing: 0px;
    }

    .line-1 {
        font-size: 3.2rem;
    }

    .line-2 {
        font-size: 2.8rem;
    }

    .line-3 {
        font-size: 2.4rem;
    }

    .subtitle {
        top: 40vh;
        width: 95%;
        padding: 0 30px;
    }

    .subtitle p {
        font-size: 0.9rem;
        margin: 2px 0;
    }

    .description {
        top: 48vh;
        width: 95%;
        padding: 0 30px;
    }

    .description p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .form-container {
        top: 62vh;
        width: 95%;
        max-width: none;
    }

    .form-row {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .signup-form input {
        width: 100%;
        max-width: 300px;
    }

    .signup-form input[type="email"] {
        max-width: 300px;
    }

    .signup-form input[type="email"],
    .signup-form input[type="tel"] {
        max-width: 280px;
    }

    .signup-form button {
        width: 100%;
        max-width: 300px;
    }

    /* Adjust decorative elements for mobile */
    .construction-truck {
        left: 10px;
        bottom: -53px;
        transform: scale(0.6);
        z-index: 2;
    }

    .cloud1,
    .cloud2,
    .cloud3 {
        transform: scale(0.7);
    }

}

@media (max-width: 480px) {
    .logo {
        top: 0px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 100;
        position: fixed;
        width: 100%;
        height: 80px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #FFEB3B;
    }

    .logo-image {
        width: 110px;
        max-height: 80px;
    }

    .main-title-text {
        top: 100px;
        width: 100%;
        max-width: none;
    }

    .text-line {
        margin: 5px 0;
        line-height: 1.1;
        justify-content: center;
        width: 100%;
    }

    .letter {
        font-size: 3.2rem;
        letter-spacing: 2px;
        margin: 2px;
    }

    .line-1 {
        font-size: 3.5rem;
    }

    .line-2 {
        font-size: 3.2rem;
    }

    .line-3 {
        font-size: 2.8rem;
    }

    .subtitle {
        top: 320px;
        width: 100%;
        padding: 0 30px;
    }

    .subtitle p {
        font-size: 0.8rem;
        margin: 3px 0;
    }

    .description {
        top: 380px;
        padding: 0 30px;
        width: 100%;
    }

    .description p {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .form-container {
        top: 480px;
        width: 100%;
        margin-bottom: 150px;
    }

    .signup-form {
        gap: 10px;
        padding: 40px 20px;
    }

    .signup-form input {
        padding: 12px 15px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }

    .signup-form button {
        padding: 12px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }

    .construction-truck {
        transform: scale(0.4) !important;
        left: -40px;
        bottom: -53px;
        z-index: 2;
    }

    .cloud1,
    .cloud2,
    .cloud3 {
        transform: scale(0.5);
    }

}