
<style>
        .family-photo {
    width: 500px;
    height: auto;
    border-radius: 20px;
}
        :root {
            /* Warm, inviting bakery-style palette */
    --primary: #8b5e3c;          /* warm brown */
    --primary-light: #a47148;    /* lighter brown */
    --primary-dark: #5a3a22;     /* deep cocoa brown */

    --secondary: #f2c14e;        /* warm golden yellow */
    --secondary-light: #f7d774;  /* soft butter yellow */

    --accent: #e7a977;           /* warm peachy tan */
    --accent-blue: #c9a27e;      /* soft neutral tan accent */

    --bg-cream: #fff8ef;         /* warm cream background */
    --bg-green-light: #f5eadc;   /* replaced green tint with beige */
    --bg-gold-light: #fff1cc;    /* soft warm glow */

    --text-dark: #2b1d14;        /* deep warm brown text */
    --text-light: #7a6658;       /* soft brown-gray */

    --white: #ffffff;

    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08),
              0 2px 4px -1px rgba(0, 0, 0, 0.04);

    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.12),
                 0 4px 6px -2px rgba(0, 0, 0, 0.08);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Nunito', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--bg-cream);
            background-image:
                radial-gradient(circle at 1px 1px, rgba(139, 94, 60, 0.06) 1px, transparent 0),
                radial-gradient(circle at 10px 10px, rgba(242, 193, 78, 0.04) 1px, transparent 0);
            background-size: 24px 24px;
        }

        /* Fun confetti background pattern */
        .confetti-bg {
            background-image: 
                radial-gradient(circle at 20% 80%, var(--secondary) 2px, transparent 2px),
                radial-gradient(circle at 80% 20%, var(--accent) 2px, transparent 2px),
                radial-gradient(circle at 40% 40%, var(--accent-blue) 1.5px, transparent 1.5px),
                radial-gradient(circle at 60% 70%, var(--secondary) 1.5px, transparent 1.5px),
                radial-gradient(circle at 90% 90%, var(--accent) 2px, transparent 2px),
                radial-gradient(circle at 10% 30%, var(--accent-blue) 1px, transparent 1px);
            background-size: 100px 100px;
        }
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;

    background-image: radial-gradient(circle, rgba(255,255,255,0.7) 1px, transparent 1px);
    background-size: 90px 90px;

    animation: sparkleDrift 25s linear infinite;
    opacity: 0.25;
}
        /* Navigation */
        nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

nav.shrink {
    padding: 0.1rem 0;
}

nav.shrink .logo img {
    width: 120px; /* adjust if needed */
    transition: all 0.3s ease;
}
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Quicksand', sans-serif;
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

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

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

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary);
        }
body {
    padding-top: 80px;
}
        html {
    scroll-padding-top: 80px;
}
        /* Dropdown */
        .dropdown {
            position: relative;
        }

        .dropdown-toggle {
            background: none;
            border: none;
            font-family: inherit;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-dark);
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.25rem;
            transition: color 0.3s ease;
        }

        .dropdown-toggle:hover {
            color: var(--primary);
        }

        .dropdown-toggle::after {
            content: '▼';
            font-size: 0.6rem;
            transition: transform 0.3s ease;
        }

        .dropdown:hover .dropdown-toggle::after {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: var(--white);
            min-width: 180px;
            border-radius: 12px;
            box-shadow: var(--shadow-lg);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            padding: 0.5rem 0;
            margin-top: 0.5rem;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
        }

        .dropdown-menu a {
            display: block;
            padding: 0.75rem 1.5rem;
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .dropdown-menu a:hover {
            background: var(--bg-green-light);
            color: var(--primary);
        }

        /* Mobile menu */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, var(--bg-green-light) 0%, var(--bg-gold-light) 50%, var(--bg-cream) 100%);
            display: flex;
            align-items: center;
            padding: 8rem 2rem 4rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 15% 85%, var(--secondary) 4px, transparent 4px),
                radial-gradient(circle at 85% 15%, var(--accent) 4px, transparent 4px),
                radial-gradient(circle at 45% 25%, var(--accent-blue) 3px, transparent 3px),
                radial-gradient(circle at 75% 75%, var(--secondary) 3px, transparent 3px),
                radial-gradient(circle at 25% 55%, var(--accent) 2px, transparent 2px),
                radial-gradient(circle at 95% 45%, var(--accent-blue) 2px, transparent 2px),
                radial-gradient(circle at 5% 15%, var(--secondary) 3px, transparent 3px),
                radial-gradient(circle at 55% 95%, var(--accent) 2px, transparent 2px);
            background-size: 200px 200px;
            opacity: 0.6;
            pointer-events: none;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content h1 {
            font-family: 'Quicksand', sans-serif;
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
        }

        .hero-content h1 .green {
            color: var(--primary);
        }

        .hero-content h1 .gold {
            color: var(--secondary);
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }

        .hero-content p {
            font-size: 1.25rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            max-width: 500px;
        }

        .hero-tagline {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: var(--white);
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            font-weight: 600;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .btn {
            display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: all 0.25s ease;

    /* plush toy feel */
    box-shadow:
        0 6px 0 rgba(90, 58, 34, 0.25),
        0 10px 18px rgba(0, 0, 0, 0.12);

    position: relative;
    transform: translateY(0);
        }
.btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 0 rgba(90, 58, 34, 0.2),
        0 14px 22px rgba(0, 0, 0, 0.15);
}

.btn:active {
    transform: translateY(3px);
    box-shadow:
        0 3px 0 rgba(90, 58, 34, 0.25),
        0 6px 12px rgba(0, 0, 0, 0.1);
}
        .btn-primary {
            background: linear-gradient(135deg, #a47148, #8b5e3c);
    color: #fff8ef;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            margin-left: 1rem;
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: var(--white);
        }

        .btn-gold {
            background: linear-gradient(135deg, #f7d774, #f2c14e);
    color: #2b1d14;
        }

        .btn-gold:hover {
            background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary) 100%);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .hero-images {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .hero-images .image-placeholder {
            width: 100%;
            height: 200px;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
            transition: transform 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
        }

        .hero-images .image-placeholder:hover {
            transform: scale(1.05);
        }

        .hero-images .image-placeholder:first-child {
            grid-row: span 2;
            height: 100%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
        }

        .hero-images .image-placeholder:nth-child(2) {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
        }

        .hero-images .image-placeholder:nth-child(3) {
            background: linear-gradient(135deg, var(--accent) 0%, #ff8fb3 100%);
        }

        /* Section Styling */
        section {
            padding: 6rem 2rem;
        }

        .section-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 4rem;
        }

        .section-header h2 {
            font-family: 'Quicksand', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .section-header p {
            color: var(--text-light);
            font-size: 1.1rem;
        }

        .section-header .accent-green {
            color: var(--primary);
        }

        .section-header .accent-gold {
            color: var(--secondary);
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }

        /* Who We Are */
        #about {
            background: var(--white);
        }

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

        .about-image {
            position: relative;
        }

        .about-image .image-placeholder {
            width: 100%;
            height: 500px;
            border-radius: 30px;
            box-shadow: var(--shadow-lg);
            background: linear-gradient(135deg, var(--bg-green-light) 0%, var(--bg-gold-light) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 6rem;
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 100%;
            height: 100%;
            background: var(--secondary);
            border-radius: 30px;
            z-index: -1;
            opacity: 0.3;
        }

        .about-content h3 {
            font-size: 1.75rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .about-content p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .about-highlight {
            background: linear-gradient(135deg, var(--bg-green-light) 0%, var(--bg-gold-light) 100%);
            border-left: 4px solid var(--secondary);
            padding: 1.25rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
        }

        .about-highlight p {
            margin: 0;
            font-weight: 600;
            color: var(--primary);
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .feature-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
        }

        .feature-icon.gold {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
        }

        /* Services / What We Do */
        #services {
            background: linear-gradient(135deg, var(--bg-green-light) 0%, var(--bg-gold-light) 100%);
            position: relative;
        }

        #services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 10% 90%, var(--secondary) 3px, transparent 3px),
                radial-gradient(circle at 90% 10%, var(--accent) 3px, transparent 3px),
                radial-gradient(circle at 50% 50%, var(--accent-blue) 2px, transparent 2px);
            background-size: 150px 150px;
            opacity: 0.4;
            pointer-events: none;
        }

        .services-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            position: relative;
            z-index: 1;
        }

        .service-card {
            background: var(--white);
            border-radius: 24px;
            padding: 2.5rem 2rem;
            text-align: center;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--bg-green-light) 0%, var(--bg-gold-light) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin: 0 auto 1.5rem;
        }

        .service-card h3 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .service-card p {
            color: var(--text-light);
        }

        /* Gallery */
        #gallery {
            background: var(--white);
        }

        .gallery-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: var(--shadow);
            cursor: pointer;
        }

        .gallery-item .image-placeholder {
            width: 100%;
            height: 250px;
            transition: transform 0.5s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
        }

        .gallery-item:hover .image-placeholder {
            transform: scale(1.1);
        }

        .gallery-item:nth-child(1) .image-placeholder,
        .gallery-item:nth-child(6) .image-placeholder {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
        }

        .gallery-item:nth-child(2) .image-placeholder {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
        }

        .gallery-item:nth-child(3) .image-placeholder {
            background: linear-gradient(135deg, var(--accent) 0%, #ff8fb3 100%);
        }

        .gallery-item:nth-child(4) .image-placeholder {
            background: linear-gradient(135deg, var(--accent-blue) 0%, #81d4fa 100%);
        }

        .gallery-item:nth-child(5) .image-placeholder {
            background: linear-gradient(135deg, #a5d6a7 0%, #81c784 100%);
        }

        .gallery-item:nth-child(1),
        .gallery-item:nth-child(6) {
            grid-column: span 2;
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(32, 55, 49, 0.9), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: flex-end;
            padding: 1.5rem;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay span {
            color: var(--white);
            font-weight: 600;
        }

        /* Pricing */
        #pricing {
            background: linear-gradient(135deg, var(--bg-gold-light) 0%, var(--bg-cream) 100%);
        }

        .pricing-grid {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .pricing-card {
            background: var(--white);
            border-radius: 24px;
            padding: 2.5rem;
            text-align: center;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .pricing-card.featured {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            transform: scale(1.05);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .pricing-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--secondary);
            color: var(--primary-dark);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.85rem;
        }

        .pricing-card h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .pricing-card .price {
            font-size: 3rem;
            font-weight: 800;
            margin: 1.5rem 0;
        }

        .pricing-card .price span {
            font-size: 1rem;
            font-weight: 400;
        }

        .pricing-card ul {
            list-style: none;
            margin: 2rem 0;
            text-align: left;
        }

        .pricing-card ul li {
            padding: 0.75rem 0;
            border-bottom: 1px solid rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .pricing-card.featured ul li {
            border-color: rgba(255,255,255,0.2);
        }

        .pricing-card ul li::before {
            content: '✓';
            color: var(--primary);
            font-weight: bold;
        }

        .pricing-card.featured ul li::before {
            color: var(--secondary);
        }

        .pricing-card .btn {
            width: 100%;
        }

        .pricing-card.featured .btn {
            background: var(--secondary);
            color: var(--primary-dark);
        }

        .pricing-card.featured .btn:hover {
            background: var(--secondary-light);
        }

        /* Testimonials */
        #testimonials {
            background: var(--white);
        }

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

        .testimonial-card {
            background: linear-gradient(135deg, var(--bg-green-light) 0%, var(--bg-gold-light) 100%);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: var(--shadow);
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 1rem;
            right: 2rem;
            font-size: 5rem;
            color: var(--primary);
            opacity: 0.2;
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-content {
            margin-bottom: 1.5rem;
            color: var(--text-dark);
            font-style: italic;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .testimonial-author .avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--white);
        }

        .testimonial-author h4 {
            font-size: 1rem;
            margin-bottom: 0.25rem;
            color: var(--primary);
        }

        .testimonial-author span {
            font-size: 0.85rem;
            color: var(--text-light);
        }

        .stars {
            color: var(--secondary);
            margin-bottom: 1rem;
        }

        /* Green Bay Pride Section */
        #greenbay {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        #greenbay::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 30%, var(--secondary) 4px, transparent 4px),
                radial-gradient(circle at 80% 70%, var(--secondary) 4px, transparent 4px),
                radial-gradient(circle at 50% 10%, var(--secondary) 3px, transparent 3px),
                radial-gradient(circle at 10% 80%, var(--secondary) 3px, transparent 3px),
                radial-gradient(circle at 90% 20%, var(--secondary) 2px, transparent 2px);
            background-size: 200px 200px;
            opacity: 0.3;
            pointer-events: none;
        }

        .greenbay-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .greenbay-content h2 {
            font-family: 'Quicksand', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .greenbay-content h2 span {
            color: var(--secondary);
        }

        .greenbay-content p {
            font-size: 1.25rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }

        .greenbay-stats {
            display: flex;
            justify-content: center;
            gap: 4rem;
            margin-top: 3rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-item .number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--secondary);
        }

        .stat-item .label {
            font-size: 1rem;
            opacity: 0.9;
        }

        /* Contact */
        #contact {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
            color: var(--primary-dark);
        }

        #contact .section-header h2,
        #contact .section-header p {
            color: var(--primary-dark);
        }

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

        .contact-form {
            background: var(--white);
            padding: 3rem;
            border-radius: 24px;
            box-shadow: var(--shadow-lg);
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

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

        .form-group.full-width {
            grid-column: span 2;
        }

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

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
        }

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

        .contact-form .btn {
            width: 100%;
            padding: 1.25rem;
            font-size: 1.1rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: var(--white);
        }

        .contact-form .btn:hover {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
        }

        .contact-info {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 3rem;
        }

        .contact-info-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--primary-dark);
            font-weight: 600;
        }

        .contact-info-item span {
            font-size: 1.5rem;
        }

        .site-footer {
    background: #1f1f1f;
    color: white;
    padding: 60px 20px 20px;
    margin-top: 60px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 15px;
}

.footer-column p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
}

.footer-column a {
    display: block;
    color: #bbb;
    text-decoration: none;
    margin-bottom: 8px;
    transition: 0.2s;
    font-size: 14px;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 13px;
    color: #888;
}
        .footer-bottom .packers {
            color: var(--secondary);
        }
.footer-social-center {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffb6c1;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    background: #ff8fb1;
}
        /* Responsive */
        @media (max-width: 968px) {
            .hero-container,
            .about-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content {
                order: 2;
            }

            .hero-images {
                order: 1;
            }

            .hero-content p {
                margin: 0 auto 2rem;
            }

            .services-grid,
            .pricing-grid,
            .testimonial-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
            }

            .pricing-card.featured {
                transform: none;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .gallery-item:nth-child(1),
            .gallery-item:nth-child(6) {
                grid-column: span 1;
            }

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

            .form-group.full-width {
                grid-column: span 1;
            }

            .contact-info {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }

            .greenbay-stats {
                flex-direction: column;
                gap: 2rem;
            }
        }

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

            .mobile-toggle {
                display: block;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-images {
                grid-template-columns: 1fr;
            }

            .hero-images .image-placeholder:first-child {
                grid-row: span 1;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

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

            .services-grid {
                max-width: 100%;
            }
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background: var(--white);
            padding: 2rem;
            box-shadow: var(--shadow-lg);
            z-index: 999;
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-menu a {
            display: block;
            padding: 1rem;
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px solid #eee;
        }

        .mobile-menu a:hover {
            color: var(--primary);
            background: var(--bg-green-light);
        }

        /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .float-animation {
            animation: float 3s ease-in-out infinite;
        }
        @keyframes floatDots {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.confetti-bg::before {
    animation: floatDots 8s ease-in-out infinite;
}
  /* FIX: Hero real images styling */
.hero-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.hero-images img:hover {
    transform: scale(1.05);
}

.hero-images img:first-child {
    grid-row: span 2;
    height: 100%;
}

/* FIX: About page image styling */
.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}  
.hero-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    align-items: stretch;
}

/* staggered, more dynamic feel */
.hero-images img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* make one “hero” image bigger */
.hero-images img:first-child {
    grid-row: span 2;
    height: 100%;
}

/* soft float feel */
.hero-images img:nth-child(2) {
    transform: translateY(10px);
}

.hero-images img:nth-child(3) {
    transform: translateY(-6px);
}

.hero-images img:hover {
    transform: scale(1.05);
    box-shadow: 0 18px 30px rgba(0,0,0,0.18);
}
.btn {
    transition: all 0.2s cubic-bezier(.2,.8,.2,1);
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
}

.btn:active {
    transform: translateY(2px) scale(0.98);
}
.service-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
    transform: translateY(-12px) rotate(-0.3deg);
    box-shadow: 0 18px 35px rgba(0,0,0,0.15);
}
.hero-content h1 span {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    display: inline-block;
    box-shadow: var(--shadow);
}
body {
    position: relative;
    z-index: 1;
}
@keyframes sparkleDrift {
    from { transform: translateY(0px); }
    to { transform: translateY(-120px); }
}

.intro-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--bg-cream), var(--bg-gold-light));
    position: relative;
    overflow: hidden;
}

.intro-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(242, 193, 78, 0.25) 2px, transparent 3px),
        radial-gradient(circle at 70% 60%, rgba(139, 94, 60, 0.15) 2px, transparent 3px),
        radial-gradient(circle at 40% 80%, rgba(201, 162, 126, 0.2) 1.5px, transparent 2px);
    background-size: 120px 120px;
    animation: sparkleDrift 12s linear infinite;
    pointer-events: none;
    opacity: 0.7;
}

.intro-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(8px);
    border-radius: 28px;
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(139, 94, 60, 0.08);
}

.intro-container h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.intro-container p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.intro-container p:last-child {
    margin-bottom: 0;
}

    </style>
