@charset "UTF-8";

body {
    background-color: #fff;
}

h1 {
    text-align: center;
}

body p {
    text-align: center;
    color: #1A273C;
}

img {
    border-radius: 20px;
}

header {
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
    position: relative;
}

header .logo {
    display: block;
    margin: 0 auto;
    max-width: 200px;
    height: auto;
}

nav {
    margin-top: 10px;
    background-color: #1F3D52;
    padding: 10px;
}

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

nav li {
    margin: 0 15px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 1px;
    display: block;
    transition: all 0.3s ease;
}

nav a:hover {
    color: #f4d58d;
}

.page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.hero {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-in {
    width: 80%;
    height: 600px;
    object-fit: cover;
    transform: translateX(-100%);
    opacity: 0;
    padding: 10px;
    animation: slideIn 1.8s ease-out forwards;
}

@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

#hours {
    background-color: #DDE0C3;
    border: 5px groove #8F8F5C;
    width: 50%;
    border-radius: 10px;
    text-align: center;
    color: #19333C;
    margin: 20px auto;
}

.first-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 80%;
    margin: 0 auto;
	padding: 15px;
}


.first-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.first-gallery img:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.first-gallery img {
    width: 100%;
    height: 250px; 
    object-fit: cover;
    display: block;
    border-radius: 20px;
	transition: transform 0.35s ease, box-shadow 0.35s ease;	
}

.first-gallery img:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.lodging-section {
    background-color: #1F3D52;
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
    color: white;
}

.lodging-title {
    text-align: center;
    margin-bottom: 20px;
    color: white;
}


.lodging-section .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 20px auto;
    align-items: start;
}


.accommodation-card {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #C6C9B3;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
}

.accommodation-card:hover {
    transform: translateY(-5px);
}

.accommodation-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.accommodation-info {
    padding: 12px;
    text-align: left;
    color: #1F3D52;
}

.accommodation-info h3,
.accommodation-info p {
    margin: 0;
    padding: 0;
    line-height: 1.25;
	text-align: left;
}

.accommodation-info p {
    margin-top: 2px;
}

section form {
    width: 70%;
    margin: 30px auto;
    padding: 25px;
    background-color: #99977F;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

form label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #1F3D52;
}

form input,
form select,
form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
}

form input[type="submit"] {
    background-color: #1F3D52;
    color: #fff;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

form input[type="submit"]:hover {
    background-color: #334a6a;
}

footer {
    border: 1px solid #031030;
    background-color: #1F3D52;
    color: #fff;
    padding: 20px 0;
}

#footer-content {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}

@media (max-width: 1024px) {
    header .logo {
        max-width: 150px;
    }

    section p {
        width: 85%;
    }

    .slide-in {
        width: 100%;
        height: auto;
    }
}

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

    nav li {
        margin: 5px 0;
    }

    section p {
        width: 90%;
    }

    #footer-content {
        flex-direction: column;
		align-items: flex-start;
      
    }
}