/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Inter', 'Oswald', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #FFF5F7;
    color: var(--bodyTextColor);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
}

/* CSS Variables for pink theme with improved contrast */
:root {
    --primary: #FF69B4;
    --primaryDark: #FF1493;
    --secondary: #FFB6C1;
    --secondaryDark: #FF91A4;
    --accent: #FFC0CB;
    --headerColor: #FFF5F7;
    --bodyTextColor: #2C2C2C;
    --bodyTextColorWhite: #FFF;
    --bodyTextColorOnPink: #2C1A2C;
    --topperColor: var(--primary);
    --mainTextColor: #2C2C2C;
    --mainHeadingColor: #FF1493;
    --secondaryHeadingColor: #FF69B4;
    --mainAccentColor: var(--primary);
    --sectionGradient: linear-gradient(90deg, #FFB6C1 0%, #FFC0CB 50%, #FFB6C1 100%);
    --cardGradient: linear-gradient(180deg, #FFF5F7 0%, #FFE4E9 100%);
    --buttonPrimary: var(--primary);
    --buttonPrimaryHover: var(--primaryDark);
    --buttonSecondary: transparent;
    --buttonSecondaryHover: var(--secondary);
    --footerSwish: var(--secondary);
    --footerTextColor: #FFFFFF;
    --footerLinkColor: var(--primary);
    --cardShadow: 0 10px 30px rgba(255, 105, 180, 0.1);
    --hoverReveal: rgba(255, 182, 193, 0.95);
    --darkPrimary: #FFB6C1;
    --darkSecondary: #FF69B4;
    --darkAccent: #FFC0CB;
    --darkHeaderColor: #1a1a1a;
    --darkBodyTextColor: #FFF;
    --darkCardBackground: #2a2a2a;
    --darkFooterSwish: #FF69B4;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--mainHeadingColor);
    text-shadow: 0.5px 0.5px 0 rgba(0, 0, 0, 0.4),
                 -0.5px -0.5px 0 rgba(0, 0, 0, 0.4),
                 0.5px -0.5px 0 rgba(0, 0, 0, 0.4),
                 -0.5px 0.5px 0 rgba(0, 0, 0, 0.4),
                 0 1px 2px rgba(0, 0, 0, 0.3);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--secondaryHeadingColor);
    text-shadow: 0.5px 0.5px 0 rgba(0, 0, 0, 0.3),
                 -0.5px -0.5px 0 rgba(0, 0, 0, 0.3),
                 0.5px -0.5px 0 rgba(0, 0, 0, 0.3),
                 -0.5px 0.5px 0 rgba(0, 0, 0, 0.3),
                 0 1px 1px rgba(0, 0, 0, 0.2);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    text-shadow: 0.5px 0.5px 0 rgba(0, 0, 0, 0.3),
                 -0.5px -0.5px 0 rgba(0, 0, 0, 0.3),
                 0.5px -0.5px 0 rgba(0, 0, 0, 0.3),
                 -0.5px 0.5px 0 rgba(0, 0, 0, 0.3),
                 0 1px 1px rgba(0, 0, 0, 0.2);
}

p {
    font-family: 'Yellowtail', cursive;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--bodyTextColor);
}

/* Links */
a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primaryDark);
}

/* Container */
.cs-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.cs-button-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background-color: var(--buttonPrimary);
    color: var(--bodyTextColorOnPink);
    font-family: 'Inter', 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.cs-button-solid::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cs-button-solid:hover::before {
    left: 100%;
}

.cs-button-solid:hover {
    background-color: var(--buttonPrimaryHover);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 105, 180, 0.25);
}

.cs-button-solid:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 15px rgba(255, 105, 180, 0.2);
}

.cs-button-solid.cs-secondary {
    background-color: var(--buttonSecondary);
    color: var(--primary);
    border: 2px solid var(--primary);
    backdrop-filter: blur(10px);
}

.cs-button-solid.cs-secondary:hover {
    background-color: var(--buttonSecondaryHover);
    color: var(--bodyTextColorOnPink);
    border-color: var(--buttonSecondaryHover);
}

.cs-button-solid.cs-white:hover {
    background-color: var(--primary);
    color: var(--bodyTextColorOnPink);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.25);
}

.cs-button-transparent:hover {
    background-color: var(--primary);
    color: var(--bodyTextColorOnPink);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.2);
}

.cs-button-transparent {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    backdrop-filter: blur(10px);
}

.cs-button-transparent:hover {
    background-color: var(--primary);
    color: var(--bodyTextColorWhite);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.2);
}

/* Navigation */
#cs-navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--headerColor);
    z-index: 10000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(255, 105, 180, 0.1);
}

#cs-navigation .cs-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.cs-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cs-logo img {
    height: 43px;
    width: auto;
}

.neon {
    display: flex;
    gap: 2px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.neon span {
    animation: neonGlow 2s ease-in-out infinite alternate;
}

.neon span:nth-child(odd) {
    animation-delay: 0.5s;
}

@keyframes neonGlow {
    from {
        text-shadow: 0 0 5px var(--primary), 0 0 10px var(--primary);
    }
    to {
        text-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary), 0 0 30px var(--primary);
    }
}

.cs-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.cs-ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.cs-li-link {
    color: var(--bodyTextColor);
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.cs-li-link:hover,
.cs-li-link.cs-active {
    color: var(--primary);
}

.cs-dropdown {
    position: relative;
}

.cs-drop-ul {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--headerColor);
    border-radius: 8px;
    box-shadow: var(--cardShadow);
    padding: 15px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.cs-dropdown:hover .cs-drop-ul,
.cs-dropdown:focus-within .cs-drop-ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cs-drop-li {
    padding: 0 20px;
}

.cs-drop-link {
    color: var(--bodyTextColor);
    font-size: 0.9rem;
    padding: 8px 0;
    display: block;
    transition: color 0.3s ease;
}

.cs-drop-link:hover {
    color: var(--primary);
}

/* Mobile Menu Toggle */
.cs-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.cs-box {
    width: 30px;
    height: 25px;
    position: relative;
}

.cs-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
    position: absolute;
    transition: all 0.3s ease;
}

.cs-line1 {
    top: 0;
}

.cs-line2 {
    top: 50%;
    transform: translateY(-50%);
}

.cs-line3 {
    bottom: 0;
}

/* Dark Mode Toggle */
#dark-mode-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#dark-mode-toggle .cs-sun {
    display: none;
}

body.dark-mode #dark-mode-toggle .cs-moon {
    display: none;
}

body.dark-mode #dark-mode-toggle .cs-sun {
    display: block;
}

/* Hero Section */
#hero-855 {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #FFF5F7 0%, #FFE4E9 50%, #FFC0CB 100%);
    overflow: hidden;
}

#hero-855 .cs-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cs-content {
    z-index: 2;
}

.cs-topper {
    display: block;
    color: var(--primary);
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.cs-title {
    margin-bottom: 20px;
}

.cs-text {
    margin-bottom: 30px;
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--bodyTextColorOnPink);
    text-shadow: 0.5px 0.5px 0 rgba(0, 0, 0, 0.3),
                 -0.5px -0.5px 0 rgba(0, 0, 0, 0.3),
                 0.5px -0.5px 0 rgba(0, 0, 0, 0.3),
                 -0.5px 0.5px 0 rgba(0, 0, 0, 0.3);
}

.cs-button-box {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cs-picture {
    position: relative;
    z-index: 2;
}

.cs-picture img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.2);
}

/* Wave SVG */
.cs-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
}

.cs-wave.mobile {
    display: none;
}

/* Cherry Blossom Animations */
.blossoms {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.falling-blossom {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.7;
    animation: falling 8s linear infinite;
}

.falling-blossom2 {
    animation-delay: 2s;
    left: 20%;
}

@keyframes falling {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

.heart {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary);
    transform: rotate(45deg);
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.heart::before,
.heart::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
}

.heart::before {
    top: -5px;
    left: 0;
}

.heart::after {
    top: 0;
    left: -5px;
}

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

.heart1 { left: 10%; animation-delay: 0s; }
.heart2 { left: 20%; animation-delay: 0.5s; }
.heart3 { left: 30%; animation-delay: 1s; }
.heart4 { left: 40%; animation-delay: 1.5s; }
.heart5 { left: 50%; animation-delay: 2s; }
.heart6 { left: 60%; animation-delay: 2.5s; }
.heart7 { left: 70%; animation-delay: 3s; }
.heart8 { left: 80%; animation-delay: 3.5s; }
.heart9 { left: 90%; animation-delay: 4s; }
.heart10 { left: 15%; animation-delay: 4.5s; }
.heart11 { left: 25%; animation-delay: 5s; }
.heart12 { left: 35%; animation-delay: 5.5s; }
.heart13 { left: 45%; animation-delay: 6s; }

.blossom {
    position: absolute;
    animation: sway 4s ease-in-out infinite;
}

@keyframes sway {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    50% {
        transform: translateX(20px) rotate(10deg);
    }
}

/* Services Section */
#services-966 {
    padding: 80px 0;
    background-color: var(--headerColor);
}

#services-966 .cs-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.cs-card-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.cs-item {
    background: var(--cardGradient);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--cardShadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cs-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.2);
}

.cs-link {
    display: block;
    padding: 30px;
    text-decoration: none;
    color: var(--bodyTextColor);
    position: relative;
}

.cs-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 50%;
    margin-bottom: 20px;
}

.cs-icon {
    filter: brightness(0) invert(1);
}

.cs-h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.cs-item-text {
    margin-bottom: 20px;
    line-height: 1.6;
}

.cs-fake-link {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.cs-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--hoverReveal);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.cs-item:hover .cs-background {
    opacity: 1;
    visibility: visible;
}

/* Footer */
#cs-footer-840 {
    background-color: var(--secondary);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

#cs-footer-840 .cs-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.cs-logo-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cs-logo-img {
    height: 32px;
    width: auto;
}

.cs-text {
    max-width: 400px;
}

.cs-ul-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cs-header {
    color: var(--primary);
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.cs-ul {
    list-style: none;
}

.cs-link {
    color: var(--bodyTextColor);
    padding: 5px 0;
    transition: color 0.3s ease;
}

.cs-link:hover {
    color: var(--primary);
}

.cs-bottom {
    border-top: 1px solid rgba(255, 105, 180, 0.3);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cs-credit {
    color: var(--bodyTextColor);
}

.cs-credit-link {
    color: var(--primary);
}

.cs-bottom-links {
    display: flex;
    gap: 20px;
}

.cs-bottom-link {
    color: var(--bodyTextColor);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.cs-bottom-link:hover {
    color: var(--primary);
}

/* Skip Link */
.skip {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 100000;
}

.skip:focus {
    top: 6px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    #hero-855 .cs-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cs-card-group {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    #cs-footer-840 .cs-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .cs-nav {
        display: none;
    }
    
    .cs-toggle {
        display: block;
    }
    
    .cs-button-box {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cs-wave.desktop {
        display: none;
    }
    
    .cs-wave.mobile {
        display: block;
    }
    
    #cs-footer-840 .cs-container {
        text-align: center;
    }
    
    .cs-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .cs-container {
        padding: 0 15px;
    }
    
    #hero-855 {
        padding: 100px 0 60px;
    }
    
    .cs-card-group {
        grid-template-columns: 1fr;
    }
}

/* Scroll effect */
body.scroll #cs-navigation {
    background-color: rgba(255, 245, 247, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(255, 105, 180, 0.15);
}

body.scroll .cs-logo img.cs-default {
    opacity: 0;
}

body.scroll .cs-logo img.cs-onscroll {
    opacity: 1;
}

body:not(.scroll) .cs-logo img.cs-onscroll {
    opacity: 0;
}

/* Dark Mode */
body.dark-mode {
    background-color: var(--darkHeaderColor);
    color: var(--darkBodyTextColor);
}

body.dark-mode #cs-navigation {
    background-color: var(--darkHeaderColor);
}

body.dark-mode .cs-li-link {
    color: var(--darkBodyTextColor);
}

body.dark-mode .cs-drop-ul {
    background-color: var(--darkCardBackground);
}

body.dark-mode #hero-855 {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 50%, #4a4a4a 100%);
}

body.dark-mode .cs-item {
    background: linear-gradient(180deg, #3a3a3a 0%, #2a2a2a 100%);
}

body.dark-mode #cs-footer-840 {
    background-color: var(--darkSecondary);
}

body.dark-mode .cs-link {
    color: var(--darkBodyTextColor);
}

body.dark-mode .cs-text {
    color: var(--darkBodyTextColor);
}

body.dark-mode .cs-credit {
    color: var(--darkBodyTextColor);
}

body.dark-mode .cs-bottom-link {
    color: var(--darkBodyTextColor);
}

/* Footer text contrast fixes */
#cs-footer-840 .cs-text {
    color: var(--footerTextColor);
}

#cs-footer-840 .cs-link {
    color: var(--footerTextColor);
}

#cs-footer-840 .cs-credit {
    color: var(--footerTextColor);
}

#cs-footer-840 .cs-bottom-link {
    color: var(--footerTextColor);
}

#cs-footer-840 .cs-header {
    color: var(--bodyTextColorOnPink);
}
