*{
    font-family: "Inter", sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    background-color: var(--main-bg);
}

:root{
    --main-bg: #010101;
    --accent-color: #BF8730;
    --heading-color: #ffdcb0;
    --text-color: rgba(255, 255, 255, 0.6);
    --heading-secondary: rgba(255, 255, 255, 0.88);
    --text-secondary: #828282;
    --light-color: #E6E6E6;
    --menu-bg: #1D1E1C;
    --heading-font: 'Bebas Neue', sans-serif;
}


/* html{
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}
section, nav, footer {
    scroll-snap-align: start;
} */

a {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
}

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

nav {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 1rem 2rem;
}

.gallery{
    display: flex;
    align-items: center;
    justify-self: center;
    margin: auto;
    width: 96%;
    margin-top: 1rem;
}

.gallery img{
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.current{
    color: var(--accent-color);
}

.menu-container{
  width: 80vw;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 15rem;
}

.menu-page {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 50px;
    border-radius: 8px;
    box-shadow: 0 0 20px var(--accent-color);

}

/* Kontakt Page – styl spójny z offer-section */
.contact-section {
  color: var(--light-color);
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
}

.contact-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-title {
  text-align: center;
  font-size: 48px;
  color: var(--heading-color);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-intro {
  text-align: center;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--light-color);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.contact-form,
.contact-info {
  padding: 30px;
  border: 1px solid var(--text-color);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-form:hover,
.contact-info:hover {
  border: 1px solid var(--accent-color);
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--heading-color);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: none;
  border-radius: 6px;
  background-color: #2a2a2a;
  color: #fff;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--accent-color);
}

.contact-info{
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.contact-info h2 {
  color: var(--heading-color);
  margin-bottom: 20px;
  font-size: 2rem;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  font-size: 1.2rem;
}

.contact-info li {
  margin-bottom: 10px;
  color: var(--light-color);
}

.contact-info a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-info a:hover {
  text-decoration: underline;
}

.map-box h3 {
  margin-bottom: 10px;
  color: var(--heading-color);
  font-size: 18px;
}

.cta-para {
  text-align: center;
  margin-top: 40px;
  font-size: 1rem;
}

.map-box {
    margin-top: 30px;
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.map-box h3{
  font-size: 1.2rem;
}


.btn-gold {
  background-color: var(--accent-color);
  color: #000;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-gold:hover {
  background-color: #000;
  color: var(--accent-color);
  scale: 1.03;
  border-radius: 10px;
  box-shadow: 0 0 15px var(--accent-color);
}

/* Responsywność */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}


#status{
  transition: all 0.3s ease;
}

*{
    font-family: "Inter", sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    background-color: var(--main-bg);
}

:root{
    --main-bg: #010101;
    --accent-color: #BF8730;
    --heading-color: #ffdcb0;
    --text-color: rgba(255, 255, 255, 0.6);
    --heading-secondary: rgba(255, 255, 255, 0.88);
    --text-secondary: #828282;
    --light-color: #E6E6E6;
    --menu-bg: #1D1E1C;
    --heading-font: 'Bebas Neue', sans-serif;
}

/* html{
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}
section, nav, footer {
    scroll-snap-align: start;
} */

a {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
}

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

nav {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 1rem 2rem;
}

.gallery{
    display: flex;
    align-items: center;
    justify-self: center;
    margin: auto;
    width: 96%;
    margin-top: 1rem;
}

.gallery img{
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.current{
    color: var(--accent-color);
}

.menu-container{
  width: 80vw;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 15rem;
}

.menu-page {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 50px;
    border-radius: 8px;
    box-shadow: 0 0 20px var(--accent-color);
}

.left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.left a {
    color: #fff;
    transition: all 0.3s ease;
}

.left a:hover {
    color: var(--accent-color);
}

.right {
    display: flex;
    align-items: center;
    align-self: center;
    gap: 2rem;
}

.right a {
    color: #fff;
    transition: color 0.3s ease;
}

.right a:hover {
    color: var(--accent-color);
}

.right button{
    background-color: var(--light-color);
    color: #000;
    border: none;
    padding: 0.7rem 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.05rem;
    transition: all 0.5s ease;
}

.right button:hover {
    background-color: var(--accent-color);
    color: #fff;
    scale: 1.05;
}

.logo{
    width: 120px;
    height: 120px;
}

.logo img {
    width: auto;
    max-height: 100%;
    transition: all 0.3s ease;
}

.logo img:hover {
    scale: 1.05;
}

.logo img {
    transition: all 0.3s ease forwards;
}

/* .logo img:hover {
    transform: rotate(360deg);
    box-shadow: 0 0 10px var(--accent-color);
} */

.hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    height: 100vh;
    gap: 1rem;
}

.hero-content{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 45%;
    margin-left: 50px;
}

.hero-content h1 {
    font-size: 3.3rem;
    font-weight: 800;
    color: var(--heading-color);
}

.hero-image {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 90vh;
    padding: 2%;
}

.hero-image img {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    transition: all 0.5s ease;
}

.hero-image img:hover {
    transform: scale(1.01);
    box-shadow: 0 0 10px var(--accent-color);
}

.hero-content p {
    color: var(--text-color)
}

.hero-content p span {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.hero-content button{
    background-color: var(--accent-color);
    color: #000;
    border: none;
    padding: 0.7rem 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.05rem;
    transition: all 0.5s ease;
    width: 25%;
    height: 50px;
    font-weight: 600;
}

.hero-content button:hover {
    background-color: #000;
    color: var(--accent-color);
    scale: 1.08;
    box-shadow: 0 0 10px var(--accent-color);
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablet Styles (768px and below) */
@media (max-width: 768px) {
    body {
        margin: 15px;
    }

    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        text-align: center;
    }
    
    .left {
        gap: 1rem;
        justify-content: center;
    }
    
    .right {
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .logo {
        width: 80px;
        height: 80px;
    }
    
    .hero {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        padding: 2rem 1rem;
        justify-content: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin-left: 0;
        text-align: center;
        order: 2;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content button {
        width: 50%;
        align-self: center;
    }
    
    .hero-image {
        width: 100%;
        max-height: 50vh;
        order: 1;
        margin-bottom: 2rem;
    }
    
    .hero-image img {
        max-height: 50vh;
    }
    
    .menu-container {
        width: 95vw;
        padding: 0 1rem;
    }
    
    .menu-page {
        margin-bottom: 30px;
    }
    
    .gallery {
        width: 100%;
        margin-top: 2rem;
    }
    
    /* Banner responsive styles */
    .banner-container {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .banner {
        width: 90%;
        height: 250px;
    }
    
    /* Footer responsive styles */
    footer {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .repository {
        margin-left: 0;
    }
    
    /* About section responsive styles */
    .about-content {
        margin-left: 0;
        padding: 0 1rem;
    }
    
    .about-content p {
        width: 95%;
    }
    
    .about h2 {
        font-size: 1.8rem;
        padding-left: 0;
        text-align: center;
    }
    
    .cards-container {
        flex-direction: column;
        align-items: center;
    }
    
    .card {
        width: 90%;
        height: 450px;
        gap: 2rem;
    }
    
    .card p {
        width: 90%;
    }
    
    /* Offer section responsive styles */
    .offer {
        flex-direction: column;
        margin-top: 40px;
        gap: 2rem;
    }
    
    .offer-content {
        max-width: 90%;
        margin-left: 0;
        padding: 0 1rem;
    }
    
    .offer-content h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .offer-image {
        margin-right: 0;
        justify-content: center;
        max-height: 400px;
    }
    
    .offer-image img {
        max-height: 400px;
        width: 90%;
    }
    
    .offer-content ul {
        gap: 2rem;
    }
    
    .offer-content .buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Reservation section responsive styles */
    .reservation {
        flex-direction: column;
        gap: 2rem;
        margin-left: 0;
        padding: 0 1rem;
    }
    
    .reservation-heading {
        font-size: 2.2rem;
        margin-left: 0;
    }
    
    .reservation-content {
        align-items: center;
        text-align: center;
    }
    
    .reservation-button {
        width: 70%;
        align-self: center;
    }
}

/* Mobile Styles (480px and below) */
@media (max-width: 480px) {
    nav {
        padding: 0.5rem;
    }
    
    .left {
        gap: 0.5rem;
        font-size: 0.9rem;
    }
    
    .right {
        gap: 0.5rem;
        font-size: 0.9rem;
    }
    
    .right button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .logo {
        width: 60px;
        height: 60px;
    }
    
    .hero {
        padding: 1rem 0.5rem;
    }
    
    .hero-content {
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .hero-content p span {
        font-size: 1rem;
    }
    
    .hero-content button {
        width: 70%;
        font-size: 1rem;
        padding: 0.8rem 1rem;
    }
    
    .hero-image {
        max-height: 40vh;
        padding: 1%;
    }
    
    .hero-image img {
        max-height: 40vh;
    }
    
    .menu-container {
        width: 100%;
        padding: 0 0.5rem;
    }
    
    .menu-page {
        margin-bottom: 20px;
    }
    
    .gallery {
        margin-top: 1rem;
    }
    
    /* Banner mobile styles */
    .banner-container {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .banner {
        width: 95%;
        height: 220px;
    }
    
    /* Footer mobile styles */
    footer {
        padding: 0.5rem;
        gap: 1rem;
    }
    
    footer .logo {
        width: 60px;
        height: 60px;
    }
    
    .footer-content {
        gap: 1rem;
    }
    
    .social-media {
        gap: 0.5rem;
    }
    
    /* About section mobile styles */
    .about-content p {
        width: 100%;
        font-size: 0.9rem;
    }
    
    .about h2 {
        font-size: 1.6rem;
    }
    
    .card {
        width: 95%;
        height: 400px;
        gap: 1.5rem;
    }
    
    .card p {
        width: 95%;
        font-size: 0.9rem;
    }
    
    /* Offer section mobile styles */
    .offer {
        margin-top: 20px;
    }
    
    .offer-content {
        max-width: 95%;
        gap: 1rem;
    }
    
    .offer-content h2 {
        font-size: 1.6rem;
    }
    
    .offer-image {
        max-height: 300px;
    }
    
    .offer-image img {
        max-height: 300px;
    }
    
    .offer-content ul {
        gap: 1.5rem;
    }
    
    .offer-content ul li h4 {
        font-size: 1rem;
    }
    
    .offer-content .buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .offer-content .buttons button {
        width: 80%;
        font-size: 1rem;
    }
    
    /* Reservation section mobile styles */
    .reservation {
        gap: 1rem;
        margin-top: 20px;
    }
    
    .reservation-heading {
        font-size: 1.8rem;
    }
    
    .reservation-content h3 {
        font-size: 1.2rem;
    }
    
    .reservation-content ol li {
        font-size: 0.85rem;
    }
    
    .reservation-button {
        width: 85%;
        font-size: 1rem;
        height: 3rem;
    }
}

/* Very Small Mobile Styles (320px and below) */
@media (max-width: 320px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content button {
        width: 85%;
        font-size: 0.9rem;
    }
    
    .left, .right {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .right button {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    /* Very small mobile styles for new elements */
    .banner {
        width: 100%;
        height: 200px;
    }
    
    .about h2 {
        font-size: 1.4rem;
    }
    
    .card {
        height: 350px;
    }
    
    .offer-content h2 {
        font-size: 1.4rem;
    }
    
    .offer-content .buttons button {
        width: 90%;
        font-size: 0.9rem;
    }
    
    .reservation-heading {
        font-size: 1.6rem;
    }
    
    .reservation-button {
        width: 95%;
        font-size: 0.9rem;
    }
}

/* Landscape phone orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        flex-direction: row;
        height: 100vh;
        padding: 1rem;
    }
    
    .hero-content {
        max-width: 50%;
        margin-left: 1rem;
        text-align: left;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-image {
        width: 50%;
        max-height: 80vh;
    }
    
    .hero-image img {
        max-height: 80vh;
    }
}

.banner-container{
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.banner{
    width: 300px;
    height: 330px;
}

.banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.banner img:hover{
    transform: scale(1.01);
    box-shadow: 0 0 5px var(--accent-color);
}

footer{
    display: flex;
    gap: 3rem;
    align-items: center;
    width: 100%;
    padding: 2%;
    padding-bottom: 0;
    margin-top: 2%;
}

footer .logo{
    width: 100px;
    height: 100px;
}

footer .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.footer-content{
    display: flex;
    gap: 3rem;
}

.social-media{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-self: end;
}

a{
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

a:hover{
    color: var(--light-color);
}

.repository{
    margin-left:auto
}

.about{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 50px;
}

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

.about-content p{
    margin-top: 1rem;
    color: var(--text-secondary);
    padding: 10px;
    width: 80%;
}

.cards-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0;
    width: 100%;
}

.card{
    width: 500px;
    height: 550px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    transition: all 0.3s ease;
}

.card p{
    color: var(--text-secondary);
    font-size: 1rem;
    text-align: center;
    width: 70%;
    transition: color 0.5s ease;
}

.card:hover p {
    color: rgba(230, 230, 230, 0.8);
}

.card img{
    width: auto;
    height:70%;
    object-fit: cover;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.about h2{
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--heading-color);
    padding-left: 1%;
}

.offer{
    display:flex;
    flex-direction: row;   
    width: 100%;
    margin-top: 80px;
    justify-content: space-evenly;
}

.offer-content{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 40%;
    margin-left: 50px;
}

.offer-content h2{
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--heading-color);
}

.offer-image{
    width: auto;
    display: flex;
    justify-content: flex-end;
    max-height: 700px;
    margin-right: 50px;
}

.offer-image img{
    max-height: 700px;
    min-width: none;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.offer-content ul{
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.offer-content ul li h4{
    font-size: 1.1rem;
    font-weight: 500;
    color: #fdcd92;
    margin-bottom: 10px;
}

.offer-content .buttons{
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 10px;
}

.offer-content .buttons button {
    border: none;
    padding: 0.7rem 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.05rem;
    transition: all 0.5s ease;
}

.menu-button:hover {
    background-color: #000;
    color: var(--accent-color);
    scale: 1.05;
    box-shadow: 0 0 10px var(--accent-color);
}

.menu-button {
    background-color: #492e03;
    color: #ffffff;
    border: none;
    padding: 0.7rem 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.05rem;
    transition: all 0.5s ease;
}

.ontap-button{
    background-color: var(--light-color);
    font-size: 1.1rem;
}

.ontap-button:hover {
    background-color: var(--accent-color);
    color: #000;
    scale: 1.05;
    box-shadow: 0 0 10px var(--accent-color);
}

.reservation{
    display: flex;
    flex-direction: row;
    gap: 12rem;
    margin-top: 50px;
    margin-left: 35px;
    justify-content: center;
}

.reservation-heading{
    font-size: 2.7rem;
    font-weight: 800;
    color: var(--heading-color);
    margin-top: 2rem;
    margin-left: 35px;
    text-align: center;
}

.reservation-content{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: space-between;
}

.reservation-content ol{
    list-style: decimal;
}

.reservation-content h3{
    font-size: 1.45rem;
    font-weight: 600;
    color: #eeba7b;
    margin-bottom: -10px;
}

.reservation-content ol li{
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--light-color);
    list-style: decimal;
    padding: 2px;
    margin-left: 13px;
}

.reservation-button{
    background-color: var(--accent-color);
    color: #000;
    border: none;
    padding: 0.7rem 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.5s ease;
    width: 15rem;
    height: 3.5rem;
    font-weight: 700;   
    align-self: flex-start;
    font-size: 1.05rem;
}

.reservation-button:hover {
    background-color: #000;
    color: var(--accent-color);
    scale: 1.05;
    box-shadow: 0 0 10px var(--accent-color);
}

.reservation a{
    display: flex;
    justify-content: start;
    align-self: center;
}


/* Sekcja Oferta – styl */
.offer-section {
  color: #f2f2f2;
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
}

.offer-section .container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 48px;
  color: var(--heading-color);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.intro {
  font-size: 18px;
  max-width: 800px;
  color: var(--light-color);
  margin: 0 auto 40px;
}

.spaces {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.space-box {
  border: 1px solid var(--text-color);
  padding: 20px;
  border-radius: 12px;
  transition: transform 0.3s;
}
.space-box:hover {
  transform: translateY(-5px);
}

.space-box h3 {
  color: var(--accent-color);
  margin-bottom: 10px;
}

.offer-list {
  list-style: none;
  padding: 0;
  margin-bottom: 50px;
  font-size: 18px;
}

.offer-list li {
  margin-bottom: 10px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}

.stat-box {
  text-align: center;
}

.stat-box strong {
  font-size: 40px;
  color: var(--accent-color);
  display: block;
}

.stat-box span {
  font-size: 16px;
}

.cta h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.cta-button {
    background-color: var(--accent-color);
    color: #000;
    border: none;
    padding: 0.7rem 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.05rem;
    transition: all 0.5s ease;
    width: 100%;
    height: 70px;
    font-weight: 600;
    margin-top: 60px;
}

.cta-button:hover {
    background-color: #000;
    color: var(--accent-color);
    scale: 1.05;
    border-radius: 10px;
    box-shadow: 0 0 20px var(--accent-color);
}

.intro.small{
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .cards-container {
    flex-direction: row;
    overflow-x: auto;
    gap: 1rem;
    width: 100vw;
    /* padding: 0 0.5rem 1rem 0.5rem; Add bottom padding for scroll bar */
    scroll-snap-type: x mandatory;
    box-sizing: border-box;
  }
  .card {
    min-width: 80vw;
    max-width: 90vw;
    width: 90vw;
    height: 350px;
    gap: 1rem;
    scroll-snap-align: center;
    flex-shrink: 0; /* Prevent shrinking */
  }
}
@media (max-width: 480px) {
  .cards-container {
    gap: 0.5rem;
    padding: 0 0.2rem 1rem 0.2rem;
  }
  .card {
    min-width: 90vw;
    max-width: 95vw;
    width: 95vw;
    height: 300px;
    flex-shrink: 0;
  }
}

/* --- OFFER: Stack image below content, fix buttons --- */
@media (max-width: 900px) {
  .offer {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .offer-content {
    max-width: 100%;
    margin-left: 0;
    padding: 0 1rem;
    order: 1;
  }
  .offer-image {
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
    justify-content: center;
    order: 2;
    max-height: 300px;
    display: flex;
    align-items: center;
  }
  .offer-image img {
    width: 90vw;
    max-width: 400px;
    max-height: 250px;
    object-fit: cover;
    margin: 0 auto;
    border-radius: 8px;
  }
  .offer-content .buttons {
    flex-direction: column;
    gap: 0.7rem;
    align-items: stretch;
  }
  .offer-content .buttons button,
  .offer-content .buttons a {
    width: 100%;
    min-width: 0;
    font-size: 1rem;
  }
}

/* --- RESERVATION: Fix overflow and stacking --- */
@media (max-width: 900px) {
  .reservation {
    flex-direction: column;
    gap: 1.5rem;
    margin-left: 0;
    padding: 0 1rem;
    align-items: center;
    width: 100vw;
    box-sizing: border-box;
  }
  .reservation-content {
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .reservation-button {
    width: 90vw;
    max-width: 350px;
    align-self: center;
    font-size: 1.1rem;
    height: 3rem;
  }
}

/* --- Hide horizontal overflow on body for mobile --- */
@media (max-width: 900px) {
  body {
    overflow-x: hidden;
  }
}
