        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
        }

        body {
            color: #fff;
            line-height: 1.6;
            background: url(a/bgmin.webp);
            background-repeat:no-repeat;
            background-position: center center;
            background-size:cover;
            background-attachment: fixed;
            background-color: #020201;
            display: flex;
            flex-direction: column;
            height: 100vh;
            scroll-behavior: smooth;

        }

        a{
            text-decoration: none;
         
        }

        .wd{
            max-width: 1660px;
            margin-left:auto;
            margin-right: auto;
        }
        
        .top{
            background: rgba(10, 10, 10, .6);
            margin-bottom: 80px;
        }

        header {
            width: 100%;
            padding: 10px 20px;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            align-items: center;
            z-index: 100;
        }

        .logo {
            
            font-size: 20px;
            font-weight: bold;
            letter-spacing: 2px;
            display: flex;
            gap: 0 10px;
            align-items: center;
            margin-right: auto;
        }
           
        

        .logo img{
            width:60px;
        }
        .logo span{
            font-size: .9rem;
            
        }

        .logo p{
            line-height: 1;

        }

        .contact-info {
            display: flex;
            gap:10px;
            align-items: center;
        }

        .contact-info img{
            height:25px;
        }
        
        .tel{
            color: #fff;
            text-decoration: none;
        }



        .contact-info p {font-size: 1.2rem;}

        main {
            display: flex;
            gap: 30px;
            padding: 0 20px;
            width: 100%;
            flex-wrap: wrap;
            align-items: center;
            margin-bottom: 80px;
            margin-bottom: 80px;
        }

        main span h2{
            margin-bottom: 10px;
        }
        
        h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            font-weight: bold;
            line-height: 1.2;
        }

        p {
            font-size: 1.4rem;
            color: #ffffff;
            max-width: 600px;
            text-decoration:none;
        }


        .hero{
            margin-right: auto;
        }

        .page{
            background: rgba(0,0,0, .6);
            border-radius: 10px;
            max-width: 1450px;
            margin: 0 auto;
            padding: 20px;
            width: 100%;
        }

        .page h2{
            margin-top: 20px;
        }
        .page p{
            max-width: 100%;
            font-size: 1.1rem;
        }

        .page ul li{
            list-style: disc;
            margin-bottom: 5px;
            margin-left: 30px;
        }

        .page a{
            font-size: 1.2rem;
            color: #fff;
            border-bottom: 1px dotted;
            margin-bottom: 20px;
        }
        .page a:hover{
            border-bottom: 1px solid;
        }
        .page h1{
            margin-top: 20px;
        }
        .subheading {
            color: #FF0D41;
            font-size: 1.2rem;
            margin-bottom: 10px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: rgba(36, 32, 33, 0.6);
            padding: 5px 15px;
            width: fit-content;
            border-radius: 6px;
        }



        .services {
            margin-top: 30px;
            display: flex;
            gap:10px 15px;
            align-items: center;
            flex-wrap: wrap;
        }

        .services img{
            height: 45px;
            background: rgba(255, 12, 13, 0.6);
            padding: 8px 10px;
            border-radius: 6px;

        }

        #sd{
            background: #fff;
            padding: 12px;
        }

        .fun {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: space-evenly;
            
        }

        .fun :nth-child(2){
            margin-left: 70px;
        }


        .fun img {
            height: 120px;
            mix-blend-mode: difference;
        }



        footer {
            margin-top: auto;
            width: 100%;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .copy {
            font-size: 1rem;
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .copy p{
            font-size: 1rem;
        }

        .copy a{
            color: #fff;
           border-bottom: 1px dotted;
        }

        .copy a:hover{
            border-bottom: 1px solid;
        }

       .social-links a img{
                width:40px;
                margin-left: 5px;
        }

        @media (max-width: 468px) {
            .fun :nth-child(2){
            margin-left: 30px;
        }


        }

/* Gallery, Booking, Map, Notice */

        .gs{
            margin: 30px auto;
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            width: 100%;
            padding: 20px;
            justify-content: space-between;
     
        }

        .gs h2{
            width: fit-content;
            padding-bottom: 2px;
            border-bottom: 2px solid;
            margin-bottom: 10px;
        }

        .gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(3, 1fr);
            grid-gap: 15px;
            max-width:480px;
        }
        

        .gallery img {
            width: 100%;
            height: 100px;
            object-fit: cover;
            cursor: pointer;
            transition: transform 0.3s;
            border:1px solid #555;
        }

        .gallery img:hover {
            transform: scale(1.05);
        }

        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 1000;
        }

        .lightbox img {
            max-width: 90%;
            max-height: 90vh;
            margin: auto;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border: 1px solid;
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 30px;
            cursor: pointer;
            background: none;
            border: 2px solid;
            padding: 1px 10px;
            outline: none;
        }

        .booking{
            max-width: 540px;

        }
        .booking h2{
            margin-bottom: 15px;
        }

        .booking ul{
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }

        .booking ul li, .fees p, .address p{
            list-style: none;
            background: rgba(36, 32, 33, 0.65);
            padding: 5px 15px;
            width: fit-content;
            border-radius: 6px;
            border:1px solid #666;

        }
        
        .booking ul a{
            color: #fff;
            border-bottom: 1px dotted;
            margin-top: 10px;
            padding-bottom: 5px;
            margin-left: 15px;
        }
        
        .booking ul a:hover{
            border-bottom: 1px solid;
        }

        .booking ul span{
            flex-basis: 100%;
            height: 0;
        }

        .fees p{
            margin-bottom: 5px;
            font-size: 1rem;
        }

        .fees {
            display: flex;
            flex-wrap: wrap;
            gap:5px;
            justify-content: space-between;
            margin-bottom: 15px;
        }

        .pricing h3{
            margin-bottom: 15px;
        }

        .pricing ul{
            display: flex;
            flex-direction: column;
            gap: 15px;
            align-items: flex-start;
        }
        
        address{
           background: rgba(36, 32, 33, 0.65);
           padding: 5px 12px;
           border-radius: 5px;
           width: fit-content;
        }



        .map{
  
            margin-top: 15px;
            margin-bottom:15px;

         }

        .map img{
            object-fit: cover;
            width: 100%;
            border-radius: 10px;
        }
      
        .pay{
          border-radius: 10px;
          height: 220px;
          opacity: .95;
        }
