@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Quicksand:wght@300..700&display=swap');

/*overall CSS*/
body {
    overflow-x: hidden;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    padding: 1vw;
    position: sticky;
}

main {
    padding: 4vw;
}

a {
    text-decoration: none;
    font-family: "Quicksand", sans-serif;
    font-size: 3vh;
    color: #000;
}

p {
    font-family: "Quicksand", sans-serif;
}

.navRight {
    display: flex;
    max-width: 50vw;
    gap: 50px;
}

.footer {
    background-color: #fff;
    border-top: 2px solid #ccc;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align items at the top */
    font-size: 14px;
}
.opening-times {
    flex: 1;
    margin-right: 20px; /* Add margin for separation */
}

h1 {
    font-family: "DM Serif Display", serif;
    font-style: italic;
}

h2 {
    font-family: "DM Serif Display", serif;
    font-size: 5vh;
    text-align: center;
    margin: 7.5vh 0;
}

h3 {
    font-family: "DM Serif Display", serif;
    font-size: 3.5vh;
    margin: 3vh 0;
}

/*Home css*/
header {
    display: flex;
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.headerLeft, .headerRight {
    flex: 1;
    max-width: 50vw;
}

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

.Naru {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.01);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.Naru h1 {
    color: #fff;
    text-align: center;
    font-size: 7.5vh;
}

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

.mainGallery {
    max-width: 80%;
    display: flex;
    flex-direction: row;
    position: relative;
    align-items: center;
    justify-content: center;
}

#mainImage {
    max-width: 50%;
    max-height: 25%;
    border-radius: 20px;
}

.thumbnails {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-top: 45px;
}

.thumbnail {
    width: 150px;
    height: 150px;
    cursor: pointer;
    border-radius: 10px;
    transition: transform 0.2s;
}

.thumbnail:hover {
    transform: scale(1.1);
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    color: rgba(0, 0, 0, 0.25);
    border: none;
    font-size: 3rem;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}



/*Cafe css*/
.cafe {
    height: 100vh;
    width: 100vw;
    background-image: url(images/coffee\'s\ header.png);
    background-size: cover;
}

.cafeText {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-75%, -50%);
    background-color: rgba(0, 0, 0, 0.01);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    width: 20%;
    height: auto;
}

.cafeText p {
    color: #fff;
    text-align: center;
    font-size: 3vh;
}

.menu-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.menu-carousel {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 45px;
}

.menu-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
    flex-shrink: 0;
}

.itemName {
    font-weight: bold;
}

.menu-card img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
    border-radius: 5px;
}

.menu-card p {
    margin: 10px 0;
    font-size: 16px;
    color: #333;
}

.menu-card select {
    margin: 10px 0;
    padding: 5px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.menu-card .price {
    font-family: "Quicksand", sans-serif;
    margin-top: 10px;
    background: #CCE0EE;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 16px;
    color: #000;
    font-weight: 400;
}

/* Size container and labels */
.size-container {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

.size-label {
    font-family: "Quicksand", sans-serif;
    padding: 5px 10px;
    cursor: pointer;
    transition: all 0.3s;
    user-select: none;
}

.size-radio {
    display: none;
}

.size-label.selected,
.size-radio:checked + .size-label {
    border-bottom: 2px solid #CCE0EE;
    background-color: #fff;
}

.price {
    margin-top: 10px;
    background: #CCE0EE;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 16px;
    color: #000;
    font-weight: bold;
}

.nav-button {
    background-color: transparent;
    color: rgba(0, 0, 0, 0.25);
    border: none;
    font-size: 3rem;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
}

/*reservation form*/
.reservation {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.reservation-container {
    display: flex;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    width: 80%;
    max-width: 900px;
}

.reservation-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.reservation-form {
    padding: 20px;
    background-color: #fff;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reservation-form form {
    display: flex;
    flex-direction: column;
    width: 400px;
}

.reservation-form label {
    margin-top: 10px;
    font-family: "quicksand", sans-serif;
}

.reservation-form input {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    font-family: "quicksand", sans-serif;
}

.reservation-form button {
    background-color: #CCE0EE;
    color: black;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.reservation-form button:hover {
    background-color: #add3ed;
}


/*Bar css*/
.barPage {
    background-color: #3D3D3D;
    color: white;
}

 .barNav {
    background-color: #3D3D3D;
    color: white;
}

.barNav a {
    color: white;
}

.barPage footer {
    background-color: #3D3D3D;
    border-top: 2px solid rgb(255, 255, 255, 0.5);
}

.bar {
    height: 100vh;
    width: 100vw;
    background-image: url(images/cocktails\ header.png);
    background-size: cover;
}

.barText {
    position: absolute;
    top: 50%;
    left: 80%;
    transform: translate(-75%, -50%);
    background-color: rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    width: 20%;
    height: auto;
}

.barText p {
    color: #fff;
    text-align: center;
    font-size: 3vh;
}

.barMenu .menu-card {
    background: #3D3D3D;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgb(0, 240, 253);
    overflow: hidden;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
    flex-shrink: 0;
}

.barMenu .menu-card img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #000;
    border-radius: 5px;
}

.barMenu .menu-card p {
    margin: 10px 0;
    font-size: 16px;
    color: #fff;
}

.barMenu .menu-card select {
    margin: 10px 0;
    padding: 5px;
    font-size: 14px;
    border: 1px solid rgb(0, 240, 253);
    border-radius: 5px;
}

.barMenu .menu-card .price {
    font-family: "Quicksand", sans-serif;
    margin-top: 10px;
    background: rgb(0, 240, 253);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 16px;
    color: #000;
    font-weight: 400;
}

.barMenu .size-label.selected,
.size-radio:checked + .size-label {
    border-bottom: 2px solid rgb(0, 240, 253);
    background-color: #3D3D3D;
}

.barReservation  {
    display: flex;
    background-color: #3D3D3D;
    box-shadow: 0 6px 12px  rgb(0, 240, 253);
    border-radius: 10px;
    overflow: hidden;
    width: 80%;
    max-width: 900px;
}

.barReservation .reservation-form {
    padding: 20px;
    background-color: #3D3D3D;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.barReservation .reservation-form form {
    width: 400px;
}

.barReservation .reservation-form input {
    margin-bottom: 10px;
    background-color: #3D3D3D;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    font-family: "quicksand", sans-serif;
}

.barReservation .reservation-form button {
    background-color: rgb(0, 240, 253);
    color: black;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.barReservation .reservation-form button:hover {
    background-color: rgb(101, 247, 255)
}

.barReservation input[type="date"], 
.barReservation input[type="time"],
.barReservation input[type="text"],
.barReservation input[type="email"],
.barReservation input[type="tel"] {
    background-color: #3D3D3D; /* Dark background */
    color: #fff; /* White text */
}

.barReservation input[type="date"]::-webkit-calendar-picker-indicator,
.barReservation input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1); /* Inverts the color to white */
}

.barReservation input[type="date"]::placeholder,
.barReservation input[type="time"]::placeholder {
    color: #fff; /* White placeholder text */
}

/*About us css*/
.aboutHeaderGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    width: 100vw;
    height: 100vh;
    grid-column-gap: 5px;
    grid-row-gap: 5px;
}

.aboutHeader {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    text-align: center;
}

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

.aboutCafe, .aboutBar {
    display: flex;
    flex-direction: row;
    margin: 5vw;
    gap: 2vw;
}

.articleLeft, .articleRight {
    max-width: 50%;
}

.aboutImages{
    max-width: 80%;
    border-radius: 10px;
}