/* SVG Stroke Hero Styles (Pastel Version) */
.svg-hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}



.hero-svg {
    width: 100%;
    height: 100%;
}

/* Organic Shapes */
.organic-circle {
    fill: none;
    stroke: url(#strokeGradient);
    stroke-width: 1.5;
    opacity: 0.6;
    animation: floatCircle 10s ease-in-out infinite alternate;
}

.organic-circle:nth-child(2) {
    animation-duration: 15s;
    stroke-width: 2;
}

.organic-line {
    fill: none;
    stroke: #a18cd1;
    stroke-width: 1;
    opacity: 0.3;
    stroke-dasharray: 20 20;
}

@keyframes floatCircle {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, -30px); }
}

/* Text Stroke Animation (Pastel) */
.svg-text-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 200px; /* Even Larger */
    fill: transparent;
    stroke: #999; /* Softer Grey base */
    stroke-width: 1px;
    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;
    animation: drawText 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    letter-spacing: -0.05em;
    mix-blend-mode: multiply;
}

/* Second animation phase: Fill with gradient */
.svg-text-name.filled {
    fill: url(#strokeGradient);
    fill-opacity: 0.1;
    stroke: url(#strokeGradient);
}

.svg-text-name:nth-child(2) {
    animation-delay: 0.3s;
}

.svg-text-vertical {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    fill: #aecae6; /* Soft Blue */
    letter-spacing: 0.4em;
    text-anchor: middle;
}

@keyframes drawText {
    to {
        stroke-dashoffset: 0;
    }
}

/* Central Image (Enlarged) */
.hero-img-center {
    position: relative;
    z-index: 2;
    width: 450px; /* Much Larger */
    height: 600px;
    opacity: 0;
    transform: scale(0.95);
    animation: fadeScaleImg 1.5s ease-out 1s forwards;
}

.hero-img-center img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 200px 200px 0 0; /* Arch Shape */
    box-shadow: 0 30px 60px rgba(161, 140, 209, 0.3); /* Pastel Shadow */
}

/* Frame Decoration */
.img-frame-decoration {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid #ff9a9e; /* Pink Accent */
    border-radius: 200px 200px 0 0;
    z-index: -1;
    transition: transform 0.8s ease;
    opacity: 0.8;
}

.hero-img-center:hover .img-frame-decoration {
    transform: translate(15px, 15px);
}

@keyframes fadeScaleImg {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 0.2em;
    color: #a18cd1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-scroll .line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, #ff9a9e, #a18cd1);
    animation: scrollDownLine 2s infinite;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .svg-text-name {
        font-size: 70px; /* Adjusted for mobile */
        stroke-width: 1px;
    }
    
    .hero-img-center {
        width: 80vw;
        height: 50vh;
        border-radius: 100px 100px 0 0;
    }
    
    .hero-img-center img, 
    .img-frame-decoration {
        border-radius: 100px 100px 0 0;
    }

    /* Adjust position primarily for mobile vertical space */
    .svg-text-name:first-of-type {
        y: 35%;
    }
    .svg-text-name:last-of-type {
        y: 55%;
    }
}
