:root {
    --accent-color: #718174;
    accent-color: #718174;
}
body {
    margin: 0;
    font-family: "Source Sans Pro";
}
svg {
    width: 30px;
}
h2 {
    margin-top: 40px;
}
a {
    text-decoration: none;
    color: #2F2F2F;
}
button {
    background-color: var(--accent-color);
    color: white;
    cursor: pointer;
}
button:disabled,
button[disabled] {
  background-color: #cccccc;
  color: #666666;
}
.button-light {
    background-color: #eee;
    color: black;
}
.container {
    width: 900px;
    margin: auto;
    max-width: 90vw;
    text-align: center;
    padding-top: 10px;
    transition: 0.5s;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-right: 60px;
}
header .step-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 999px;
    background: var(--accent-color);
    color: #2F2F2F;
    font-weight: 600;
}
header .step-indicator .current {
    display: inline-block;
    min-width: 24px;
    text-align: center;
    padding: 2px 8px;
    border-radius: 999px;
    background: #2F2F2F;
    color: #fff;
}
header .step-indicator .sep {
    font-weight: 400;
    color: #fff;
}
header .step-indicator .total {
    font-weight: 700;
    color: #fff;
}

/* Category selector */
.category-selector {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
    padding: 0 20px;
}
.category-selector-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.category-selector h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2F2F2F;
    margin: 0;
}
.category-select-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}
.category-selector label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2F2F2F;
    font-size: 1.1rem;
}
.category-select {
    padding: 10px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    color: #2F2F2F;
    font-size: 1rem;
    font-family: "Source Sans Pro", sans-serif;
    cursor: pointer;
    min-width: 200px;
    transition: border-color 0.2s;
}
.category-select:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-control {
    display: flex;
    font-size: 1.3rem;
    padding: 14px 0;
    gap: 10px;
    width: 30%;
}
.form-control input[type="radio"] {
    cursor: pointer;
}

.form-control-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Order Summary */
.order-summary-section {
    margin-top: 40px;
    padding: 20px 0;
    width: 100%;
}

.order-summary-top {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.summary-item {
    font-size: 1rem;
    color: #2F2F2F;
    line-height: 1.6;
}

.summary-item strong {
    color: #555;
    margin-right: 8px;
}

.order-summary-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.summary-column {
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    padding: 20px;
}

.summary-column h3 {
    margin: 0 0 20px 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2F2F2F;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-color);
}

.summary-note {
    font-size: 1.2rem;
}

.info-line {
    margin-bottom: 12px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: #2F2F2F;
    line-height: 1.5;
}

.cart-item-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.95rem;
}

.cart-item-line:last-child {
    border-bottom: none;
}

.cart-item-line .item-name {
    flex: 1;
    font-weight: 500;
    color: #2F2F2F;
}

.cart-item-line .item-quantity {
    margin: 0 12px;
    color: #666;
    font-size: 0.9rem;
}

.cart-item-line .item-price {
    font-weight: 600;
    color: #2F2F2F;
    min-width: 70px;
    text-align: right;
}

@media only screen and (max-width: 767px) {
    .order-summary-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .order-summary-top {
        padding: 15px;
    }
    
    .summary-column {
        padding: 15px;
    }
}

/* Order form */
.order-form {
    max-width: 600px;
    margin: 32px auto;
    text-align: left;
}
.order-form .form-row {
    margin-bottom: 20px;
}
.order-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #2F2F2F;
}
.order-form .required-asterisk {
    color: #dc3545;
    font-weight: bold;
}
.order-form input[type="text"],
.order-form input[type="email"],
.order-form input[type="tel"],
.order-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: "Source Sans Pro", sans-serif;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.order-form input[type="text"]:focus,
.order-form input[type="email"]:focus,
.order-form input[type="tel"]:focus,
.order-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}
.order-form textarea {
    resize: vertical;
    min-height: 100px;
}
.order-form .required-note {
    margin-top: 24px;
    font-size: 0.875rem;
    color: #666;
    text-align: center;
}

/* Booking widget */
.booking-widget {
    max-width: 700px;
    margin: 32px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    text-align: left;
}
.date-picker-section,
.time-picker-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.date-picker-section label,
.time-picker-section label {
    font-weight: 500;
    color: #2F2F2F;
    font-size: 1rem;
}
#bookingDate {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: "Source Sans Pro", sans-serif;
    transition: border-color 0.2s;
    cursor: pointer;
}
#bookingDate:focus {
    outline: none;
    border-color: var(--accent-color);
}
.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-height: 300px;
    overflow-y: auto;
    padding: 4px;
}
.time-slot {
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: #fff;
    color: #2F2F2F;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}
.time-slot:hover:not(.disabled) {
    border-color: var(--accent-color);
    background: #f9f9f9;
}
.time-slot.selected {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
}
.time-slot.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f5f5f5;
}
.time-slots-grid::-webkit-scrollbar {
    width: 6px;
}
.time-slots-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}
.time-slots-grid::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}
.time-slots-grid::-webkit-scrollbar-thumb:hover {
    background: #555;
}
@media only screen and (max-width: 767px) {
    .booking-widget {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.wizard-control {
    margin: 80px auto 0;
    text-align: center;
}
.wizard-control button {
    border:1px solid #ccc;
    border-radius:8px;
    display:inline-block;
    font-size: 1rem;
    margin-right: 80px;
    padding:12px 18px;
    text-decoration:none;
    width: 146px;
}

.icon-cart {
    position: relative;
}
.icon-cart span {
    position: absolute;
    background-color: red;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    top: 50%;
    right: -20px;
}
.title {
    font-size: xx-large;
    height: 142px;
}

.cartTab {
    width: 400px;
    max-width: 100%;
    background-color: #353432;
    color: #eee;
    position: fixed;
    top: 0;
    right: 0px;
    bottom: 0;
    display: grid;
    grid-template-rows: 70px 1fr 70px;
}
.cartTab h1 {
    padding: 20px;
    margin: 0;
    font-weight: 300;
}
.cartTab .btn {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.cartTab button {
    border: none;
    font-weight: 500;
    font-size: 1rem;
}
.listCart {
    overflow: auto;
    padding: 8px 2px 0 10px;
}
.listCart::-webkit-scrollbar {
    width: 0;
}
/*  */
.cartTab {
    right: -400px;
    transition: 0.5s;
}
body.activeTabCart .cartTab {
    right: 0;
}
body.activeTabCart .container {
    transform: translateX(-250px);
}
/*  */

.minimum-order-equivalent {
    font-size: 1.1rem;
}

.full-pizza-discount-message {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2F2F2F;
    display: none; /* Hidden by default, shown via JavaScript when Pizza category is selected */
}

.product-image-link {
    display: block;
}

.product-image-frame {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    margin: 0 auto 16px;
    box-shadow: 0 32px 40px rgba(0, 0, 0, 0.18);
    background-color: #fff;
}

.product-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.product-image-link:hover .product-card-image {
    transform: scale(1.05);
}
.listProduct {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-top: 40px;
}
.listProduct .item {
    background-color: #EEEEE6;
    padding: 20px;
    border-radius: 20px;
}
.listProduct .item h2 {
    font-weight: 500;
    font-size: large;
}
.listProduct .item .price {
    letter-spacing: 2px;
    font-size: x-large;
}
.listProduct .item button {
    background-color: #353432;
    color: #eee;
    border: none;
    padding: 8px 14px;
    margin-top: 10px;
    border-radius: 8px;
}
/*  */

.listCart .item img,
.listCart .productInCart .image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.listCart .productInCart .image {
    width: 70px;
    height: 70px;
    overflow: hidden;
    padding-top: 12px;
}
.listCart .item,
.listCart .productInCart {
    display: grid;
    grid-template-columns: 70px 150px 50px 1fr;
    gap: 10px;
    text-align: center;
    align-items: center;
}
.listCart .quantity span {
    display: inline-block;
    width: 25px;
    height: 25px;
    background-color: #eee;
    border-radius: 50%;
    color: #555;
    cursor: pointer;
}
.listCart .quantity span:nth-child(2) {
    background-color: transparent;
    color: #eee;
    cursor: auto;
}
.listCart .quantity {
    display: flex;
}
.listCart .item:nth-child(even) {
    background-color: #eee1;
}
/*  */

/* detail page */

.detail {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    text-align: left;
    margin-top: 32px;
}
.detail .image img {
    max-height: 440px;
    max-width: 500px;
}
.detail .image {
    position: relative;
}
/*
.detail .image::before {
    position: absolute;
    width: 300px;
    height: 300px;
    content: '';
    background-color: #94817733;
    z-index: -1;
    border-radius: 190px 100px 170px 180px;
    left: calc(50% - 150px);
    top: 50px;

}*/
.detail .name {
    font-size: xxx-large;
    padding: 40px 0 0 0;
    margin: 0 0 10px 0;
}
.detail .price {
    font-weight: bold;
    font-size: x-large;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.detail .buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.detail .buttons button {
    border: none;
    padding: 15px 20px;
    border-radius: 20px;
    font-size: large;
}
.detail .buttons svg {
    width: 15px;
}
.detail .buttons span {
    background-color: #555454;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-left: 20px;
}
.detail .buttons button:nth-child(2) {
    background-color: #2F2F2F;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #eee;
    box-shadow: 0 10px 20px #2F2F2F77;
}
.detail .description {
    font-weight: 300;
}

/* Footer */
.site-footer {
    background: transparent;
    color: inherit;
    margin: 90px auto;
    text-align: center;
    border-top: 1px solid #ddd;
}

/* White footer text for landing page only */
body.landing-page .site-footer {
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 1200px;
    width: 100%;
    margin: 90px auto 0;
    padding: 0 20px;
    box-sizing: border-box;
}
.site-footer .container {
    padding: 16px 0;
}
.site-footer .footer-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: center;
}
.site-footer .footer-inner > div:not(:last-child)::after {
    content: ' · ';
    opacity: 0.8;
    margin: 0 4px;
}
.site-footer a {
    color: inherit;
    text-decoration: underline;
}

/*  */

@media only screen and (max-width: 992px)  {
    .form-control {
        width: 50%;
    }
    .listProduct {
        grid-template-columns: repeat(3, 1fr);
    }
    .detail {
        grid-template-columns:  40% 1fr;
    }
}


/* mobile */
@media only screen and (max-width: 767px)  {
    .title img  {
        max-height: 98px;
    }
    header {
        padding-right: 0px;
    }
    .wizard-control button {
        margin-right: 30px;
    }
    .detail {
        text-align: center;
        grid-template-columns: 1fr;
    }
    .detail .image img {
        width: unset;
        height: 40vh;
    } 
    .detail .name {
        font-size: x-large;
        margin: 0;

    }
    .detail .buttons button {
        font-size: small;
    }
    .detail .buttons {
        justify-content: center;
    }
    .icon-cart {
        position: absolute;
        top: 120px;
        left: 50%;
    }
}

/* Landing page styles */
body.landing-page {
    background-color: #ffffff;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* Landing Header */
.landing-header {
    background-color: var(--accent-color);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px 12px 20px;
    box-sizing: border-box;
    border-bottom: 1px solid #e0e0e0;
}

.landing-header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 100%;
    position: relative;
}

.landing-sign {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.landing-logo {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    flex-shrink: 0;
}

.landing-sign-image {
    height: 128px;
    width: auto;
    display: block;
}

.landing-logo-image {
    height: 136px;
    width: auto;
    display: block;
}

.logo-placeholder {
    width: 200px;
    height: 80px;
    background-color: #f5f5f5;
    border: 2px dashed #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
    font-weight: 500;
}

.landing-tagline {
    color: #2F2F2F;
    font-size: 1.1rem;
    text-align: center;
    margin: 0;
    line-height: 1.6;
    max-width: 800px;
}

.landing-header-cta {
    background-color: white;
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 16px 44px;
    border-radius: 8px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(113, 129, 116, 0.3);
    white-space: nowrap;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.landing-header-cta:hover {
    background-color: #ffffff;
    color: #333;
    transform: translateY(calc(-50% - 2px));
    box-shadow: 0 6px 16px rgba(113, 129, 116, 0.34);
}

/* Landing Main Content */
.landing-main {
    flex: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    box-sizing: border-box;
}

/* Hero Section */
.landing-hero {
    text-align: center;
    margin-bottom: 40px;
}

.hero-content {
    max-width: 780px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2F2F2F;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.hero-highlight, .gallery-highlight {
    font-size: 1.12rem;
    color: #2F2F2F;
    margin: 0 0 30px 0;
    font-weight: 600;
    line-height: 1.6;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 0 0 40px 0;
    background-image: url("../images/landing/counter-view.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 28px 24px;
    min-height: 340px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    align-content: center;
    border-radius: 16px;
}

.hero-badge {
    background-color: rgba(255, 255, 255, 0.85);
    color: #2F2F2F;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.hero-badge-italic {
    font-style: italic;
}

.landing-announcement {
    margin-top: 60px;
    text-align: center;
}

.landing-announcement p {
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.2em;
    color: #444;
    line-height: 1.6;
    padding: 24px 30px;
    background: #f7f7f7;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}

.landing-location {
    text-align: center;
    margin-top: 60px;
}

.landing-location-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
    max-width: 1200px;
    margin: 24px auto 0;
    padding: 0 20px;
}

.landing-map {
    flex: 1;
    min-width: 0;
    height: 360px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid #e5e5e5;
}

.landing-opening-hours {
    flex: 0 0 180px;
    text-align: left;
    background-color: #f9f9f9;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.landing-opening-hours h3 {
    margin: 0 0 12px 0;
    font-size: 1.5em;
    color: var(--accent-color);
    font-weight: 600;
}

.opening-hours-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.opening-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid #e5e5e5;
}

.opening-hours-item:last-child {
    border-bottom: none;
}

.opening-hours-item .day {
    font-weight: 600;
    color: #333;
    font-size: 1em;
}

.opening-hours-item .hours {
    color: #666;
    font-size: 1em;
}

.hero-cta-button {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 16px 48px;
    font-size: 1.2em;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 12px rgba(113, 129, 116, 0.3);
}

.hero-cta-button:hover {
    background-color: #5a6b5c;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(113, 129, 116, 0.4);
}

.pulse-marker-icon {
    width: 24px;
    height: 24px;
    background: rgba(113, 129, 116, 0.95);
    border-radius: 50%;
    position: relative;
    display: block;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 rgba(113, 129, 116, 0.4);
    animation: pulse-ring 2s ease-out infinite;
}

.pulse-marker-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(113, 129, 116, 0.35);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(113, 129, 116, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(113, 129, 116, 0);
    }
}

/* Gallery Section */
.landing-gallery {
    text-align: center;
}

.gallery-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2F2F2F;
    text-align: center;
    margin-bottom: 16px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.gallery-item {
    text-align: center;
    background: #f9f9f9;
    border-radius: 12px;
    padding: 30px 20px;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.image-placeholder {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.gallery-image {
    width: 90%;
    height: 90%;
    object-fit: contain;
    display: block;
}
.gallery-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2F2F2F;
    margin: 0 0 10px 0;
}

.gallery-item p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Footer for landing page */
body.landing-page .site-footer {
    color: #2F2F2F;
    border-top: 1px solid #e0e0e0;
    max-width: 1200px;
    width: 100%;
    margin: 60px auto 0;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Responsive styles for landing page */
@media only screen and (max-width: 992px) {
    .landing-main {
        padding: 40px 20px;
    }
    
    .landing-location-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .landing-map {
        width: 100%;
        height: 320px;
    }
    
    .landing-opening-hours {
        flex: 1;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .landing-sign-image {
        height: 96px;
    }

    .landing-logo-image {
        height: 120px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .gallery-title {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .landing-header {
        padding: 16px 20px;
    }

    .landing-header-content {
        flex-direction: column;
        justify-content: center;
        width: 100%;
        gap: 16px;
    }

    .landing-sign {
        position: static;
        transform: none;
        justify-content: center;
    }

    .landing-sign-image {
        height: 72px;
    }

    .landing-logo {
        margin: 0;
    }

    .landing-logo-image {
        height: 96px;
    }

    .landing-location-content {
        gap: 24px;
    }
    
    .landing-map {
        height: 260px;
        margin: 0;
    }
    
    .landing-opening-hours {
        padding: 24px;
    }
    
    .landing-opening-hours h3 {
        font-size: 1.3em;
        margin-bottom: 20px;
    }

    .landing-header-cta {
        position: static;
        transform: none;
        width: 100%;
        text-align: center;
    }
    
    .landing-header-cta:hover {
        transform: translateY(-1px);
    }
    
    .logo-placeholder {
        width: 150px;
        height: 60px;
        font-size: 0.8rem;
    }
    
    .landing-tagline {
        font-size: 1rem;
    }
    
    .landing-main {
        padding: 30px 20px;
    }
    
    .landing-hero {
        margin-bottom: 50px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-highlight, .gallery-highlight {
        font-size: 1rem;
    }
    
    .hero-cta-button {
        padding: 14px 36px;
        font-size: 1rem;
    }
    
    .landing-gallery {
        margin-top: 50px;
    }
    
    .gallery-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .image-placeholder {
        height: 180px;
    }
}
#form .form-group {
    display: flex;
    margin: 20px 0;
}
.form-group input.form-control {
    width: 250px;
    height: 50px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    padding-left: 20px;
    border: none;
    background: #f5f5f5;
  }
  .form-group button.submit-button {
    padding: 18px 30px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    background-color: #ff8c00;
    border: none;
    cursor: pointer;
    color: #fff;
  }
  a, button {
    transition: 0.3s all ease-out;
  }
  .form-group button.submit-button span {
    font-weight: 700;
    padding-left: 5px;
  }
  .form-group button.submit-button {
    cursor: pointer;
    color: #fff;
  }