/* General Styles */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(#546e7a, #333);
}

/* index.html */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
    font-family: "Press Start 2P", cursive;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

nav ul li a:hover {
    color: #ff6f61;
    transition: 0.5s;
}

.hero {
    background: url("assets/photo/1.png") no-repeat center center/cover;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: black;
}

.hero p {
    color: black;
}

.hero .btn {
    padding: 10px 20px;
    background-color: #ff6f61;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.hero .btn:hover {
    background-color: #333;
    transition: 0.5s;
}

/* gallery.html */

.gallery h2 {
    text-align: center;
    margin: 20px 0;
    color: whitesmoke;
}

.gallery .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
    margin: 10px;
}

.gallery .column img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.gallery .column img:hover {
    box-shadow: 0 0 20px 0px rgba(161, 207, 255, 0.548);
    transition: 0.5s;
}

/* about.html */

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px;
    margin: 20px;
}

.about .about-content {
    display: flex;
    align-items: center;
}

.about .about-content img {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    margin-right: 20px;
}

.about .about-content img:hover {
    box-shadow: 0 0 25px 0px rgba(161, 207, 255, 0.548);
    scale: 1.1;
    transition: 0.5s;
}

.bio h2,
.bio p {
    color: whitesmoke;
}

.bio h2 small {
    font-size: 15px;
}

/* booking.html */

.booking {
    margin: 3%;
    margin-bottom: 6%;
}

.booking h2 {
    text-align: center;
    margin: 20px 0;
    color: whitesmoke;
}

.booking form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.booking form label {
    color: whitesmoke;
    display: block;
    margin-bottom: 5px;
}

.booking form input,
.booking form select,
.booking form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.booking form button {
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.booking form button:hover {
    background-color: #ff6f61;
    transition: 0.5s;
}

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

footer .social-icons a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

footer .social-icons a:hover {
    color: #ff6f61;
    transition: 0.5s;
}

/* Bubble Styles */

.bubbles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -100px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: rise 10s infinite ease-in;
}

.bubble:nth-child(2) {
    width: 20px;
    height: 20px;
    left: 20%;
    animation-duration: 12s;
    animation-delay: 2s;
}

.bubble:nth-child(3) {
    width: 30px;
    height: 30px;
    left: 40%;
    animation-duration: 8s;
    animation-delay: 4s;
}

.bubble:nth-child(4) {
    width: 50px;
    height: 50px;
    left: 60%;
    animation-duration: 14s;
    animation-delay: 6s;
}

.bubble:nth-child(5) {
    width: 25px;
    height: 25px;
    left: 80%;
    animation-duration: 10s;
    animation-delay: 8s;
}

@keyframes rise {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-1000px);
        opacity: 0;
    }
}
