/* =========================================
   LA TRATTORIA - GUSTI ITALIANI
========================================= */

:root {

    --cream: #f7f1e7;
    --cream-dark: #e9dfd0;

    --green: #173c2d;
    --green-light: #285642;

    --red: #a33a2b;
    --gold: #c49a5a;

    --dark: #171717;
    --gray: #777;
    --white: #ffffff;

    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Montserrat", Arial, sans-serif;
}


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: var(--sans);

    color: var(--dark);

    background: var(--cream);

    line-height: 1.7;
}


img {
    width: 100%;
    display: block;
}


a {
    color: inherit;
    text-decoration: none;
}



/* =========================================
   NAVIGATION
========================================= */

.header {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

}


.navbar {

    width: 90%;
    max-width: 1250px;

    margin: auto;

    padding: 25px 0;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.logo {

    color: white;

    display: flex;

    flex-direction: column;

    line-height: 1;

}


.logo span {

    font-family: var(--serif);

    font-size: 27px;

    font-weight: 700;

    letter-spacing: 2px;

}


.logo small {

    margin-top: 7px;

    font-size: 9px;

    letter-spacing: 4px;

    text-transform: uppercase;

    color: #d8c59d;

}


.nav-links {

    list-style: none;

    display: flex;

    gap: 32px;

}


.nav-links a {

    color: white;

    font-size: 11px;

    font-weight: 500;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition: 0.3s;

}


.nav-links a:hover {

    color: #d5b56e;

}


.nav-button {

    background: var(--red);

    color: white;

    padding: 12px 20px;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;

    transition: 0.3s;

}


.nav-button:hover {

    background: #81291e;

}


.menu-toggle {

    display: none;

    background: none;

    border: none;

    color: white;

    font-size: 28px;

    cursor: pointer;

}



/* =========================================
   HERO
========================================= */

.hero {

    min-height: 100vh;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    background:

        linear-gradient(
            rgba(12, 24, 18, 0.68),
            rgba(12, 24, 18, 0.78)
        ),

        url("bilder/restaurant.jpg")
        center / cover no-repeat;

}


.hero-content {

    max-width: 800px;

    padding: 120px 20px 60px;

    color: white;

}


.eyebrow,
.section-label {

    color: var(--gold);

    text-transform: uppercase;

    letter-spacing: 4px;

    font-size: 11px;

    font-weight: 600;

    margin-bottom: 15px;

}


.hero h1 {

    font-family: var(--serif);

    font-size: clamp(60px, 9vw, 105px);

    line-height: 0.85;

    font-weight: 500;

    margin-bottom: 35px;

}


.hero h1 span {

    display: block;

    color: #d5b56e;

    font-size: 0.48em;

    letter-spacing: 7px;

    text-transform: uppercase;

    margin-top: 25px;

}


.hero-text {

    max-width: 600px;

    margin: auto;

    color: #eeeeee;

    font-size: 15px;

    font-weight: 300;

}


.hero-buttons {

    margin-top: 35px;

    display: flex;

    justify-content: center;

    gap: 15px;

}


.btn {

    display: inline-block;

    padding: 15px 28px;

    border: none;

    cursor: pointer;

    font-family: var(--sans);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition: 0.3s;

}


.btn-primary {

    background: var(--red);

    color: white;

}


.btn-primary:hover {

    background: #81291e;

    transform: translateY(-2px);

}


.btn-outline {

    border: 1px solid rgba(255,255,255,0.6);

    color: white;

}


.btn-outline:hover {

    background: white;

    color: var(--dark);

}


.scroll-down {

    position: absolute;

    bottom: 30px;

    color: white;

    font-size: 25px;

    animation: scrollAnimation 1.5s infinite;

}


@keyframes scrollAnimation {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }

}



/* =========================================
   SECTIONS
========================================= */

.section {

    padding: 110px 8%;

}


.section-heading {

    max-width: 650px;

    margin: 0 auto 55px;

    text-align: center;

}


.section-heading h2,
.about-content h2,
.reservation-content h2,
.contact-info h2 {

    font-family: var(--serif);

    font-size: clamp(45px, 5vw, 70px);

    font-weight: 500;

    line-height: 0.95;

    margin-bottom: 25px;

}


.section-heading h2 span,
.about-content h2 span,
.reservation-content h2 span,
.contact-info h2 span {

    display: block;

    color: var(--red);

}


.section-heading > p:last-child {

    color: var(--gray);

}



/* =========================================
   ÜBER UNS
========================================= */

.about {

    max-width: 1300px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;

}


.image-frame {

    position: relative;

    padding: 15px;

    border: 1px solid var(--gold);

}


.image-frame::before {

    content: "";

    position: absolute;

    top: -25px;
    left: -25px;

    width: 100%;
    height: 100%;

    border: 1px solid rgba(196,154,90,0.3);

    z-index: -1;

}


.about-content p {

    color: #666;

    margin-bottom: 20px;

}


.text-link {

    display: inline-block;

    margin-top: 10px;

    color: var(--red);

    font-size: 11px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;

}



/* =========================================
   SPEISEKARTE
========================================= */

.menu-section {

    background: #efe6d8;

}


.menu-subheading {

    max-width: 900px;

    margin: 45px auto 0;

    text-align: center;

}


.menu-subheading h3 {

    display: inline-block;

    font-family: var(--serif);

    font-size: 38px;

    font-weight: 600;

    color: var(--green);

}


.menu-subheading h3::after {

    content: "";

    display: block;

    width: 45px;

    height: 2px;

    margin: 10px auto 0;

    background: var(--gold);

}


.main-dishes {

    margin-top: 65px;

}


.dessert-heading {

    margin-top: 65px;

}


.dessert-heading h3 {

    color: var(--red);

}


.dessert-note {

    color: var(--gray);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 2px;

    margin-top: 8px;

}


.menu-items {

    max-width: 900px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    column-gap: 60px;

}


.menu-item {

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 20px;

    padding: 25px 0;

    border-bottom: 1px solid #d4c8b9;

}


.menu-item h4 {

    font-family: var(--serif);

    font-size: 24px;

    font-weight: 600;

    line-height: 1.2;

    margin-bottom: 7px;

}


.menu-item p {

    color: #777;

    font-size: 11px;

    line-height: 1.6;

}


.menu-item strong {

    color: var(--red);

    white-space: nowrap;

    font-family: var(--serif);

    font-size: 21px;

}



/* =========================================
   ZITAT
========================================= */

.quote-section {

    min-height: 500px;

    display: flex;

    justify-content: center;

    align-items: center;

    text-align: center;

    background:

        linear-gradient(
            rgba(18,43,33,0.82),
            rgba(18,43,33,0.88)
        ),

        url("bilder/pasta.jpg")
        center / cover no-repeat;

}


.quote-content {

    max-width: 800px;

    padding: 50px 20px;

    color: white;

}


.quote-mark {

    display: block;

    color: var(--gold);

    font-family: var(--serif);

    font-size: 100px;

    line-height: 0.5;

}


blockquote {

    font-family: var(--serif);

    font-size: clamp(35px, 5vw, 55px);

    line-height: 1.1;

    font-style: italic;

    margin: 30px 0;

}


.quote-content p {

    color: #d5b56e;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 3px;

}



/* =========================================
   GALERIE
========================================= */

.gallery {

    max-width: 1300px;

    margin: auto;

}


.gallery-grid {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    grid-template-rows: 250px 250px;

    gap: 12px;

}


.gallery-image {

    overflow: hidden;

}


.gallery-image.large {

    grid-row: span 2;

}


.gallery-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: 0.5s;

}


.gallery-image:hover img {

    transform: scale(1.06);

}



/* =========================================
   RESERVIERUNG
========================================= */

.reservation {

    background: var(--green);

    color: white;

    display: flex;

    justify-content: center;

}


.reservation-content {

    width: 100%;

    max-width: 900px;

    text-align: center;

}


.reservation-content > p:not(.section-label) {

    color: #d0d8d3;

    margin-bottom: 40px;

}


.reservation-content h2 span {

    color: #d5b56e;

}


form {

    text-align: left;

}


.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

}


.form-group {

    margin-bottom: 20px;

}


.form-group label {

    display: block;

    margin-bottom: 7px;

    color: #cbd5cf;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;

}


input,
select,
textarea {

    width: 100%;

    padding: 14px 15px;

    border: 1px solid rgba(255,255,255,0.2);

    background: rgba(255,255,255,0.08);

    color: white;

    font-family: var(--sans);

    outline: none;

}


select option {

    color: black;

}


input::placeholder,
textarea::placeholder {

    color: #9daaa2;

}


input:focus,
select:focus,
textarea:focus {

    border-color: var(--gold);

}


.reservation-alternatives {

    margin-top: 50px;

    padding-top: 35px;

    border-top: 1px solid rgba(255,255,255,0.15);

}


.alternative-title {

    color: #d5b56e !important;

    text-transform: uppercase;

    letter-spacing: 2px;

    font-size: 10px;

    margin-bottom: 20px !important;

}


.reservation-option {

    max-width: 600px;

    margin: 12px auto;

    padding: 18px 22px;

    display: flex;

    align-items: center;

    gap: 18px;

    text-align: left;

    background: rgba(255,255,255,0.07);

    border: 1px solid rgba(255,255,255,0.12);

    transition: 0.3s;

}


.reservation-option:hover {

    background: rgba(255,255,255,0.14);

    transform: translateY(-2px);

}


.option-icon {

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--red);

    border-radius: 50%;

    font-size: 20px;

}


.reservation-option strong {

    display: block;

    color: rgba(255,255,255,0.12);

    font-size: 12px;

}


.reservation-option small {

    display: block;

    margin-top: 3px;

    color: rgba(255,255,255,0.12);

    font-size: 10px;

}



/* =========================================
   KONTAKT
========================================= */

.contact {

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

}


.contact-details {

    margin-top: 40px;

}


.contact-item {

    display: flex;

    gap: 20px;

    margin-bottom: 30px;

}


.contact-icon {

    width: 45px;

    height: 45px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--green);

    color: white;

    border-radius: 50%;

}


.contact-item h3 {

    font-family: var(--serif);

    font-size: 22px;

}


.contact-item p {

    color: #777;

    font-size: 13px;

}


.contact-item a:hover {

    color: var(--red);

}


.opening-hours {

    background: #ebe1d3;

    padding: 55px;

}


.opening-hours h3 {

    font-family: var(--serif);

    font-size: 35px;

    margin-bottom: 30px;

}


.hours-row {

    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 16px 0;

    border-bottom: 1px solid #d2c5b4;

    font-size: 12px;

}


.hours-row span:last-child {

    color: var(--red);

    font-weight: 600;

}



/* =========================================
   FOOTER
========================================= */

.footer {

    background: #102a20;

    color: #b7c2bc;

    padding: 45px 8%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    font-size: 10px;

}


.footer-logo {

    color: white;

    display: flex;

    flex-direction: column;

    line-height: 1;

}


.footer-logo span {

    font-family: var(--serif);

    font-size: 22px;

    letter-spacing: 2px;

}


.footer-logo small {

    margin-top: 6px;

    color: var(--gold);

    font-size: 8px;

    text-transform: uppercase;

    letter-spacing: 3px;

}


.footer-links {

    display: flex;

    gap: 20px;

}


.footer-links a:hover {

    color: white;

}



/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {


    .nav-links,
    .nav-button {

        display: none;

    }


    .menu-toggle {

        display: block;

    }


    .nav-links.show {

        position: absolute;

        top: 80px;

        left: 5%;

        width: 90%;

        display: flex;

        flex-direction: column;

        gap: 0;

        background: var(--green);

        padding: 10px 0;

    }


    .nav-links.show a {

        display: block;

        padding: 15px 25px;

    }


    .about,
    .contact {

        grid-template-columns: 1fr;

        gap: 60px;

    }


    .menu-items {

        grid-template-columns: 1fr;

    }


    .gallery-grid {

        grid-template-columns: 1fr 1fr;

        grid-template-rows:
            250px
            200px
            200px;

    }


    .gallery-image.large {

        grid-column: span 2;

        grid-row: auto;

    }


    .footer {

        flex-direction: column;

        text-align: center;

    }

}



/* =========================================
   HANDY
========================================= */

@media (max-width: 600px) {


    .section {

        padding: 75px 6%;

    }


    .navbar {

        width: 88%;

    }


    .hero h1 {

        font-size: 60px;

    }


    .hero-buttons {

        flex-direction: column;

    }


    .hero-buttons .btn {

        width: 100%;

    }


    .form-row {

        grid-template-columns: 1fr;

        gap: 0;

    }


    .gallery-grid {

        display: grid;

        grid-template-columns: 1fr;

        grid-template-rows:
            repeat(4, 220px);

    }


    .gallery-image.large {

        grid-column: auto;

    }


    .gallery-image {

        grid-column: auto !important;

    }


    .opening-hours {

        padding: 35px 25px;

    }


    .hours-row {

        font-size: 11px;

    }

}