@font-face {
    font-family: 'Nimbus Sans Black Extended';
    src: url('fonts/nimbus-sans-extd-black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --pink: #FEABDA;
    --orange: #DD702D;
    --wine: #360A05;
    --dark: #200603;
    --cream: #F4F2EA;
    --salmon: #EFC4BE;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--cream);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 5rem;
    background-color: var(--dark);
    z-index: -1;
}

.header {
    background-color: var(--dark);
    padding: 1rem 0;
    margin-top: 2rem;
}

.nav {
    max-width: 90vw;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo .logo {
    height: 40px;
    width: auto;
}

.nav__links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 3rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.nav__links a {
    color: var(--cream);
    text-decoration: none;
    font-family: 'Nimbus Sans Black Extended', 'Arial Black', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav__links a:hover {
    color: var(--pink);
}

.nav__links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.nav__links a[href="index.html"] {
    text-decoration: underline;
}

.nav__links a[href="about.html"] {
    text-decoration: underline;
}

.nav__toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
    z-index: 1000;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--pink);
    transition: all 0.3s ease;
}

main {
    margin-top: 0;
}

.hero {
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-color: var(--dark);
    color: var(--cream);
    padding-bottom: 1rem;
}

.hero__content {
    max-width: 90vw;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero__title {
    font-family: 'Nimbus Sans Black Extended', 'Arial Black', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--pink);
}

.hero__description {
    font-size: 1.2rem;
    color: var(--cream);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero__cta {
    background: linear-gradient(135deg, var(--pink) 0%, var(--salmon) 100%);
    color: var(--dark);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.hero__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(254, 171, 218, 0.3);
}

.hero__image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.about {
    padding: 6rem 0;
    background-color: var(--cream);
}

.about__content {
    max-width: 90vw;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section__title {
    font-family: 'Nimbus Sans Black Extended', 'Arial Black', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--pink);
    margin-bottom: 2rem;
    line-height: 1;
}

.hero .section__title {
    width: 100%;
    text-align: center;
    margin-top: 4rem;
    font-size: clamp(3rem, 8.5vw, 10rem);
}

.section__title__dark {
    font-family: 'Nimbus Sans Black Extended', 'Arial Black', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 2rem;
    line-height: 1.1;
    width: 90vw;
    text-align: left;
    margin-top: 4rem;
    margin-left: auto;
    margin-right: auto;
}

.about__info h3 {
    font-family: 'Nimbus Sans Black Extended', 'Arial Black', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.hero__title__brown {
    font-family: 'Nimbus Sans Black Extended', 'Arial Black', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.about__info p {
    font-size: 1.1rem;
    color: var(--wine);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about__image img {
    width: 100%;
    height: 576px;
    object-fit: cover;
    border-radius: 20px;
}

.about__footer-image {
    width: 90vw;
    height: auto;
    max-height: 90vh;
    object-fit: cover;
    border-radius: 20px;
    margin: 2rem auto 0 auto;
    display: block;
    transform: scaleY(0.9);
}

.scrolling-text {
    background-color: var(--orange);
    height: 4rem;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    position: relative;
}

.scrolling-text__content {
    display: flex;
    align-items: center;
    height: 4rem;
    animation: scroll-left 80s linear infinite;
    animation-delay: 0s;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.scrolling-text__content span {
    font-family: 'Nimbus Sans Black Extended', 'Arial Black', sans-serif;
    font-size: 2.0rem;
    font-weight: 900;
    color: var(--pink);
    letter-spacing: 0.1rem;
    line-height: 1;
    white-space: nowrap;
}

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

.footer-brand {
    padding: 0.5rem 0;
    background-color: var(--cream);
    text-align: center;
}

.footer-brand__title {
    font-family: 'Nimbus Sans Black Extended', 'Arial Black', sans-serif;
    font-size: clamp(2.5rem, 8.5vw, 8rem);
    font-weight: 900;
    color: var(--wine);
    letter-spacing: 2px;
    width: 90vw;
    text-align: center;
    margin: 0 auto;
}

/* About Page Styles */
.about-hero {
    min-height: 92vh;
    background-color: var(--dark);
    color: var(--cream);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 1rem;
}

.about-hero__content {
    max-width: 90vw;
    margin: 2rem auto 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-hero__title {
    font-family: 'Nimbus Sans Black Extended', 'Arial Black', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--pink);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero__description p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--cream);
}

.about-hero__image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 20px;
}

.team-section {
    background-color: var(--cream);
    padding: 6rem 0;
}

.team-section__title {
    font-family: 'Nimbus Sans Black Extended', 'Arial Black', sans-serif;
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 900;
    color: var(--pink);
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1;
}

.team-section__subtitle {
    font-family: 'Nimbus Sans Black Extended', 'Arial Black', sans-serif;
    font-size: clamp(2.7rem, 7.5vw, 9rem);
    font-weight: 900;
    color: var(--dark);
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 0.1rem;
    line-height: 1;
}

.team-grid {
    max-width: 90vw;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.team-member {
    text-align: center;
}

.team-member__image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.team-member__name {
    font-family: 'Nimbus Sans Black Extended', 'Arial Black', sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: -0.2rem;
    letter-spacing: 0.1rem;
    text-align: left;
    line-height: 1;
}

.team-member__position {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--dark);
    margin-top: 0;
    margin-bottom: -0.1rem;
    letter-spacing: 0.1rem;
    text-align: left;
    text-transform: uppercase;
    line-height: 1;
}

.team-member__bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--wine);
    text-align: left;
}

.about-footer-text {
    background-color: var(--wine);
    padding: 3rem 0;
}

.about-hero .section__title {
    width: 90vw;
    text-align: center;
    margin: 4rem auto 0 auto;
    font-size: clamp(2.7rem, 7.5vw, 9rem);
}

.about-footer-text__title {
    font-family: 'Nimbus Sans Black Extended', 'Arial Black', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--cream);
    text-align: center;
    line-height: 1.1;
    max-width: 90vw;
    margin: 0 auto;
}

.scrolling-text--about {
    background-color: var(--wine);
}

.scrolling-text--about .scrolling-text__content span {
    color: var(--cream);
}

/* Services Page Styles */
.services-hero {
    min-height: 92vh;
    background-color: var(--dark);
    color: var(--cream);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 1rem;
}

.services-hero__content {
    max-width: 90vw;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.services-hero__title {
    font-family: 'Nimbus Sans Black Extended', 'Arial Black', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--pink);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.services-hero__description p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--cream);
}

.services-hero__image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 20px;
}

.service-section {
    padding: 6rem 0;
}

.service-section:nth-child(odd) {
    background-color: var(--dark);
}

.service-section:nth-child(odd) .service-section__title,
.service-section:nth-child(odd) .service-section__subtitle {
    color: var(--pink);
}

.service-section:nth-child(odd) .service-section__description {
    color: var(--cream);
}

.service-section:nth-child(odd) .service-section__list li {
    color: var(--cream);
}

.service-section__closing {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--wine);
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.service-section:nth-child(odd) .service-section__closing {
    color: var(--cream);
}

.service-section__cta {
    background: linear-gradient(135deg, var(--pink) 0%, var(--salmon) 100%);
    color: var(--dark);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
}

.service-section__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(254, 171, 218, 0.3);
}

.service-section:nth-child(even) {
    background-color: var(--cream);
}

.service-section:nth-child(even) .service-section__title,
.service-section:nth-child(even) .service-section__subtitle {
    color: var(--dark);
}

.service-section:nth-child(even) .service-section__description {
    color: var(--wine);
}

.service-section__content {
    max-width: 90vw;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-section__title {
    font-family: 'Nimbus Sans Black Extended', 'Arial Black', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.service-section__subtitle {
    font-family: 'Nimbus Sans Black Extended', 'Arial Black', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: 0.1rem;
    line-height: 1.2;
}

.service-section__description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--wine);
}

.service-section__list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.service-section__list li {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--wine);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-section__list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--pink);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-section__image img {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 20px;
}

.nav__links a[href="services.html"] {
    text-decoration: underline;
}

.nav__links a[href="contact.html"] {
    text-decoration: underline;
}

.services-hero .section__title {
    width: 90vw;
    text-align: center;
    margin: 4rem auto 0 auto;
    font-size: clamp(3rem, 8.5vw, 10rem);
}

/* Contact Page Styles */
.contact-hero {
    min-height: 92vh;
    background-color: var(--dark);
    color: var(--cream);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 1rem;
}

.contact-hero__content {
    max-width: 90vw;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-hero__title {
    font-family: 'Nimbus Sans Black Extended', 'Arial Black', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--pink);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-hero__description p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--cream);
}

.contact-hero__image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.contact-hero .section__title {
    width: 90vw;
    text-align: center;
    margin: 4rem auto 0 auto;
    font-size: clamp(3rem, 8.5vw, 10rem);
}

.contact-embed {
    background-color: var(--cream);
    padding: 4rem 0;
    min-height: 70vh;
}

.contact-embed__container {
    max-width: 90vw;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hamburger animation for X transformation */
.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

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

@media (max-width: 768px) {

    .hero__content,
    .about__content,
    .services__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero__content {
        display: flex;
        flex-direction: column;
    }

    .hero__image {
        order: 1;
    }

    .hero__text {
        order: 2;
    }

    .hero .section__title {
        order: 3;
        margin-top: 2rem;
    }

    .about__content .about__image {
        order: -1;
    }

    /* About page mobile styles */
    .about-hero__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        display: flex;
        flex-direction: column;
    }

    .about-hero__image {
        order: 1;
    }

    .about-hero__text {
        order: 2;
    }

    .about-hero .section__title {
        order: 3;
        margin-top: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-member__image {
        height: 250px;
    }

    /* Services page mobile styles */
    .services-hero__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        display: flex;
        flex-direction: column;
    }

    .services-hero__image {
        order: 1;
    }

    .services-hero__text {
        order: 2;
    }

    .services-hero .section__title {
        order: 3;
        margin-top: 2rem;
    }

    .service-section__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }

    .service-section__image {
        order: -1;
    }

    .service-section__image img {
        max-width: 100%;
        width: 100%;
        height: auto;
    }

    /* Contact page mobile styles */
    .contact-hero__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        display: flex;
        flex-direction: column;
    }

    .contact-hero__image {
        order: 1;
    }

    .contact-hero__text {
        order: 2;
    }

    .contact-hero .section__title {
        order: 3;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    /* Mobile logo sizing */
    .nav__logo .logo {
        height: 20px;
        width: auto;
    }

    /* Mobile footer text sizing */
    .footer-brand__title {
        font-size: clamp(2rem, 6.8vw, 6.4rem);
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 0 1rem;
    }

    .hero__content,
    .about__content,
    .services__content {
        padding: 0 1rem;
    }

    .hero__title {
        font-size: 2rem;
    }

    .section__title {
        font-size: 2.5rem;
    }
}

.smooth-scroll {
    scroll-behavior: smooth;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--pink) 0%, var(--salmon) 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(254, 171, 218, 0.3);
}

.scroll-to-top::before {
    content: '↑';
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark);
}