* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
}

.navbar {
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    margin-right: 10px;
}

.navbar .btn-primary {
    background-color: #ff6f00; 
    border-color: white;
    border-width: 2px;
    font-weight: bold; 
    letter-spacing: 1px; 
    padding: 10px 20px; 
    border-radius: 8px; 
    transition: all 0.3s ease-in-out; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
}

.navbar .btn-primary:hover {
    background-color: #e65c00;
}

.navbar-nav .nav-link {
    font-weight: 600;
    font-size: 1.1rem; 
    letter-spacing: 0.5px; 
    padding: 10px 15px; 
    transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
    color: #f8d210 !important; 
}

.hero {
    background: url('pictures/picture2.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 180px 0;
    position: relative;
}

.admin {
    background: url('pictures/picture2.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 180px 0;
    position: relative;
}

.cta {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('pictures/picture3.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.cta-section h2 {
    margin-bottom: 30px !important;
}

.cta .button {
    display: inline-block;
    background-color: #ff6600;  
    color: white;
    padding: 18px 36px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    text-decoration: none;
    margin-top: 25px;  
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.button:hover {
    background-color: #ffbb33; 
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.admin::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.admin .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 40px; 
    transition: transform 0.4s ease-in-out; 
}

.hero .container:hover {
    transform: scale(1.05);
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.hero .button {
    background-color: #ff6600;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #ffbb33; 
}

.services {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('pictures/texture.jpg'); 
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.services .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.service-item {
    background: rgba(255, 255, 255, 0.05); 
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    color: white; 
    backdrop-filter: blur(3px); 
}

.service-item p {
    color: rgba(255, 255, 255, 0.8);
    font-weight: bold; 
}

.service-item:hover {
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
}


.service-item h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.service-item p {
    margin: 0 0 10px;
}

.login-section .btn-secondary{
    color: #000;
    font-weight: bold;
}

.login-section p{
    color: #000;
    font-weight: bold;
}

.login-section h2{
    font-weight: 600;
    color: #000;
}

.about {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('pictures/texture.jpg'); 
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    color: #fff;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.btn-learn-more {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    background-color: #ff6600;
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.btn-learn-more:hover {
    background-color: #ffbb33; 
}

.about .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-size: 2em;
}

.about p {
    font-size: 1.1em;
    margin: 0 0 70px;
}

.team {
    background: rgba(255, 255, 255, 0.05); 
    padding: 60px 20px;
    text-align: center;
    border-radius: 20px; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
    backdrop-filter: blur(10px); 
}


.team h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: white; 
    font-weight: bold;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
    justify-items: center;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 8px; 
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.team-member h3 {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 10px;
}

.team-member p {
    font-size: 1.2rem;
    color: white;
}

.team-member:hover {
    transform: translateY(-10px); 
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); 
}

.team-member:hover img {
    transform: scale(1.05); 
}


@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr; 
    }
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #444;
    color: #fff;
    position: relative;
}

footer p {
    margin: 0;
}

form {
    display: flex;
    flex-direction: column;
    padding: 4px;
    gap: 4px;
}

.table-wrapper {
    width: 100%;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;

    tr {

        th,
        td {
            border: solid 1px #000;
            padding: 4px;
        }
    }
}

.container {
    margin: 0 auto;
    width: 80%;
    display: grid;
    justify-content: center;
    padding: 16px;
}

form {
    display: flex;
    flex-direction: column;

    label {
        margin: 8px 0 4px;
        font-weight: bold;
    }

    input,
    select,
    textarea,
    button {
        padding: 8px;
        margin-bottom: 16px;
        border: 1px solid #ccc;
        border-radius: 8px;
        font-size: 1em;
    }

    textarea {
        resize: vertical;
        height: 62px;
    }

    button {
        background-color: #007bff;
        color: #fff;
        cursor: pointer;

        &:hover {
            background-color: #0056b3;
        }
    }
}

@media (max-width: 768px) {
    header nav ul {
        flex-direction: column;
    }

    .container {
        width: 100%;
    }
}

.contact-info {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.contact-info h2 {
    font-size: 1.8em;
    color: #007bff;
}

.contact-info p {
    font-size: 1.2em;
    margin: 10px 0;
}

.map-container {
    flex: 1;
    min-width: 300px;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
        text-align: center;
    }

    .contact-info,
    .map-container {
        width: 100%;
    }
}

.reservation-page {
    position: relative; 
    background-image: url('pictures/picture2.jpg'); 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;
    background-attachment: fixed; 
}

.reservation-page::before {
    content: ''; 
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); 
}

.reservation-page h1 {
    color: white;
    text-align: center;
    position: relative; 
}

.reservation-page b {
    color: white;
    position: relative;
}

.reservation-page .table-wrapper {
    max-width: 80%; 
    margin: 0 auto; 
    overflow-x: auto;
    position: relative; 
}

.reservation-page table {
    width: 80%;
    border-collapse: separate;
    text-align: center;
    margin: auto;
    border-spacing: 1;
}

.reservation-page th, td {
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 5px;
}

.reservation-page th {
    background-color: #007bff;
    color: white;
}

.reservation-page td {
    background-color: #f9f9f9;
}

.reservation-page td a {
    display: inline-block;
    padding: 8px 12px;
    background-color: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.reservation-page td a:hover {
    background-color: #218838;
}

.reservation-page td p {
    margin: 0;
    color: red;
    font-weight: bold;
}

.reservation-page button {
    padding: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    transition: background 0.3s ease;
}

.reservation-page button:hover {
    background-color: #0056b3;
}

.reservation-page form {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: white; 
    padding: 20px;
    border-radius: 10px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
    position: relative; 
    max-width: 500px; 
    margin: auto;
    margin-bottom: 50px; 
}

strong {
    font-weight: bold; 
    color: red; 
    font-size: 1.2em; 
    letter-spacing: 1px; 
    text-transform: uppercase; 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); 
    padding: 2px 5px; 
    background-color: rgba(255, 255, 255, 0.7); 
    border-radius: 5px; 
}

div[style*="grid-template-columns"] a {
    padding: 12px 16px;
    color: white;
    background-color: #007bff; 
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px; 
    transition: all 0.3s ease; 
    display: inline-block;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 0 11px; 
}

div[style*="grid-template-columns"] a:hover {
    background-color: #0056b3; 
    text-decoration: none;
    transform: scale(1.05); 
}

div[style*="grid-template-columns"] a:active {
    transform: scale(0.95); 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}


@media (max-width: 768px) {

    .reservation-page th, 
    .reservation-page td {
        font-size: 14px;
        padding: 8px;
    }

    .reservation-page td a {
        padding: 6px 10px;
        font-size: 14px;
    }

    .reservation-page input, 
    .reservation-page select {
        font-size: 14px;
    }

    .reservation-page button {
        font-size: 14px;
        padding: 10px;
    }
}

