﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Fredoka", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    background-color: #edc8d0;
    color: #333;
    line-height: 1.6
}

/* Typography */
h1 {
    font-family: "Fredoka", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #7eddf5;
    text-shadow: 3px 3px 4px rgba(0, 0, 0, 0.5);
}

h2 {
    font-family: "Fredoka", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: #7eddf5;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h3 {
    font-family: "Fredoka", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffde59;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h4 {
    font-family: "Fredoka", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #f6d667; /* Sunny yellow */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}


a {
    color: #a970d5;
    text-decoration: none;
}

    a:hover {
        color: #fa9d9d;
    }

/* Layout */
.container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 1rem;
}

nav {
    background-color: #ffffffcc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-bottom: 3px solid #f6d667;
    border-radius: 0 0 10px 10px;
}

    nav a {
        margin-left: 1rem;
        font-weight: bold;
    }

.custom-navbar {
    background-color: #fdefe2 !important;
    border-bottom: 3px solid #f6d667;
    padding-top: 0rem;
    padding-bottom: 0rem;
}

.site-footer {
    background-color: #fdefe2 !important;
    border-top: 3px solid #f6d667;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    margin-top: 3rem;
    border-top: 2px solid #f2d2ba;
}

    .site-footer p {
        margin: 0;
    }

.logo-img {
    height: 80px;
    width: auto;
    display: block;
    margin-right: 0.5rem;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .logo-img {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 50px;
    }
}




/* Hero Section */
.hero {
    background-color: #fff8f1;
    padding: 2rem;
    border-radius: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

    .hero img {
        max-width: 100%;
        height: auto;
        border-radius: 1rem;
    }

.cta-button {
    background-color: #f6d667;
    color: #7f4ea8;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

    .cta-button:hover {
        background-color: #f6d667;
        transform: scale(1.05);
    }



/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

    .gallery img {
        width: 100%;
        height: auto;
        border-radius: 0.75rem;
        border: 2px solid #bca8d9;
        transition: transform 0.3s;
    }

        .gallery img:hover {
            transform: scale(1.03);
        }

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ffe9d6; /* Match your navbar background */
}




/* Footer */
footer {
    background-color: #ffffffaa;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    border-top: 2px solid #f6d667;
    border-radius: 10px 10px 0 0;
    margin-top: 2rem;
}
.gallery-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #bca8d9;
}

.scattered-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    position: relative;
}

.polaroid {
    background-color: #fff;
    padding: 1rem;
    border: 1px solid #ccc;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.1);
    width: 200px;
    text-align: center;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    transition: transform 0.3s;
    position: relative;
}

    .polaroid img {
        width: 100%;
        height: auto;
        border-radius: 0.5rem;
        margin-bottom: 0.5rem;
    }

/* Gallery rotation effects */
.rotate-left {
    transform: rotate(-5deg);
}

.rotate-right {
    transform: rotate(4deg);
}

.rotate-left-more {
    transform: rotate(-10deg);
}

.rotate-right-more {
    transform: rotate(10deg);
}

.rotate-left-extra {
    transform: rotate(-15deg);
}


@keyframes wiggle {
    0% {
        transform: rotate(-3deg);
    }

    25% {
        transform: rotate(3deg);
    }

    50% {
        transform: rotate(-3deg);
    }

    75% {
        transform: rotate(3deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.polaroid:hover {
    animation: wiggle 0.4s ease-in-out;
    transform: scale(1.05);
    z-index: 10;
}

.about-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.bio-text {
    flex: 1;
    min-width: 250px;
}

.bio-image img {
    max-width: 300px;
    border-radius: 1rem;
    box-shadow: 4px 4px 12px rgba(0,0,0,0.1);
}

.gallery-container {
    background-image: url('/images/CorkBoardBackground.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    padding: 3rem 1rem;
    border-radius: 12px;
}

.business-cards {
    margin-top: 2rem;
    text-align: center;
}

.card {
    background: #f8e2a9;
}

.card-images {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.card img {
    display: block;
    max-width: 500px;
    width: 98%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin: 0 auto;
}

    .card img:hover {
        transform: scale(1.03);
    }

.card p {
    margin-top: 0.5rem;
    font-style: italic;
    color: #555;
}



/* Mobile Friendly */
@media (max-width: 700px) {
    nav {
        flex-direction: column;
    }

    .hero {
        flex-direction: column;
        padding: 1rem;
        gap: 1.5rem;
    }

    .cta-button {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    .hero {
        padding: 1rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }

    .hero img {
        max-width: 100%;
        height: auto;
    }
}

.social-icons {
    display: flex;
    align-items: center;
    margin-top: 8px;
}
.social-icons-header {
    justify-content: flex-start;
}

.social-icons-footer {
    justify-content: center;
    gap: 12px;
}

    .social-icons img {
        width: 24px;
        height: 24px;
        cursor: pointer;
        transition: transform 0.2s ease;
    }

        .social-icons img:hover {
            transform: scale(1.15);
        }

input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
    border: 2px solid #a970d5;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    cursor: pointer;
}

    input[type="checkbox"]:checked {
        background-color: #fce96a; /* pastel yellow */
        border-color: #fce96a;
    }

        input[type="checkbox"]:checked::after {
            content: "✔";
            color: #5a4b00;
            font-size: 14px;
            position: absolute;
            left: 2px;
            top: -1px;
        }

input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid #a970d5;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
    position: relative;
}

    input[type="radio"]:checked {
        background-color: #fce96a;
        border-color: #fce96a;
    }

        input[type="radio"]:checked::after {
            content: "";
            width: 8px;
            height: 8px;
            background-color: #5a4b00;
            border-radius: 50%;
            position: absolute;
            top: 3px;
            left: 3px;
        }
