/* Modern CSS Variables - Light Warm Theme (Matching Logo) */
:root {
    --primary-coral: #FF6B5B;
    --primary-pink: #FF3366;
    --primary-magenta: #D81B60;
    --gradient: linear-gradient(135deg, #FF6B5B, #FF3366, #D81B60);
    --text-dark: #1F2937;
    --text-medium: #4B5563;
    --text-light: #6B7280;
    --white: #FFFFFF;
    --bg-warm-1: #FFF5F3;
    --bg-warm-2: #FFF0F3;
    --bg-warm-3: #FFE4EC;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 25px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(180deg, var(--bg-warm-1) 0%, var(--bg-warm-2) 50%, var(--bg-warm-3) 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Floating Gradient Orbs - SparkHub Style */
body::before,
body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: float 30s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

body::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 91, 0.4) 0%, rgba(255, 51, 102, 0.2) 50%, transparent 70%);
    top: -200px;
    right: -200px;
}

body::after {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 51, 102, 0.4) 0%, rgba(216, 27, 96, 0.2) 50%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(50px, -30px); }
    50% { transform: translate(-30px, 50px); }
    75% { transform: translate(-50px, -20px); }
}

body > * {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header - Light with Blur */
header {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 51, 102, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 24px;
}

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

.logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.logo h1 {
    font-size: 1.25rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo p {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

nav a:hover {
    color: var(--primary-pink);
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--gradient);
    transition: var(--transition);
    transform: translateX(-50%);
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section - Light & Warm */
.hero {
    background: linear-gradient(135deg, rgba(255, 107, 91, 0.1), rgba(255, 51, 102, 0.1));
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text-dark);
}

.hero h2 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.hero strong {
    color: var(--primary-pink);
    font-weight: 600;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg-warm-2) 0%, var(--bg-warm-3) 100%);
}

.about .container {
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.about img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 2rem;
    box-shadow: 0 0 0 8px rgba(255, 51, 102, 0.2), var(--shadow-lg);
    transition: var(--transition);
}

.about img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 0 12px rgba(255, 51, 102, 0.25), var(--shadow-lg);
}

.about p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-medium);
    line-height: 1.8;
}

.about p strong {
    color: var(--primary-pink);
    font-weight: 600;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg-warm-3) 0%, var(--bg-warm-1) 100%);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.1);
    margin-bottom: 2rem;
    transition: var(--transition);
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-pink);
}

.service-card.featured {
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--primary-pink), var(--primary-purple)) border-box;
    border: 3px solid transparent;
}

.service-card h3, .service-card h4 {
    color: var(--primary-pink);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.5rem;
}

.service-card h4 {
    font-size: 1.1rem;
}

.service-card p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-group {
    margin: 3rem 0;
}

.service-group > h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 700;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.button {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.3);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 51, 102, 0.4);
}

.button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

.services-note {
    text-align: center;
    font-size: 1.1rem;
    color: var(--primary-pink);
    font-weight: 600;
    margin-top: 2rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg-warm-1) 0%, var(--bg-warm-2) 100%);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cta {
    text-align: center;
    font-size: 1.25rem;
    color: var(--primary-pink);
    margin-bottom: 3rem;
    font-weight: 600;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 3rem auto;
}

.contact-form, .contact-info {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.1);
    backdrop-filter: blur(10px);
}

.contact-form h3, .contact-info h3 {
    color: var(--primary-pink);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-dark);
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.1);
}

.form-group select option {
    color: var(--text-dark);
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.contact-info a {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-info a:hover {
    text-decoration: underline;
}

.availability {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 51, 102, 0.1);
}

.availability h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Footer - Warm Gradient */
footer {
    background: linear-gradient(135deg, var(--bg-warm-3), #FFD5E0);
    color: var(--text-dark);
    padding: 2.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 51, 102, 0.1);
}

footer p {
    font-size: 0.95rem;
    color: var(--text-medium);
}

footer a {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 600;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .logo {
        width: 100%;
        justify-content: center;
    }

    nav ul {
        gap: 1.5rem;
    }

    .hero h2 {
        font-size: 1.75rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .about img {
        width: 200px;
        height: 200px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Colours */
::selection {
    background: var(--primary-pink);
    color: white;
}

/* Gentle floating animation for hero photo */
@keyframes gentle-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.hero img {
    animation: gentle-float 4s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero img:hover {
    animation-play-state: paused;
    transform: scale(1.05);
    box-shadow: 0 0 0 8px rgba(255, 51, 102, 0.4), 0 25px 50px rgba(0, 0, 0, 0.15);
}
