@charset "utf-8";
/* CSS Document */

/* General Styles */
body {
    font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Header Styling */
header {
    background-color: #4B5990;
    padding: 15px 0;
    text-align: center;
}

header img {
    max-width: 150px;
    margin: 0 auto;
}

nav {
    margin-top: 20px;
}

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

nav ul a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    transition: color 0.3s ease-in-out;
}

nav ul a:hover {
    color: #f39c12;
}

/* Carousel Styling */
.carousel img {
    max-height: 500px;
    object-fit: cover;
}

/* Announcement Bar */
#announcement-bar {
    background-color: #4B5990;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 18px;
    font-weight: bold;
}


/* Main Section */
section {
    padding: 50px 20px;
    text-align: center;
    background-color: #4B5990;
    margin: 20px auto;
    border-radius: 10px;
    max-width: 900px;
	color:white;
}
.Content {
	margin: 50px 100px;
}

.shop-box {
	width: 300px;
	text-align: center;
	display: inline;
}
.shop-box img {
    max-width: 100%; 
    height: auto;
    display: block;
    margin: auto; 
}
.shop-box p { 
font-size: 14px;
margin: 20px 600px;
}
.shop-box a {
	display: block;
	background-color: #4B5990;
	padding: 10px 20px;
	font-family: 'Lato', sans-serif;
	font-size: 14px;
	color: #fff;
	text-decoration: none;
	width: 160px;
	margin: 0 auto;
	margin-bottom: 30px;
}

.shop-box h1 {
	text-align: center;
	margin-bottom: 50px;
	margin-top: 50px;
}

.accommodation-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  justify-content: space-between;
}

.accommodation-item {
  flex: 1 1 calc(33.333% - 20px); /* 3 per row */
  box-sizing: border-box;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f8f8f8;
  color: black; 
  text-align: center;
}

.accommodation-item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .accommodation-item {
    flex: 1 1 100%; /* Stack on small screens */
  }
}

/* General Styles */
body {
    font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Header Styling */
header {
    background-color: #4B5990;
    padding: 15px 0;
    text-align: center;
}

header img {
    max-width: 150px;
    margin: 0 auto;
}

/* Navigation Styling */
nav {
    margin-top: 20px;
    background-color: #333; /* Add background color for contrast */
}

nav ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center; /* Center the items */
    list-style-type: none; /* Remove default list dots */
}

nav ul li {
    margin-right: 20px; /* Space out the list items */
}

nav ul a {
    display: block; /* Make each link a block element */
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    transition: background-color 0.3s ease-in-out;
    text-align: center; /* Center the text inside each link */
}

nav ul a:hover {
    background-color: #f39c12; /* Change color on hover */
    border-radius: 5px; /* Optional: add rounded corners on hover */
}

/* Carousel Styling */
.carousel img {
    max-height: 500px;
    object-fit: cover;
}

/* Announcement Bar */
#announcement-bar {
    background-color: #4B5990;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 18px;
    font-weight: bold;
}

/* Main Section */
section {
    padding: 50px 20px;
    text-align: center;
    background-color: #4B5990;
    margin: 20px auto;
    border-radius: 10px;
    max-width: 900px;
    color: white;
}

.Content {
    margin: 50px 100px;
}

.shop-box {
    width: 300px;
    text-align: center;
    display: inline-block;
}

.shop-box img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: auto;
}

.shop-box p {
    font-size: 14px;
    margin: 20px 600px;
}

.shop-box a {
    display: block;
    background-color: #4B5990;
    padding: 10px 20px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    width: 160px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.shop-box h1 {
    text-align: center;
    margin-bottom: 50px;
    margin-top: 50px;
}

.accommodation-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: space-between;
}

.accommodation-item {
    flex: 1 1 calc(33.333% - 20px); /* 3 per row */
    box-sizing: border-box;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f8f8f8;
    text-align: center;
}

.accommodation-item img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .accommodation-item {
        flex: 1 1 100%; /* Stack on small screens */
    }
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
}
/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
}