:root {
    --hot-pink: #D81A6C;
    --bright-yellow: #FDE13A;
    --black: #120E14;
    --light-green: #B1E079;
    --light-pink: #F3A9B4;
    --white: #FEFEFE;
}

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

body {
    font-family: 'Bebas Neue', cursive;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    position: relative;
}

/* Intro Animation */
.intro-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOut 1s 3s forwards;
}

.intro-logo {
    width: 300px;
    height: 300px;
    animation: spinScale 3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: drop-shadow(0 0 50px var(--hot-pink));
}

@keyframes spinScale {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(360deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(720deg);
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.hidden {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--black) 0%, #2a0a1a 100%);
    overflow: hidden;
}

.graffiti-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, var(--hot-pink) 35px, var(--hot-pink) 70px);
}

.paint-drip {
    position: absolute;
    width: 150px;
    height: 300px;
    background: var(--hot-pink);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0.8;
    animation: drip 8s infinite;
}

.drip-1 {
    top: -150px;
    left: 10%;
    animation-delay: 0s;
}

.drip-2 {
    top: -150px;
    left: 50%;
    background: var(--bright-yellow);
    animation-delay: 2s;
}

.drip-3 {
    top: -150px;
    right: 15%;
    background: var(--light-green);
    animation-delay: 4s;
}

@keyframes drip {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(200px);
    }
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
}

.logo-main {
    margin-bottom: 30px;
}

.logo-main img {
    width: 200px;
    height: 200px;
    filter: drop-shadow(0 0 30px var(--hot-pink));
}

.floating {
    animation: float 3s ease-in-out infinite;
}

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

h1.glitch {
    font-family: 'Rubik Mono One', sans-serif;
    font-size: clamp(3rem, 10vw, 8rem);
    color: var(--hot-pink);
    text-shadow: 
        3px 3px 0 var(--bright-yellow),
        6px 6px 0 var(--light-green),
        9px 9px 20px rgba(216, 26, 108, 0.5);
    letter-spacing: 5px;
    position: relative;
    animation: glitch 2s infinite;
}

@keyframes glitch {
    0%, 100% {
        text-shadow: 
            3px 3px 0 var(--bright-yellow),
            6px 6px 0 var(--light-green),
            9px 9px 20px rgba(216, 26, 108, 0.5);
    }
    25% {
        text-shadow: 
            -3px 3px 0 var(--bright-yellow),
            6px -6px 0 var(--light-green),
            -9px 9px 20px rgba(216, 26, 108, 0.5);
    }
    50% {
        text-shadow: 
            3px -3px 0 var(--bright-yellow),
            -6px 6px 0 var(--light-green),
            9px -9px 20px rgba(216, 26, 108, 0.5);
    }
}

.tagline-container {
    margin: 30px 0;
}

.tagline {
    font-family: 'Permanent Marker', cursive;
    font-size: 2rem;
    color: var(--bright-yellow);
    text-shadow: 2px 2px 0 var(--black);
    margin: 10px 0;
}

.tagline-crazy {
    font-family: 'Rubik Mono One', sans-serif;
    font-size: 3rem;
    background: linear-gradient(45deg, var(--hot-pink), var(--bright-yellow), var(--light-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbow 3s linear infinite;
    text-shadow: none;
    filter: drop-shadow(3px 3px 0 var(--black));
}

@keyframes rainbow {
    0% {
        filter: hue-rotate(0deg) drop-shadow(3px 3px 0 var(--black));
    }
    100% {
        filter: hue-rotate(360deg) drop-shadow(3px 3px 0 var(--black));
    }
}

.spray-text {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.5rem;
    color: var(--light-green);
    transform: rotate(-5deg);
    margin-top: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

/* Floating Stickers */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.sticker {
    position: absolute;
    font-family: 'Permanent Marker', cursive;
    font-size: 2rem;
    padding: 10px 20px;
    border: 3px solid var(--black);
    border-radius: 15px;
    transform: rotate(-15deg);
    box-shadow: 5px 5px 15px rgba(0,0,0,0.5);
}

.sticker-1 {
    top: 20%;
    left: 5%;
    background: var(--hot-pink);
    color: var(--white);
    animation: bounce 3s infinite;
}

.sticker-2 {
    top: 30%;
    right: 10%;
    background: var(--bright-yellow);
    color: var(--black);
    animation: bounce 3s infinite 0.5s;
    transform: rotate(10deg);
}

.sticker-3 {
    bottom: 30%;
    left: 8%;
    background: var(--light-green);
    color: var(--black);
    animation: bounce 3s infinite 1s;
    transform: rotate(-20deg);
}

.sticker-4 {
    bottom: 25%;
    right: 5%;
    background: var(--light-pink);
    color: var(--black);
    animation: bounce 3s infinite 1.5s;
    transform: rotate(15deg);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) rotate(var(--rotation, -15deg));
    }
    50% {
        transform: translateY(-30px) rotate(var(--rotation, -15deg));
    }
}

/* About Section */
.about {
    padding: 100px 20px;
    background: linear-gradient(180deg, #2a0a1a 0%, var(--black) 100%);
    position: relative;
    overflow: hidden;
}

.graffiti-wall {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.graffiti-wall::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: 
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(216, 26, 108, 0.1) 50px, rgba(216, 26, 108, 0.1) 100px),
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(253, 225, 58, 0.1) 50px, rgba(253, 225, 58, 0.1) 100px);
    transform: rotate(-2deg);
}

.section-title {
    font-size: clamp(4rem, 12vw, 10rem);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    line-height: 0.9;
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 3px var(--light-green);
    text-stroke: 3px var(--light-green);
    display: block;
}

.fill-text {
    color: var(--hot-pink);
    text-shadow: 5px 5px 0 var(--bright-yellow);
    display: block;
    margin-top: -20px;
}

.about-content {
    display: grid;
    gap: 50px;
}

.owner-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

.owner-image-container {
    position: relative;
    animation: float 4s ease-in-out infinite;
}

.owner-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 0 30px var(--hot-pink));
    transform: rotate(-3deg);
    transition: all 0.3s ease;
}

.owner-image:hover {
    transform: rotate(0deg) scale(1.05);
    filter: drop-shadow(0 0 50px var(--hot-pink));
}

.image-frame {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 5px solid var(--bright-yellow);
    border-radius: 25px;
    transform: rotate(2deg);
    z-index: -1;
}

.graffiti-tag {
    position: absolute;
    font-family: 'Permanent Marker', cursive;
    font-size: 2rem;
    padding: 5px 15px;
    border-radius: 10px;
    transform: rotate(-15deg);
    text-shadow: 2px 2px 0 var(--black);
}

.tag-1 {
    top: -20px;
    right: 20px;
    background: var(--hot-pink);
    color: var(--white);
    animation: tagBounce 3s infinite;
}

.tag-2 {
    bottom: -20px;
    left: 20px;
    background: var(--bright-yellow);
    color: var(--black);
    animation: tagBounce 3s infinite 0.5s;
    transform: rotate(10deg);
}

.tag-3 {
    top: 50%;
    right: -30px;
    background: var(--light-green);
    color: var(--black);
    animation: tagBounce 3s infinite 1s;
    transform: rotate(-20deg);
}

@keyframes tagBounce {
    0%, 100% {
        transform: translateY(0) rotate(var(--rotation, -15deg)) scale(1);
    }
    50% {
        transform: translateY(-10px) rotate(var(--rotation, -15deg)) scale(1.1);
    }
}

.owner-card {
    background: rgba(216, 26, 108, 0.1);
    border: 3px solid var(--hot-pink);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transform: rotate(-1deg);
    box-shadow: 10px 10px 30px rgba(0,0,0,0.5);
}

.paint-splash {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--bright-yellow) 0%, transparent 70%);
    opacity: 0.3;
}

.owner-name {
    font-size: 3rem;
    color: var(--bright-yellow);
    text-shadow: 3px 3px 0 var(--hot-pink);
    margin-bottom: 20px;
}

.year-badge {
    display: inline-block;
    background: var(--light-green);
    color: var(--black);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 1.2rem;
    margin-bottom: 20px;
    transform: rotate(-5deg);
}

.owner-story {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--white);
}

.highlight {
    color: var(--bright-yellow);
    font-size: 1.5rem;
    display: block;
    margin-top: 20px;
    text-shadow: 2px 2px 0 var(--hot-pink);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: linear-gradient(135deg, rgba(253, 225, 58, 0.1), rgba(177, 224, 121, 0.1));
    border: 3px solid var(--bright-yellow);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transform: rotate(2deg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:nth-child(2) {
    transform: rotate(-3deg);
    border-color: var(--light-green);
}

.service-card:nth-child(3) {
    transform: rotate(1deg);
    border-color: var(--hot-pink);
}

.service-card:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 10px 40px rgba(216, 26, 108, 0.4);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: wobble 2s infinite;
}

@keyframes wobble {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

.service-card h4 {
    font-size: 1.8rem;
    color: var(--bright-yellow);
    text-shadow: 2px 2px 0 var(--black);
    margin-bottom: 10px;
}

.service-card p {
    font-family: 'Permanent Marker', cursive;
    font-size: 1rem;
    color: var(--white);
}

/* Contact Section */
.contact {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--black), #2a0a1a);
    position: relative;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    margin-bottom: 50px;
}

.spray-effect {
    font-size: clamp(3rem, 8vw, 6rem);
    background: linear-gradient(45deg, var(--hot-pink), var(--bright-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    filter: drop-shadow(5px 5px 0 var(--black));
}

.spray-effect::before,
.spray-effect::after {
    content: 'COMANDĂ ACUM!';
    position: absolute;
    top: 0;
    left: 0;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px var(--light-green);
    z-index: -1;
}

.spray-effect::before {
    transform: translate(-3px, -3px);
}

.spray-effect::after {
    transform: translate(3px, 3px);
    -webkit-text-stroke: 2px var(--light-pink);
}

.whatsapp-box {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 30px;
    padding: 40px;
    margin: 40px 0;
    transform: rotate(-2deg);
    box-shadow: 10px 10px 40px rgba(0,0,0,0.5);
    border: 3px solid var(--bright-yellow);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    color: #25D366;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 2rem;
    transition: all 0.3s ease;
    box-shadow: 5px 5px 20px rgba(0,0,0,0.3);
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 10px 10px 30px rgba(0,0,0,0.5);
}

.whatsapp-btn svg {
    width: 40px;
    height: 40px;
}

.whatsapp-text {
    color: var(--white);
    font-family: 'Permanent Marker', cursive;
    font-size: 1.5rem;
    margin-top: 20px;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.3);
}

.location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.5rem;
    color: var(--bright-yellow);
    margin-top: 40px;
}

.location-pin {
    font-size: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Footer */
.footer {
    background: var(--black);
    padding: 50px 20px;
    border-top: 5px solid var(--hot-pink);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--hot-pink), var(--bright-yellow), var(--light-green));
    animation: slideGradient 3s linear infinite;
}

@keyframes slideGradient {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.5rem;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 5px 5px 20px rgba(0,0,0,0.3);
}

.instagram-link:hover {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 10px 10px 30px rgba(0,0,0,0.5);
}

.instagram-link svg {
    width: 30px;
    height: 30px;
}

.footer-year {
    font-size: 1.2rem;
    color: var(--light-green);
    margin: 20px 0;
}

.footer-tagline {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.5rem;
    color: var(--hot-pink);
    text-shadow: 2px 2px 0 var(--bright-yellow);
}

/* Responsive */
@media (max-width: 768px) {
    h1.glitch {
        font-size: 3rem;
    }
    
    .tagline-crazy {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 4rem;
    }
    
    .owner-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .owner-image {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .owner-name {
        font-size: 2rem;
    }
    
    .sticker {
        font-size: 1.2rem;
        padding: 5px 10px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-btn {
        font-size: 1.5rem;
        padding: 15px 25px;
    }
    
    .graffiti-tag {
        font-size: 1.5rem;
    }
}

/* Spray Particles Animation */
.spray-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.spray-particles::before,
.spray-particles::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--hot-pink);
    border-radius: 50%;
    animation: spray 2s infinite;
}

.spray-particles::before {
    top: 50%;
    left: 50%;
    animation-delay: 0.5s;
}

.spray-particles::after {
    top: 50%;
    left: 50%;
    background: var(--bright-yellow);
    animation-delay: 1s;
}

@keyframes spray {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(calc(-50% + 200px), calc(-50% - 200px)) scale(20);
        opacity: 0;
    }
}