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

body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    background-image: url('background.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #3A3A3A;
    line-height: 1.6;
    margin: 0;
}

h1, h2, h3 {
    font-family: 'Luckiest Guy', cursive;
    font-weight: 400;
}

header {
    background-color: rgba(255, 248, 231, 0.7);
    padding: 2rem 4rem;
    border-bottom: 1px solid #D4C5A9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

header h1 {
    font-size: 2rem;
    font-weight: 600;
}

header h1 a {
    color: #3A3A3A;
    text-decoration: none;
    display: block;
    line-height: 0;
}

header h1 a:hover {
    opacity: 0.8;
}

header h1 img {
    height: 66px;
    width: auto;
}

nav {
    display: flex;
    gap: 3rem;
}

nav a {
    color: #3A3A3A;
    text-decoration: none;
    font-size: 1.1rem;
}

nav a:hover {
    color: #3A3A3A;
}

main {
    max-width: 900px;
    margin: 3rem auto;
    padding: 3rem 2rem;
    background-color: rgba(255, 248, 231, 0.7);
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 6rem);
}

.hero {
    margin-bottom: 4rem;
}

.hero h2 {
    font-family: 'Luckiest Guy', cursive;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-align: center;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    max-width: 800px;
    text-align: left;
}

.section-header {
    font-family: 'Luckiest Guy', cursive;
    text-align: center;
    font-size: 2rem;
    margin: 3rem 0 2rem;
    font-weight: 400;
}

.category {
    margin-bottom: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #f2baa8;
}

.category:first-of-type {
    border-top: none;
    padding-top: 0;
}

.category h3 {
    font-family: 'Luckiest Guy', cursive;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
    text-align: center;
    color: #3A3A3A;
}

.category > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: center;
    font-style: italic;
}

.service {
    margin-bottom: 2rem;
    border-left: 3px solid #f26343;
    padding-left: 1.5rem;
}

.service-header {
    cursor: pointer;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.service-header:hover {
    color: #3A3A3A;
}

.service-price {
    font-size: 1rem;
    color: #3A3A3A;
    display: none;
    margin-top: 0.5rem;
}

.service.active .service-price {
    display: block;
}

.service-details {
    display: none;
    color: #3A3A3A;
    margin-top: 1rem;
    padding-left: 1rem;
}

.service-details.active {
    display: block;
}

.service-details p {
    margin-bottom: 0.8rem;
}

.service-details ul {
    list-style: none;
    margin: 1rem 0;
}

.service-details li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-details li:before {
    content: "•";
    position: absolute;
    left: 0;
}

.testimonials {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #f2baa8;
}

.testimonials h3 {
    font-family: 'Luckiest Guy', cursive;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 400;
    text-align: center;
    color: #3A3A3A;
}

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

.testimonial {
    background-color: #F5EDD6;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid #f26343;
}

.testimonial-dark {
    background-color: #fac984;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid #f26343;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 1rem;
    font-weight: 600;
    color: #3A3A3A;
}

.cta-section {
    text-align: center;
    margin: 4rem 0 3rem;
    padding: 2rem;
    background-color: #F5EDD6;
    border-radius: 8px;
}

.cta-section h3 {
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.contact-form {
    max-width: 680px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: #f7b356;
    border-radius: 8px;
}

.contact-form h3 {
    font-family: 'Luckiest Guy', cursive;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    text-align: center;
    border: 1px solid #c3e6cb;
    font-size: 1.1rem;
}

.contact-form iframe {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1rem;
    border: 1px solid #D4C5A9;
    border-radius: 4px;
    background-color: #F5EDD6;
    color: #3A3A3A;
}

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

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: #f26343;
    color: #FFF8E7;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
    cursor: pointer;
    font-weight: 600;
}

.submit-btn:hover {
    background-color: #d94e2f;
}

/* About page specific styles */
.about-section {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.headshot-container {
    flex-shrink: 0;
}

.headshot {
    width: 300px;
    height: 300px;
    border-radius: 8px;
    object-fit: cover;
}

.bio {
    flex: 1;
}

.bio h2 {
    font-family: 'Luckiest Guy', cursive;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.bio p {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

/* Privacy Policy page styles */
.privacy-policy {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-policy h2 {
    font-family: 'Luckiest Guy', cursive;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.privacy-policy h3 {
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.privacy-policy p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.privacy-policy ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.privacy-policy li {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Footer styles */
footer {
    background-color: rgba(255, 248, 231, 0.7);
    border-top: 1px solid #D4C5A9;
    padding: 2rem 4rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.footer-nav a {
    color: #3A3A3A;
    text-decoration: none;
    font-size: 1rem;
}

.footer-nav a:hover {
    opacity: 0.8;
}

footer p {
    color: #3A3A3A;
    font-size: 0.9rem;
}

/* Logo scroll */
.logo-scroll {
    overflow: hidden;
    background-color: rgba(255, 248, 231, 0.7);
    padding: 2rem 0;
}

.logo-track {
    display: flex;
    gap: 4rem;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.logo-track img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.logo-scroll-small {
    padding: 1rem 0;
    margin: 0 -2rem 2rem;
    background-color: rgba(255, 248, 231, 0.0);
}

.logo-scroll-small .logo-track {
    gap: 2.5rem;
    animation-duration: 20s;
}

.logo-scroll-small .logo-track img {
    height: 24px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    header {
        padding: 1rem 0.5rem;
        flex-direction: column;
        gap: 1rem;
    }

    header h1 {
        font-size: 1.5rem;
        width: 100%;
        padding: 0;
    }

    header h1 a {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    header h1 img {
        height: auto;
        max-width: 85%;
        width: auto;
    }

    main {
        margin: 2rem auto;
        padding: 2rem 1.5rem;
    }

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

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

    .about-section {
        flex-direction: column;
        align-items: center;
    }

    .headshot {
        width: 250px;
        height: 250px;
    }

    .bio h2 {
        font-size: 2rem;
    }

    footer {
        padding: 1.5rem 1rem;
    }

    .footer-nav {
        flex-direction: column;
        gap: 0.5rem;
    }
}
