@import url('https://fonts.googleapis.com/css2?family=maison:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Rasa:ital,wght@0,300..700;1,300..700&display=swap');

/* Brand Colors */
:root {
    --color-brand-dark-green: #2E625F;
    --color-brand-green: #428D87;
    --color-brand-light-green: #F5F1E7;
    --color-brand-gray: #2D2D2D;
    --color-brand-orange: #F08521;
    
    --font-playfair: "Playfair", serif;
    --font-rasa: "Rasa", serif;
    --font-maison: 'Maison Neue', sans-serif;
}

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

body {
    font-family: var(--font-maison);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Global link styles */
a {
    color: #000000;
}

.antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Layout Components */
.page-container {
    display: flex;
    align-items: center;
    background-color: var(--color-brand-gray);
}

.page-wrapper {
    width: 100vw;
    height: fit-content;
    overflow: hidden;
}

/* Navbar Component */
.navbar {
    position: fixed;
    width: 100vw;
    z-index: 10;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    transition: all 0.5s ease-in-out;
}

.navbar--scrolled {
    background-color: var(--color-brand-dark-green);
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.navbar__container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar__logo {
    width: 9rem;
    height: auto;
}

.navbar__links {
    display: none;
}

.navbar__link {
    position: relative;
    text-decoration: none;
    font-family: var(--font-maison);
    color: var(--color-brand-light-green);
    transition: color 0.3s ease;
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-brand-light-green);
    transition: width 0.3s ease;
}

.navbar__link:hover::after {
    width: 100%;
}

.navbar__hamburger {
    display: block;
    color: var(--color-brand-light-green);
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

.navbar__hamburger-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.navbar__mobile-menu {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    opacity: 0;
    max-height: 0;
}

.navbar__mobile-menu--open {
    opacity: 1;
    margin-top: 2rem;
    margin-bottom: 2rem;
    max-height: 500px;
}

.navbar__mobile-link {
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-maison);
    color: var(--color-brand-light-green);
    border-radius: 0.75rem;
    text-decoration: none;
}

.navbar__mobile-link:active {
    background-color: var(--color-brand-green);
}

/* Toast Container */
.toast-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Hero/Carousel Section */
.hero-section {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__header {
    position: absolute;
    z-index: 1;
    max-width: 400px;
    color: var(--color-brand-light-green);
    text-align: center;
}

.hero__header-title {
    font-size: 2.25rem;
    line-height: calc(2.5 / 2.25);
    font-family: var(--font-maison);
    font-weight: 900;
}

.hero__carousel {
    width: 100%;
    height: 100%;
}

.hero__carousel-container {
    display: flex;
    transition: transform 1s ease-in-out;
    height: 100%;
}

.hero__carousel-slide {
    width: 100%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
}

.hero__carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About Section */
.about-section {
    height: fit-content;
    width: 100%;
    background-color: var(--color-brand-green);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    gap: 2rem;
    border-top: 2px solid var(--color-brand-orange);
    border-bottom: 2px solid var(--color-brand-orange);
}

.about-section__content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.about-section__title {
    font-family: var(--font-maison);
    font-weight: 900;
    color: var(--color-brand-light-green);
    font-size: 1.875rem;
    line-height: calc(2.25 / 1.875);
    text-align: center;
    letter-spacing: -0.025em;
}

.about-section__image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid var(--color-brand-orange);
}

.about-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-section__image--desktop {
    display: none;
}

.about-section__image--mobile {
    display: block;
}

.about-section__text {
    max-width: 65ch;
    font-family: var(--font-maison);
    color: var(--color-brand-light-green);
    text-align: center;
    font-size: 1rem;
    line-height: 1.625;
}

/* Menu Section */
.menu-section {
    min-height: 85vh;
    height: fit-content;
    width: 100%;
    background-color: var(--color-brand-light-green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-section__container {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    gap: 2rem;
}

.menu-section__title {
    font-family: var(--font-maison);
    font-weight: 900;
    color: var(--color-brand-gray);
    font-size: 1.875rem;
    text-align: center;
}

.menu-section__description {
    max-width: 42rem;
    font-family: var(--font-maison);
    color: var(--color-brand-gray);
    text-align: center;
    font-size: 1rem;
}

.menu-section__pdf-viewer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 800px;
}

/* PDF Viewer Container */
.pdf-viewer__container {
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.pdf-viewer__canvas {
    max-width: 100%;
    max-height: 60vh;
    width: auto;
    height: auto;
    display: block;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: white;
}

.pdf-viewer__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    padding: 0 1rem;
}

.pdf-viewer__button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-maison);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-brand-gray);
    background-color: white;
    border: 2px solid var(--color-brand-green);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pdf-viewer__button:hover:not(:disabled) {
    background-color: var(--color-brand-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 141, 135, 0.3);
}

.pdf-viewer__button:active:not(:disabled) {
    transform: translateY(0);
}

.pdf-viewer__button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #e5e7eb;
    border-color: #d1d5db;
    color: #9ca3af;
}

.pdf-viewer__button svg {
    flex-shrink: 0;
}

.pdf-viewer__page-info {
    font-family: var(--font-maison);
    font-size: 1rem;
    color: var(--color-brand-gray);
    font-weight: 600;
    min-width: 100px;
    text-align: center;
}

@media (max-width: 640px) {
    .pdf-viewer__canvas {
        max-height: 50vh;
    }
    
    .pdf-viewer__button {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .pdf-viewer__button span {
        display: none;
    }
    
    .pdf-viewer__page-info {
        font-size: 0.875rem;
        min-width: 80px;
    }
}

/* Mobile Line Height Adjustments */
@media (max-width: 767px) {
    .hero__header-title {
        line-height: 1.3;
    }
    
    .about-section__title {
        line-height: 1.4;
    }
    
    .about-section__text {
        line-height: 1.75;
    }
    
    .menu-section__title {
        line-height: 1.4;
    }
    
    .menu-section__description {
        line-height: 1.75;
    }
    
    .franchising-section__title {
        line-height: 1.4;
    }
    
    .franchising-section__text {
        line-height: 1.75;
    }
    
    .location-section__title {
        line-height: 1.4;
    }
    
    .location-card__title {
        line-height: 1.4;
    }
    
    .location-card__info {
        line-height: 1.6;
    }
    
    .feedback-section__title {
        line-height: 1.4;
    }
    
    .contact-section__title {
        line-height: 1.4;
    }
    
    .contact-section__contacts {
        line-height: 1.75;
    }
    
    .footer__text {
        line-height: 1.6;
    }
}

.menu-section__open-button {
    cursor: pointer;
    transition: transform 0.5s ease-in-out;
    border-radius: 0.75rem;
    padding: 0.5rem 1rem;
    font-family: var(--font-maison);
    font-weight: 700;
    color: var(--color-brand-light-green);
    background-color: var(--color-brand-green);
    border: none;
    text-decoration: none;
    display: inline-block;
}

.menu-section__open-button:hover {
    transform: scale(1.1);
}

/* Franchising Section */
.franchising-section {
    height: fit-content;
    width: 100%;
    background-color: var(--color-brand-green);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    gap: 2rem;
    border-top: 2px solid var(--color-brand-orange);
    border-bottom: 2px solid var(--color-brand-orange);
}

.franchising-section__content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.franchising-section__title {
    font-family: var(--font-maison);
    font-weight: 900;
    color: var(--color-brand-light-green);
    font-size: 1.875rem;
    text-align: center;
    letter-spacing: -0.025em;
}

.franchising-section__image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid var(--color-brand-orange);
}

.franchising-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.franchising-section__image--desktop {
    display: none;
}

.franchising-section__image--mobile {
    display: block;
}

.franchising-section__text-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.franchising-section__text {
    max-width: 65ch;
    font-family: var(--font-maison);
    color: var(--color-brand-light-green);
    text-align: center;
    font-size: 1rem;
    line-height: 1.625;
}

/* Location Section */
.location-section {
    min-height: 85vh;
    height: fit-content;
    width: 100%;
    background-color: var(--color-brand-light-green);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 1rem;
}

.location-section__title {
    font-family: var(--font-maison);
    font-weight: 900;
    color: var(--color-brand-gray);
    font-size: 1.875rem;
    text-align: center;
}

.location-section__cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.location-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background-color: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    font-family: var(--font-maison);
}

.location-card__title {
    font-family: var(--font-maison);
    font-size: 1.25rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.location-card__info {
    font-family: var(--font-maison);
    display: flex;
    gap: 0.5rem;
    font-size: 1rem;
}

.location-card__info--address {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
    max-width: 28rem;
    text-align: center;
}

.location-card__icon {
    width: 1rem;
    height: 1rem;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.location-card__icon img {
    width: 1rem;
    height: 1rem;
    object-fit: contain;
}

.location-card__link {
    font-family: var(--font-maison);
    color: #000000;
    text-decoration: underline;
    max-width: 300px;
}

.location-card__link:hover {
    color: #000000;
    text-decoration: underline;
}

.location-card a {
    font-family: var(--font-maison);
}

/* Divider */
.divider {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.divider__image {
    width: auto;
    height: 3rem;
    object-fit: cover;
}

/* Feedback Section */
.feedback-section {
    height: fit-content;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: var(--color-brand-green);
    padding: 2rem 1rem;
    gap: 2rem;
    border-bottom: 2px solid var(--color-brand-orange);
}

.feedback-section__title {
    font-family: var(--font-maison);
    font-weight: 900;
    color: var(--color-brand-light-green);
    font-size: 1.875rem;
    text-align: center;
    letter-spacing: -0.025em;
}

.feedback-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feedback-form__row {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feedback-form__field {
    width: 100%;
}

.feedback-form__label {
    display: block;
    font-family: var(--font-maison);
    color: var(--color-brand-light-green);
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.feedback-form__input,
.feedback-form__select,
.feedback-form__textarea {
    width: 100%;
    font-family: var(--font-maison);
    background-color: white;
    border-radius: 0.375rem;
    border: 1px solid #d1d5db;
    padding: 0.5rem;
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.feedback-form__input:focus,
.feedback-form__select:focus,
.feedback-form__textarea:focus {
    box-shadow: 0 0 0 2px var(--color-brand-orange);
}

.feedback-form__textarea {
    height: 7rem;
}

.feedback-form__submit {
    width: 100%;
    background-color: #A3C9A8;
    color: white;
    font-family: var(--font-maison);
    font-weight: 600;
    border-radius: 0.375rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: 1rem 0;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.feedback-form__submit:hover {
    background-color: var(--color-brand-dark-green);
}

/* Contact Section */
.contact-section {
    height: fit-content;
    min-height: 85vh;
    width: 100%;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background-color: var(--color-brand-light-green);
    border-bottom: 2px solid var(--color-brand-orange);
}

.contact-section__title {
    margin-bottom: 2rem;
    font-family: var(--font-maison);
    font-weight: 900;
    color: var(--color-brand-gray);
    font-size: 1.875rem;
    text-align: center;
}

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

.contact-section__contacts {
    text-align: center;
    color: var(--color-brand-gray);
    font-family: var(--font-maison);
    font-size: 1rem;
}

.contact-section__contacts-title {
    font-weight: 700;
    text-decoration: underline;
}

.contact-section__link {
    color: #000000;
    text-decoration: none;
}

.contact-section__link:hover {
    color: #000000;
    text-decoration: underline;
}

.contact-section__social {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
    gap: 1rem;
}

.contact-section__social-title {
    text-align: center;
    color: var(--color-brand-gray);
    font-family: var(--font-maison);
    font-weight: 700;
    text-decoration: underline;
    font-size: 1rem;
}

.contact-section__social-links {
    display: flex;
    gap: 2rem;
    width: 100%;
    justify-content: center;
}

.contact-section__social-link {
    display: block;
}

.contact-section__social-icon {
    aspect-ratio: 1 / 1;
    width: 2rem;
    height: auto;
}

/* Footer */
.footer {
    width: 100%;
    background-color: var(--color-brand-green);
}

.footer__text {
    text-align: center;
    font-family: var(--font-maison);
    color: var(--color-brand-light-green);
    padding: 2rem 0;
    font-size: 1rem;
}

/* Banner */
.banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    background-color: var(--color-brand-green);
    border-bottom: 2px solid var(--color-brand-orange);
}

.banner--sticky {
    position: sticky;
    bottom: 80px;
}

.banner__content {
    display: flex;
    width: 100%;
    gap: 1rem;
    animation: scroll 12s linear infinite;
}

.banner__content:hover {
    animation-play-state: paused;
}

.banner__item {
    display: flex;
    white-space: nowrap;
    align-items: center;
    gap: 1rem;
}

.banner__text {
    font-family: var(--font-maison);
    font-weight: 700;
    font-size: 1.875rem;
    color: var(--color-brand-light-green);
    white-space: nowrap;
}

.banner__dot {
    border-radius: 9999px;
    background-color: var(--color-brand-light-green);
    width: 0.5rem;
    height: 0.5rem;
    flex-shrink: 0;
}

/* Toast Component */
.toast {
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    color: white;
    font-weight: 500;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    animation: slideIn 0.3s ease-out;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 300px;
}

.toast--success {
    background-color: #10b981;
}

.toast--error {
    background-color: #ef4444;
}

.toast__close {
    background: none;
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
}

.toast--removing {
    animation: slideOut 0.3s ease-out;
}

/* Animations */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

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

/* Utility Classes (for JavaScript interactions) */
.hidden {
    display: none;
}

.opacity-0 {
    opacity: 0;
}

.opacity-100 {
    opacity: 1;
}

.max-h-0 {
    max-height: 0;
}

/* Responsive Design */
@media (min-width: 768px) {
    .navbar {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        padding-left: 4rem;
        padding-right: 4rem;
    }

    .navbar--scrolled {
        padding-top: 1rem;
        padding-bottom: 1rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .navbar__logo {
        width: 9rem;
    }

    .navbar__links {
        display: flex;
        gap: 2rem;
    }

    .navbar__link {
        font-size: 1rem;
    }

    .navbar__hamburger {
        display: none;
    }

    .navbar__mobile-menu {
        display: none;
    }

    .hero__header {
        max-width: 500px;
    }

    .hero__header-title {
        font-size: 3rem;
        line-height: 1;
    }

    .about-section {
        flex-direction: row;
        min-height: 85vh;
        padding: 2rem;
        gap: 3rem;
    }

    .about-section__content {
        align-items: flex-start;
        gap: 1rem;
    }

    .about-section__title {
        text-align: left;
        font-size: 2.25rem;
    }

    .about-section__image--desktop {
        display: block;
        width: 50%;
    }

    .about-section__image--mobile {
        display: none;
    }

    .about-section__text {
        text-align: left;
        font-size: 1.125rem;
    }

    .menu-section__title {
        font-size: 2.25rem;
    }

    .menu-section__description {
        font-size: 1.125rem;
    }

    .pdf-viewer__container {
        max-width: 700px;
    }
    
    .pdf-viewer__canvas {
        max-height: 70vh;
    }

    .pdf-viewer__controls {
        gap: 2rem;
    }

    .menu-section__open-button {
        padding: 0.5rem 1rem;
    }

    .franchising-section {
        flex-direction: row;
        min-height: 85vh;
        padding: 2rem;
        gap: 3rem;
    }

    .franchising-section__content {
        align-items: flex-start;
        gap: 1rem;
    }

    .franchising-section__title {
        text-align: left;
        font-size: 2.25rem;
    }

    .franchising-section__image--desktop {
        display: block;
        width: 50%;
    }

    .franchising-section__image--mobile {
        display: none;
    }
    
    .franchising-section__text {
        text-align: left;
        font-size: 1.125rem;
    }

    .location-section__title {
        font-size: 2.25rem;
    }

    .location-card {
        width: calc((100% - 4rem) / 3);
        max-width: 400px;
        min-width: fit-content;
    }

    .location-card__title {
        font-size: 1.25rem;
    }

    .location-card__info {
        font-size: 1.125rem;
    }

    .divider__image {
        height: 3.5rem;
    }

    .feedback-section__title {
        font-size: 2.25rem;
    }

    .feedback-form {
        max-width: 720px;
        gap: 0;
    }

    .feedback-form__row {
        flex-direction: row;
        gap: 1rem;
    }

    .feedback-form__textarea {
        height: 12rem;
    }

    .feedback-form__submit {
        padding: 0.5rem 0;
    }

    .contact-section__title {
        font-size: 2.25rem;
    }

    .contact-section__contacts {
        font-size: 1.25rem;
    }

    .contact-section__social-title {
        font-size: 1.25rem;
    }

    .footer__text {
        padding: 3rem 0;
    }
}

@media (min-width: 1024px) {
    .about-section__image--desktop,
    .franchising-section__image--desktop {
        width: 40%;
    }
    
    .about-section__title,
    .franchising-section__title {
        font-size: 2.25rem;
    }
    
    .about-section__text,
    .franchising-section__text {
        font-size: 1.125rem;
    }
    
    .menu-section__title {
        font-size: 2.25rem;
    }

    .menu-section__description {
        font-size: 1.125rem;
        line-height: calc(1.75 / 1.125);
    }

    .location-card__title {
        font-size: 1.25rem;
    }
    
    .location-card__info {
        font-size: 1.25rem;
    }

    .feedback-form {
        max-width: 720px;
    }

    .contact-section__contacts {
        font-size: 1.25rem;
    }

    .contact-section__social-title {
        font-size: 1.25rem;
    }
}

@media (min-width: 1280px) {
    .about-section,
    .franchising-section {
        gap: 4rem;
    }
    
    .location-section {
        gap: 3rem;
    }
    
    .divider__image {
        height: 4rem;
    }
    
    .feedback-form__textarea {
        height: 16rem;
    }
    
    .feedback-form__submit {
        padding: 1rem 0;
    }
}

@media (min-width: 1536px) {
    .navbar__logo {
        width: 12rem;
    }
    
    .navbar__link {
        font-size: 1.25rem;
    }

    .hero__header {
        max-width: 640px;
    }

    .hero__header-title {
        font-size: 4.5rem;
        line-height: 1;
    }

    .about-section,
    .franchising-section {
        gap: 5rem;
        padding: 2rem 4rem;
    }

    .about-section__title,
    .franchising-section__title {
        font-size: 3.75rem;
    }

    .about-section__text,
    .franchising-section__text {
        font-size: 1.25rem;
    }

    .menu-section__title {
        font-size: 3.75rem;
    }

    .menu-section__description {
        max-width: 48rem;
        font-size: 1.25rem;
        line-height: calc(1.75 / 1.125);
    }
    
    .location-section__title {
        font-size: 3.75rem;
    }
    
    .location-card__title {
        font-size: 1.875rem;
    }
    
    .location-card__info {
        font-size: 1.875rem;
    }

    .divider__image {
        height: 5rem;
    }

    .feedback-section__title {
        font-size: 3.75rem;
    }

    .feedback-form {
        max-width: 1000px;
    }

    .feedback-form__label {
        font-size: 1.125rem;
    }

    .contact-section__title {
        font-size: 3.75rem;
    }

    .contact-section__contacts {
        font-size: 1.5rem;
    }

    .contact-section__social-title {
        font-size: 1.5rem;
    }

    .footer__text {
    font-size: 1.25rem;
    }

    .banner__text {
        font-size: 3rem;
    }

    .banner__dot {
        width: 0.75rem;
        height: 0.75rem;
    }
}
