/* ============================================
   KIMBOCREATES.BE - Bold Retro Illustrated Style
   ============================================ */

/* CSS Custom Properties */
:root {
    --teal: #2a9d8f;
    --teal-light: #3dbaa9;
    --teal-bright: #52d4c4;
    --dark-teal: #1a5653;
    --darker-teal: #0f3532;
    --darkest: #0a2624;
    --coral: #e07a7a;
    --coral-light: #f4a3a3;
    --coral-bright: #ff8a8a;
    --cream: #f5e6d3;
    --cream-light: #fff8f0;
    --white: #ffffff;

    --font-display: 'Lobster', cursive;
    --font-body: 'Poppins', sans-serif;

    --shadow-soft: 0 4px 20px rgba(0,0,0,0.3);
    --shadow-hard: 4px 4px 0 var(--darkest);
    --shadow-glow: 0 0 30px rgba(42, 157, 143, 0.4);

    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--dark-teal);
    color: var(--cream);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Selection */
::selection {
    background: var(--coral);
    color: var(--darkest);
}

/* ============================================
   ANIMATED BACKGROUND ELEMENTS
   ============================================ */

/* Stars */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.star {
    position: absolute;
    fill: var(--coral);
    opacity: 0.6;
    animation: twinkle 3s ease-in-out infinite, float 8s ease-in-out infinite;
}

.star-1 { width: 30px; top: 10%; left: 5%; animation-delay: 0s, 0s; }
.star-2 { width: 20px; top: 25%; right: 10%; animation-delay: 0.5s, 1s; }
.star-3 { width: 40px; top: 60%; left: 8%; animation-delay: 1s, 2s; }
.star-4 { width: 25px; top: 40%; right: 5%; animation-delay: 1.5s, 0.5s; }
.star-5 { width: 35px; bottom: 20%; left: 15%; animation-delay: 2s, 1.5s; }
.star-6 { width: 22px; bottom: 35%; right: 12%; animation-delay: 2.5s, 2.5s; }

@keyframes twinkle {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.1); }
}

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

/* Radiating Lines Background */
.radiate-bg {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 200vmax;
    height: 200vmax;
    transform: translate(-50%, -50%);
    background: repeating-conic-gradient(
        from 0deg,
        transparent 0deg 5deg,
        rgba(42, 157, 143, 0.03) 5deg 10deg
    );
    pointer-events: none;
    z-index: 0;
    animation: slowRotate 120s linear infinite;
}

@keyframes slowRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ============================================
   NAVIGATION
   ============================================ */

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    background: linear-gradient(to bottom, var(--darkest) 0%, transparent 100%);
    transition: background var(--transition-medium);
}

.main-nav.scrolled {
    background: rgba(10, 38, 36, 0.95);
    backdrop-filter: blur(10px);
}

.logo {
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--teal-bright);
    transition: transform var(--transition-fast);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-dot {
    color: var(--coral);
}

.nav-links {
    display: flex;
    gap: 0.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--cream);
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--coral);
    transition: all var(--transition-fast);
    transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 60%;
}

.nav-link:hover {
    color: var(--teal-bright);
}

.nav-paint:hover { color: var(--coral-light); }
.nav-paint:hover::before { background: var(--coral-light); }

.nav-cook:hover { color: var(--teal-bright); }
.nav-cook:hover::before { background: var(--teal-bright); }

.nav-cta {
    background: var(--coral);
    color: var(--darkest) !important;
    font-weight: 700;
}

.nav-cta:hover {
    background: var(--coral-bright);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(224, 122, 122, 0.4);
}

.nav-cta::before { display: none; }

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--cream);
    border-radius: 3px;
    transition: all var(--transition-fast);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--darkest);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-medium);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--cream);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.mobile-link:hover,
.mobile-link.active {
    color: var(--teal-bright);
    transform: scale(1.1);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 5rem 4rem;
    position: relative;
    z-index: 1;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    font-family: var(--font-display);
    line-height: 1.1;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideIn 0.8s ease forwards;
}

.title-line-1 {
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--teal-bright);
    animation-delay: 0.2s;
}

.title-line-2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--cream);
    animation-delay: 0.4s;
}

.title-line-3 {
    font-size: clamp(4rem, 10vw, 8rem);
    color: var(--coral);
    text-shadow: 4px 4px 0 var(--darkest);
    animation-delay: 0.6s;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--cream);
    opacity: 0.9;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.8s forwards;
}

@keyframes fadeIn {
    to { opacity: 0.9; }
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 0.8s ease 1s forwards;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 60px;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.cta-btn::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;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-paint {
    background: var(--coral);
    color: var(--darkest);
    box-shadow: 4px 4px 0 var(--darkest);
}

.cta-paint:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--darkest);
}

.cta-cook {
    background: var(--teal-bright);
    color: var(--darkest);
    box-shadow: 4px 4px 0 var(--darkest);
}

.cta-cook:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--darkest);
}

.cta-icon {
    font-size: 1.5rem;
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 500px;
}

.hero-card {
    position: absolute;
    width: 280px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-medium);
}

.hero-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.hero-card-paint {
    transform: rotate(-8deg) translateX(-60px);
    z-index: 2;
    border: 4px solid var(--coral);
    opacity: 0;
    animation: cardFloat1 0.8s ease 0.5s forwards;
}

.hero-card-cook {
    transform: rotate(8deg) translateX(60px) translateY(40px);
    z-index: 1;
    border: 4px solid var(--teal-bright);
    opacity: 0;
    animation: cardFloat2 0.8s ease 0.7s forwards;
}

@keyframes cardFloat1 {
    to {
        opacity: 1;
        transform: rotate(-8deg) translateX(-60px);
    }
}

@keyframes cardFloat2 {
    to {
        opacity: 1;
        transform: rotate(8deg) translateX(60px) translateY(40px);
    }
}

.hero-card:hover {
    transform: rotate(0deg) scale(1.05) !important;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--cream);
    text-align: center;
}

/* ============================================
   SERVICES SPLIT SECTION
   ============================================ */

.services-split {
    display: flex;
    min-height: 80vh;
    position: relative;
    z-index: 1;
}

.service-half {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: flex var(--transition-medium);
}

.service-half:hover {
    flex: 1.2;
}

.service-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: transform var(--transition-medium);
}

.service-paint .service-bg {
    background:
        radial-gradient(circle at 20% 80%, var(--coral) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, var(--teal) 0%, transparent 50%),
        var(--darker-teal);
}

.service-cook .service-bg {
    background:
        radial-gradient(circle at 80% 80%, var(--teal-bright) 0%, transparent 50%),
        radial-gradient(circle at 20% 20%, var(--coral) 0%, transparent 50%),
        var(--darkest);
}

.service-half:hover .service-bg {
    transform: scale(1.1);
}

.service-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 400px;
}

.service-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
    color: var(--teal-bright);
    transition: all var(--transition-medium);
}

.service-paint .service-icon {
    color: var(--coral);
}

.service-half:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
}

.service-title {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--cream);
}

.service-desc {
    font-size: 1.1rem;
    color: var(--cream);
    opacity: 0.8;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-cta {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--cream);
    color: var(--darkest);
    font-weight: 700;
    border-radius: 50px;
    transition: all var(--transition-fast);
}

.service-half:hover .service-cta {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.service-paint:hover .service-cta {
    background: var(--coral);
}

.service-cook:hover .service-cta {
    background: var(--teal-bright);
}

/* ============================================
   FEATURED SECTION
   ============================================ */

.featured-section {
    padding: 6rem 3rem;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, transparent 0%, var(--darkest) 50%, transparent 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--teal-bright);
    margin-bottom: 1rem;
}

.section-line {
    width: 100px;
    height: 4px;
    background: var(--coral);
    margin: 0 auto;
    border-radius: 2px;
}

.featured-carousel {
    overflow: hidden;
    margin: 0 -1rem;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    padding: 2rem 1rem;
    transition: transform var(--transition-medium);
}

.carousel-item {
    flex: 0 0 300px;
    aspect-ratio: 4/5;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.carousel-item:hover {
    transform: translateY(-10px) scale(1.02);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.carousel-item:hover img {
    transform: scale(1.1);
}

.carousel-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.carousel-item-category {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--coral);
    color: var(--darkest);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 0.5rem;
}

.carousel-item-category.cooking {
    background: var(--teal-bright);
}

.carousel-item-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--cream);
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: 3px solid var(--teal);
    background: transparent;
    color: var(--teal);
    font-size: 1.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.carousel-btn:hover {
    background: var(--teal);
    color: var(--darkest);
    transform: scale(1.1);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
    display: flex;
    gap: 3rem;
    padding: 4rem 5rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background: var(--darker-teal);
    padding: 3rem;
    border-radius: 20px;
    position: relative;
    border: 2px solid var(--teal);
    transition: all var(--transition-fast);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--coral);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 6rem;
    color: var(--coral);
    opacity: 0.3;
    position: absolute;
    top: 0;
    left: 1.5rem;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.2rem;
    color: var(--cream);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: var(--teal-bright);
    font-size: 1.1rem;
}

.author-role {
    color: var(--cream);
    opacity: 0.6;
    font-size: 0.9rem;
}

/* ============================================
   FOOTER
   ============================================ */

.main-footer {
    background: var(--darkest);
    padding: 4rem 3rem 2rem;
    position: relative;
    z-index: 1;
    border-top: 3px solid var(--teal);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--teal-bright);
}

.footer-logo span {
    color: var(--coral);
}

.footer-tagline {
    color: var(--cream);
    opacity: 0.7;
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-col h4 {
    color: var(--cream);
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col a {
    display: block;
    color: var(--cream);
    opacity: 0.7;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: all var(--transition-fast);
}

.footer-col a:hover {
    opacity: 1;
    color: var(--teal-bright);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border: 2px solid var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--cream);
    stroke-width: 2;
}

.social-link:hover {
    background: var(--coral);
    border-color: var(--coral);
    transform: translateY(-3px);
}

.social-link:hover svg {
    stroke: var(--darkest);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(42, 157, 143, 0.3);
}

.footer-bottom p {
    color: var(--cream);
    opacity: 0.5;
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        padding: 7rem 3rem 3rem;
        text-align: center;
    }

    .hero-visual {
        width: 100%;
        min-height: 400px;
    }

    .hero-card {
        width: 220px;
    }

    .hero-card img {
        height: 260px;
    }

    .services-split {
        flex-direction: column;
    }

    .service-half:hover {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .main-nav {
        padding: 1rem 1.5rem;
    }

    .hero {
        padding: 6rem 1.5rem 2rem;
    }

    .title-line-1 { font-size: 2.5rem; }
    .title-line-2 { font-size: 1.8rem; }
    .title-line-3 { font-size: 4rem; }

    .hero-ctas {
        justify-content: center;
    }

    .hero-visual {
        min-height: 350px;
    }

    .hero-card {
        width: 180px;
    }

    .hero-card img {
        height: 200px;
    }

    .hero-card-paint {
        transform: rotate(-8deg) translateX(-30px);
    }

    .hero-card-cook {
        transform: rotate(8deg) translateX(30px) translateY(30px);
    }

    .service-half {
        padding: 3rem 1.5rem;
    }

    .service-icon {
        width: 100px;
        height: 100px;
    }

    .service-title {
        font-size: 2.2rem;
    }

    .featured-section {
        padding: 4rem 1.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .testimonials {
        padding: 3rem 1.5rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        gap: 2rem;
    }
}

/* ============================================
   PAGE-SPECIFIC STYLES
   ============================================ */

/* Page Header (for inner pages) */
.page-header {
    padding: 10rem 3rem 4rem;
    text-align: center;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, var(--darkest) 0%, var(--dark-teal) 100%);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(224, 122, 122, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(42, 157, 143, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--teal-bright);
    margin-bottom: 1rem;
    position: relative;
}

.page-title.paint-title {
    color: var(--coral);
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--cream);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Portfolio Grid */
.portfolio-section {
    padding: 4rem 3rem;
    position: relative;
    z-index: 1;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    border: 2px solid var(--teal);
    background: transparent;
    color: var(--cream);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--teal);
    color: var(--darkest);
}

.filter-btn.active {
    background: var(--coral);
    border-color: var(--coral);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    transform: translateY(100%);
    transition: transform var(--transition-fast);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-item-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--cream);
    margin-bottom: 0.3rem;
}

.portfolio-item-desc {
    color: var(--cream);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Empty Portfolio State */
.portfolio-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--cream);
    opacity: 0.6;
}

.portfolio-empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-section {
    padding: 4rem 3rem;
    position: relative;
    z-index: 1;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: var(--darker-teal);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--teal);
    transition: all var(--transition-fast);
}

.contact-card:hover {
    border-color: var(--coral);
    transform: translateX(5px);
}

.contact-card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-card-title {
    font-weight: 700;
    color: var(--teal-bright);
    margin-bottom: 0.5rem;
}

.contact-card-text {
    color: var(--cream);
    opacity: 0.8;
}

.contact-card-text a {
    color: var(--cream);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-card-text a:hover {
    color: var(--coral);
}

/* Contact Form */
.contact-form {
    background: var(--darker-teal);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--teal);
}

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

.form-label {
    display: block;
    color: var(--cream);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 1rem 1.2rem;
    background: var(--dark-teal);
    border: 2px solid var(--teal);
    border-radius: 10px;
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--coral);
    box-shadow: 0 0 20px rgba(224, 122, 122, 0.2);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232a9d8f' stroke-width='2'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
}

.form-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--coral);
    color: var(--darkest);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.form-submit:hover {
    background: var(--coral-bright);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(224, 122, 122, 0.4);
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-section {
    padding: 4rem 3rem;
    position: relative;
    z-index: 1;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-frame {
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid var(--teal);
    box-shadow: 15px 15px 0 var(--coral);
    transition: all var(--transition-fast);
}

.about-image-frame:hover {
    box-shadow: 20px 20px 0 var(--coral);
    transform: translate(-5px, -5px);
}

.about-image img {
    width: 100%;
    display: block;
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--coral);
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--cream);
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-skills {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.skill-tag {
    padding: 0.5rem 1.2rem;
    background: var(--teal);
    color: var(--darkest);
    font-weight: 600;
    border-radius: 50px;
    font-size: 0.9rem;
}

.skill-tag.paint {
    background: var(--coral);
}

@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image-frame {
        max-width: 300px;
        margin: 0 auto;
    }
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 38, 36, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-medium);
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 2rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--coral);
    transform: rotate(90deg);
}

.lightbox-caption {
    text-align: center;
    margin-top: 1rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--teal-bright);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--teal);
    border: none;
    color: var(--darkest);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lightbox-nav:hover {
    background: var(--coral);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

@media (max-width: 768px) {
    .lightbox-nav {
        display: none;
    }
}

/* ============================================
   SERVICES DETAIL (individual service pages)
   ============================================ */

.services-detail {
    padding: 4rem 3rem;
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-card {
    background: var(--darker-teal);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--teal);
    transition: all var(--transition-fast);
    text-align: center;
}

.service-detail-card:hover {
    transform: translateY(-10px);
    border-color: var(--coral);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.service-detail-card.paint-card:hover {
    border-color: var(--coral);
}

.service-detail-card.cook-card:hover {
    border-color: var(--teal-bright);
}

.service-detail-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-detail-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--cream);
    margin-bottom: 1rem;
}

.service-detail-desc {
    color: var(--cream);
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-detail-price {
    font-weight: 700;
    color: var(--teal-bright);
    font-size: 1.2rem;
}

.paint-card .service-detail-price {
    color: var(--coral);
}

/* CTA Banner */
.cta-banner {
    padding: 5rem 3rem;
    background: linear-gradient(135deg, var(--darker-teal) 0%, var(--darkest) 100%);
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(224, 122, 122, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-banner-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--cream);
    margin-bottom: 1rem;
    position: relative;
}

.cta-banner-text {
    font-size: 1.2rem;
    color: var(--cream);
    opacity: 0.8;
    margin-bottom: 2rem;
    position: relative;
}

.cta-banner .cta-btn {
    position: relative;
}
