﻿@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&family=Gloria+Hallelujah&display=swap');

body {
    background: #181828;
    margin: 0;
    font-family: 'Gloria Hallelujah', 'Permanent Marker', cursive, Arial, sans-serif;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32"><polygon points="0,32 8,24 28,4 28,12 20,20 12,28" fill="yellow" stroke="black" stroke-width="2"/><rect x="28" y="4" width="4" height="8" fill="gray" stroke="black" stroke-width="2"/></svg>') 0 32, auto;
}

.doodle-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

.doodle-sun {
    position: absolute;
    top: 40px;
    left: 60px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at 60% 40%, #ffe066 70%, #ffb300 100%);
    border-radius: 50%;
    border: 6px dashed #ffb300;
    box-shadow: 0 0 40px 10px #ffe06688;
    z-index: 1;
    filter: drop-shadow(0 0 8px #ffb300) contrast(1.2);
}

.doodle-cloud {
    position: absolute;
    background: #23233a;
    border-radius: 50%;
    border: 4px dashed #b3c6e7;
    opacity: 0.85;
    filter: drop-shadow(0 0 8px #b3c6e7) contrast(1.2);
}

.cloud1 {
    width: 80px;
    height: 50px;
    top: 60px;
    left: 200px;
}

.cloud2 {
    width: 120px;
    height: 60px;
    top: 100px;
    left: 350px;
}

.cloud3 {
    width: 60px;
    height: 40px;
    top: 80px;
    left: 500px;
}

.doodle-grass {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 80px;
    background: repeating-linear-gradient( to top, #39ff14 0 10px, #181828 10px 20px );
    border-top: 6px dashed #39ff14;
    z-index: 1;
    filter: drop-shadow(0 0 8px #39ff14) contrast(1.2);
}

.sketch-frame {
    max-width: 900px;
    margin: 60px auto 40px auto;
    border: 6px dashed #39ff14;
    border-radius: 36px 24px 40px 30px/30px 40px 24px 36px;
    box-shadow: 0 0 40px #39ff14, 0 0 80px #00e0ff44;
    padding: 32px 24px;
    background: rgba(24,24,40,0.95);
    position: relative;
    z-index: 2;
    filter: none;
}

.doodle-title {
    font-family: 'Permanent Marker', 'Gloria Hallelujah', cursive;
    color: #39ff14;
    font-size: 3.2rem;
    text-shadow: 2px 2px 0 #00e0ff, 0 0 8px #39ff1488;
    letter-spacing: 2px;
    margin: 0;
    transform: rotate(-3deg);
}

.doodle-tagline {
    color: #00e0ff;
    font-size: 1.3rem;
    margin: 0;
    text-shadow: 1px 1px 0 #181828;
    font-family: 'Gloria Hallelujah', cursive;
    transform: rotate(2deg);
}

.doodle-subtitle {
    color: #ff00cc;
    font-size: 2rem;
    margin-bottom: 12px;
    text-shadow: 1px 1px 0 #181828;
    font-family: 'Gloria Hallelujah', cursive;
    transform: rotate(-2deg);
}

.doodle-desc {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 24px;
    text-shadow: 1px 1px 0 #181828;
    font-family: 'Gloria Hallelujah', cursive;
}

.doodle-btn {
    display: inline-block;
    padding: 14px 36px;
    border: 3px dashed #ff00cc;
    border-radius: 18px 12px 18px 12px;
    background: #23233a;
    color: #ff00cc;
    font-size: 1.2rem;
    font-family: 'Permanent Marker', cursive;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 0 12px #ff00cc;
    margin-top: 12px;
    transform: rotate(1deg);
    transition: background 0.2s, color 0.2s;
}

    .doodle-btn:hover, .doodle-btn:focus {
        background: #ff00cc;
        color: #fff;
    }

.sketch-services {
    display: flex;
    justify-content: space-around;
    margin: 48px 0 32px 0;
    gap: 24px;
    flex-wrap: wrap;
}

.doodle-card {
    background: #23233a;
    border: 3px dashed #00e0ff;
    border-radius: 24px 18px 24px 18px;
    padding: 24px 18px;
    width: 240px;
    min-height: 180px;
    box-shadow: 0 0 16px #00e0ff44;
    margin-bottom: 16px;
    font-size: 1rem;
    color: #fff;
    position: relative;
    z-index: 1;
    font-family: 'Gloria Hallelujah', cursive;
    transform: rotate(-2deg);
    transition: transform 0.2s;
}

    .doodle-card:nth-child(2) {
        transform: rotate(2deg);
    }

    .doodle-card:nth-child(3) {
        transform: rotate(-1deg);
    }

.doodle-card-title {
    color: #39ff14;
    text-shadow: 1px 1px 0 #00e0ff;
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-family: 'Permanent Marker', cursive;
}

.doodle-footer {
    border-top: 3px dashed #ff00cc;
    padding-top: 16px;
    text-align: center;
    color: #00e0ff;
    font-size: 1rem;
    margin-top: 32px;
    text-shadow: 1px 1px 0 #181828;
    font-family: 'Gloria Hallelujah', cursive;
}

a {
    color: #39ff14;
    text-decoration: underline wavy #ff00cc;
}

@media (max-width: 900px) {
    .sketch-services {
        flex-direction: column;
        align-items: center;
    }

    .doodle-card {
        width: 90%;
    }
}

.sketch-frame, .doodle-card, .doodle-btn {
    filter: url(#sketchy);
}

.doodle-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 32px 0;
    font-family: 'Gloria Hallelujah', cursive;
}

.doodle-form label {
    font-size: 1.1rem;
    color: #ff00cc;
    text-shadow: 1px 1px 0 #181828;
    margin-bottom: 4px;
    font-family: 'Permanent Marker', cursive;
    transform: rotate(-2deg);
}

.doodle-form input,
.doodle-form textarea {
    background: #23233a;
    color: #39ff14;
    border: 3px dashed #00e0ff;
    border-radius: 14px 10px 14px 10px;
    padding: 10px 14px;
    font-size: 1.1rem;
    font-family: 'Gloria Hallelujah', cursive;
    box-shadow: 0 0 8px #00e0ff44;
    outline: none;
    margin-bottom: 8px;
    transition: border-color 0.2s, box-shadow 0.2s;
    filter: url(#sketchy);
}

.doodle-form input:focus,
.doodle-form textarea:focus {
    border-color: #ff00cc;
    box-shadow: 0 0 16px #ff00cc88;
}

.doodle-form button[type="submit"] {
    margin-top: 10px;
}
