  /* General Styles */
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Header */
header {
    background-image: url('attraction img/attraction.jpg'); 
    background-size:cover ;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    width: 100%;
}

header h1 {
    font-size: 5rem;
    text-shadow: 8px 1px rgb(0, 0, 0);
    margin: 0;
    text-decoration: underline overline;
}

/* Navigation */
nav {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 3;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.2em;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

nav a:hover {
    background-color: #4CAF50;
}

.Maincon{
    text-align: center;
    height: 100px;
    padding-top: 1px;
    margin-bottom: 3rem;
}

.Maincon p{
    color: black;
    font-size: 25px;

}

/* Main Content */
section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
    /* text-align: center; */
}

section h2 {
    font-size: 2.5em;
    color: #4CAF50;
    margin-bottom: 20px;
}

section p {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #555;
}

/* Accommodations Grid */
.accommodations-grid {
    display: grid;
    grid-template-rows: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
    height: auto;
}

.accommodation-item {
   
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.accommodation-item:hover {
    transform: translateY(-10px);
}

.accommodation-item img {
    width: 500px;
    height: 375px;
    object-fit: cover;
    float: left;
    margin-right: 50px;
    margin-left: 0px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.accommodation-item h3 {
    font-size: 1.8em;
    color: #4CAF50;
    margin-left: 50px;
    padding: 0 15px;
}

.accommodation-item p {
    padding: 0 15px 15px;
    color: #252525;
    font-size: 15px;
    text-align: justify;
    font-size: 1.1rem;

}

.read-more-btn{
    border: none;
    cursor: pointer;
    color: darkblue;
    background-color: white;
    font-size: 15px;
    font-weight: bold;
}

.read-more-btn:hover {
    color: blue;}

#more1,
#more2,
#more3,
#more4,
#more5,
#more6,
#more7 {display: none;}

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background-color: #333;
    color: white;
    margin-top: 50px;
}