/* CSS Variables */
:root {
    --color-primary: #d4a574;
    --color-primary-dark: #b8935f;
    --color-secondary: #1a1a1a;
    --color-accent: #ff6b6b;
    --color-success: #4ecdc4;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-background: #ffffff;
    --color-background-alt: #f8f8f8;
    --color-border: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 8px;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Base Styles */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease-out;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    font-weight: 400;
}

/* Layout Components */

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navigation__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.navigation__logo {
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 700;
}

.navigation__toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.navigation__toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--color-secondary);
    margin: 3px 0;
    transition: var(--transition);
}

.navigation__menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.navigation__link {
    font-weight: 500;
    color: var(--color-text);
    padding: 0.5rem 0;
    position: relative;
}

.navigation__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

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

/* Page Sections */

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('https://lh3.googleusercontent.com/gps-cs-s/AC9h4noiMwXSlKNbPMSxJXSvTrh-OHYnCN7zgCpuRaCwVJPNvjRzSxcYhVaiCnqBb0ZS7YBY9oZCyOldZCyKy7gFKdyWEwIADcezv22H5fPvbZ0o6q1uu6OuAzUDzr4ihQUGacLLTmhtHaP7zSfj=w1920-h1080-k-no');
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease-out;
}

.hero__title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

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

.hero__button {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.hero__button--primary {
    background: var(--color-primary);
    color: white;
}

.hero__button--primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero__button--secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

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

.hero__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.hero__stars {
    font-size: 1.5rem;
}

.star {
    color: var(--color-primary);
}

.star.half {
    position: relative;
    display: inline-block;
}

.star.half::before {
    content: '★';
    position: absolute;
    width: 50%;
    overflow: hidden;
    color: var(--color-primary);
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
}

.hero__scroll-text {
    color: white;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    display: block;
}

.hero__scroll-arrow {
    width: 30px;
    height: 30px;
    border-bottom: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--color-background);
}

.about__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about__text h3 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.about__text p {
    margin-bottom: 2rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.about__features {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.about__feature-icon {
    width: 30px;
    height: 30px;
    background: var(--color-success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.about__badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.badge--casual {
    background: #e3f2fd;
    color: #1976d2;
}

.badge--quick {
    background: #fff3e0;
    color: #f57c00;
}

.badge--late {
    background: #f3e5f5;
    color: #7b1fa2;
}

.info-card {
    background: var(--color-background-alt);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

.info-card__title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.info-card__list {
    list-style: none;
}

.info-card__list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.info-card__list li:last-child {
    border-bottom: none;
}

/* Specialties Section */
.specialties {
    padding: 5rem 0;
    background: var(--color-background-alt);
}

.specialties__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.specialty-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

.specialty-card__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.specialty-card__title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.specialty-card__description {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.specialty-card__tags {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tag {
    padding: 0.25rem 0.75rem;
    background: var(--color-primary);
    color: white;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

.specialties__price {
    text-align: center;
}

.price-range {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.price-note {
    color: var(--color-text-light);
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background: var(--color-background);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
    aspect-ratio: 16/9;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery__item:hover img {
    transform: scale(1.1);
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox__image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: fadeIn 0.3s ease;
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 3rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox__close:hover {
    transform: rotate(90deg);
}

.lightbox__controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.lightbox__prev,
.lightbox__next {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    font-size: 3rem;
    padding: 1rem;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
}

.lightbox__prev:hover,
.lightbox__next:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Reviews Section */
.reviews {
    padding: 5rem 0;
    background: var(--color-background-alt);
}

.reviews__summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
}

.reviews__rating {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.reviews__score {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.reviews__stars {
    font-size: 2rem;
    color: var(--color-primary);
    margin: 0.5rem 0;
}

.reviews__count {
    color: var(--color-text-light);
}

.reviews__distribution {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rating-bar {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
    gap: 1rem;
}

.rating-bar__label {
    font-weight: 500;
}

.rating-bar__track {
    height: 8px;
    background: var(--color-border);
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar__fill {
    height: 100%;
    background: var(--color-primary);
    transition: width 1s ease;
}

.rating-bar__count {
    text-align: right;
    color: var(--color-text-light);
    font-size: 0.875rem;
}

.reviews__carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
}

.review-card__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.review-card__stars {
    color: var(--color-primary);
}

.review-card__date {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

.review-card__text {
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.review-card__badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.review-badge {
    padding: 0.25rem 0.5rem;
    background: var(--color-background-alt);
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--color-text-light);
}

.reviews__navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.reviews__nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-primary);
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.reviews__nav:hover {
    background: var(--color-primary-dark);
    transform: scale(1.1);
}

/* Hours Section */
.hours {
    padding: 5rem 0;
    background: var(--color-background);
}

.hours__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.hours__schedule {
    background: var(--color-background-alt);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.hours__day {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
}

.hours__day:last-child {
    border-bottom: none;
}

.hours__day--today {
    background: var(--color-primary);
    color: white;
    border-radius: var(--border-radius);
    font-weight: 600;
}

.hours__day:hover:not(.hours__day--today) {
    background: white;
}

.hours__popular {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.hours__popular-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.hours__status {
    color: var(--color-success);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hours__chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 100px;
    margin-bottom: 1rem;
}

.hours__bar {
    flex: 1;
    background: var(--color-primary);
    border-radius: 2px 2px 0 0;
    margin: 0 1px;
    transition: var(--transition);
    position: relative;
}

.hours__bar:hover {
    opacity: 0.8;
}

.hours__bar-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-secondary);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.hours__bar:hover .hours__bar-tooltip {
    opacity: 1;
}

.hours__legend {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.hours__legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.hours__legend-item::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.hours__legend-item--quiet::before {
    background: #e8f5e9;
}

.hours__legend-item--moderate::before {
    background: var(--color-primary);
}

.hours__legend-item--busy::before {
    background: var(--color-accent);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--color-background-alt);
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

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

.contact__item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact__icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact__details h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
}

.contact__details p {
    color: var(--color-text-light);
    line-height: 1.6;
}

.contact__link {
    color: var(--color-primary);
    font-weight: 600;
}

.contact__link:hover {
    color: var(--color-primary-dark);
}

.contact__buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.contact__button {
    flex: 1;
    padding: 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.contact__button--call {
    background: var(--color-success);
    color: white;
}

.contact__button--call:hover {
    background: #3db5aa;
    transform: translateY(-2px);
}

.contact__button--directions {
    background: var(--color-primary);
    color: white;
}

.contact__button--directions:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

.map-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-placeholder {
    position: relative;
}

.map-placeholder img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.map-overlay:hover {
    opacity: 1;
}

.map-overlay span {
    background: var(--color-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
}

/* Also Search Section */
.also-search {
    padding: 3rem 0;
    background: var(--color-background);
}

.also-search__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.search-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.search-card:hover {
    box-shadow: var(--shadow-md);
}

.search-card__title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
}

.search-card__rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-card__rating .stars {
    color: var(--color-primary);
}

.rating-text {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

/* Footer */
.footer {
    padding: 3rem 0 1rem;
    background: var(--color-secondary);
    color: white;
}

.footer__content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.footer__tagline {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

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

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

.footer__column ul {
    list-style: none;
}

.footer__column li {
    padding: 0.25rem 0;
}

.footer__column a {
    color: rgba(255, 255, 255, 0.8);
}

.footer__column a:hover {
    color: white;
}

.footer__column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer__phone {
    margin-top: 1rem;
    font-weight: 600;
}

.footer__bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer__tags {
    display: flex;
    gap: 0.5rem;
}

.footer__tag {
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    font-size: 0.75rem;
}

/* UI Components */

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

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

.scroll-to-top:hover {
    background: var(--color-primary-dark);
    transform: translateY(-5px);
}

/* Utilities */
.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-20px);
    }
}

@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Media Queries */
@media (max-width: 1023px) {
    .about__content {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .footer__links {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .navigation__toggle {
        display: flex;
    }

    .navigation__menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-md);
        transform: translateX(-100%);
        transition: var(--transition);
    }

    .navigation__menu.active {
        transform: translateX(0);
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1.125rem;
    }

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

    .hero__button {
        width: 100%;
        max-width: 250px;
    }

    .section-title {
        font-size: 1.875rem;
    }

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

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

    .also-search__grid {
        grid-template-columns: 1fr;
    }

    .contact__buttons {
        flex-direction: column;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (min-width: 1440px) {
    .container {
        max-width: 1140px;
    }

    .hero__title {
        font-size: 4rem;
    }

    .section-title {
        font-size: 3rem;
    }
}