 body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
            color: #333;
        }

        /* Header */
        header {
            background-image: url('accommodation img/accommo.jpg '); 
            background-size: cover;
            background-position: center;
            height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            position: relative;
        }

        header h1 {
            font-size: 4rem;
            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;
        }

        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;
        }

        /* 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;
        }

        /* Attractions Grid */
        .attractions-grid {
            display: grid;
            grid-template-columns: auto auto auto auto;
            gap: 30px;
            margin-top: 30px;
            height: auto;
        
        }

        .attraction-item {
            background-color: rgba(223, 206, 171, 0.363);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .attraction-item:hover {
            transform: translateY(-10px);
        }

        .attraction-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .attraction-item h3 {
            font-size: 25px;
            color: #4CAF50;
            margin: 15px 0;
            padding: 0 15px;
        }

        .attraction-item p {
            padding: 0 15px 15px;
            font-size: 1em;
            color: #666;
        }

        .bttn2{
            color: rgb(0, 0, 0);
            font-size: 14px;
            font-weight: bold;
            margin-top: 30px;
            background-color: #12e719bd;
            cursor: pointer;
            border-radius: 6px;
            padding: 8px;
            border-color: darkgreen;
        }

        .read-more-btn{
            border: none;
            cursor: pointer;
            color: darkblue;
            background-color:  rgba(223, 206, 171, 0.363);
            font-size: 15px;
            font-weight: bold;
        }
        
        .read-more-btn:hover {
            color: blue;}

        #more1,
        #more2,
        #more3,
        #more4 {display: none;}

        /* Footer */
        footer {
            text-align: center;
            padding: 15px;
            background-color: #333;
            color: white;
            margin-top: 50px;
        }
        