/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}

/* Header styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: black;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo a img {
    width: 50px;
}

header .navbar ul{
    list-style-type: none;
    display: flex;
}

header .navbar a {
    color: #ddd;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
    position: relative;
}

header .navbar a::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transform: scaleX(0);
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transition: transform 0.5s ease;
    -webkit-transition: transform 0.5s ease;
    -moz-transition: transform 0.5s ease;
    -ms-transition: transform 0.5s ease;
    -o-transition: transform 0.5s ease;
}

header .navbar a:hover::after {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
}

.sidebar {
  display: none;
  flex-direction: column;
  position: fixed;
  height: 100vh;
  width: 200px;
  top: 0;
  right: 0;
  background-color: #0000009b;
  backdrop-filter: blur(10px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 999;
}

.sidebar.active {
  display: flex;
}

.sidebar li {
    width: 100%;
    margin-top: 20px;
    cursor: pointer;
}

.hideONpc {
    display: none;
}

@media (max-width: 992px) {
    nav {
        padding: 10px; /* Less padding for smaller screens */
    }

    nav ul {
        flex-direction: column; /* Stack items vertically */
        gap: 10px; /* Adjust gap for smaller screens */
    }

    .intro h2 {
        font-size: smaller;
    }

   .hideONMobile {
        display: none;
    } 

    .hideONpc {
        display: block;
    }
    header div {
        width: 50px; /*less logo size*/
    }
        footer div{
        font-size: 9px; /*less font size*/
        padding: 5px;/*less breath space*/
    }
    .sidebar {
        display: none !important;
    }
}

@media (max-width: 768px) {
    nav ul li a {
        font-size: 14px; /* Smaller font size */
        padding: 8px; /* Less padding */
    }

    .intro h2 {
        font-size: smaller;
    }

    .hideONMobile {
        display: none;
    }
    .hideONpc {
        display: block;
    }
    header div {
        width: 50px; /*less logo size*/
    }

    footer div{
        font-size: 9px; /*less font size*/
        padding: 5px;/*less breath space*/
    }
}


#intro {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('src/background.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#backgroundIMAGE {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
}

#intro h2 {
    font-size: 4em;
    margin: 0;
    animation: fadeIn 2s ease-in-out;
}

.review-section {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

.review-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.review-box {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.review-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.review-info {
    padding: 15px;
    text-align: left;
}

.review-info h3 {
    margin-bottom: 10px;
    font-size: 1.5em;
}

.review-info p {
    margin-bottom: 10px;
}

.review-box:hover {
    transform: scale(1.05);
}

#about,
.reservation-section {
    padding: 60px 20px;
    text-align: center;
}

#about {
    background-color: #f4f4f4;
}

#destinations{
    text-align: center;
}

.down-button{
    width: 100%;
    max-width: 350px;
    padding: 0.7rem;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.down-button:hover{
    background-color: grey;
}

hr {
    margin: 10px;
}

.reservation-section {
    background-color: #fff;
}

.reservation-section form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.reservation-section input[type="text"],
.reservation-section input[type="tel"],
.reservation-section button {
    width: 100%;
    max-width: 350px;
    padding: 0.7rem;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.reservation-section button {
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.reservation-section button:hover {
    background-color: #555;
}

footer {
    padding: 40px 20px;
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
}

footer > div {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1000px;
    text-align: center;
}

.contact-info, .opening-hours {
    margin: 0 1rem;
    flex: 1;
}

.contact-details, .hours-details {
    margin-top: 1rem;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
    background-color: black;

}

.social-media a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #33333300;
    color: #ffffff;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    transition: background-color 0.3s, transform 0.3s;
}
