:root {
    --primary: #006699;
    --secondary: #0088cc;
    --accent: #88ccee;
    --light: #f8f9fa;
    --dark: #343a40;
    --text: #495057;
    --navbar-height: 70px;
    --navbar-height-mobile: 60px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #fff;
    color: var(--text);
    line-height: 1.6;
}

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

.hero {
    padding: 120px 0 60px;
    text-align: center;
    background-color: #fff;
}

.hero h1 {
    font-size: 4.5rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.hero h2 {
    font-size: 2.8rem;
    color: var(--secondary);
    margin-bottom: 40px;
    font-weight: 300;
}

.top-image{
	border-radius: 8px;
	margin-bottom: 50px;
	max-width: 100%;
}

.description {
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    text-align: justify;
    color: var(--text);
}

.description p {
    margin-bottom: 1.2rem;
}

/* Navbar Sticky - Responsive */
.navbar {
    position: fixed;
    top: -100px;
    left: 0;
    right: 0;
    height: var(--navbar-height);
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: top 0.3s ease;
    z-index: 1000;
}

.navbar.visible {
    top: 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 15px;
}

.navbar-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.navbar-title {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 600;
    line-height: 1;
}

.navbar-subtitle {
    font-size: 0.9rem;
    color: var(--secondary);
    font-weight: 300;
    line-height: 1;
}

.navbar-right {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

.btn {
    padding: 8px 18px;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    min-width: 120px;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

.btn-booking {
    background-color: var(--primary);
    color: white;
}

.btn-booking:hover {
    background-color: var(--secondary);
}

.map-container {
    margin: 60px 0;
    text-align: center;
    padding-top: 40px;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.gallery {
    margin: 60px 0;
    padding-top: 20px;
}

.gallery-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

footer {
    text-align: center;
    padding: 40px 0;
    color: var(--dark);
    font-size: 0.9rem;
    background-color: var(--light);
}



/* Responsive */
@media (max-width: 992px) {

	.hero{
		padding-top: 50px;
	}

    .navbar {
        height: var(--navbar-height-mobile);
    }

    .navbar-title {
        font-size: 1.2rem;
    }

    .navbar-subtitle {
        font-size: 0.75rem;
    }

    .btn {
        padding: 6px 12px;
        font-size: 0.8rem;
        min-width: 100px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .hero h2 {
        font-size: 2.4rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .navbar-right {
        gap: 8px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero h2 {
        font-size: 1.6rem;
    }

    .navbar-title {
        font-size: 1.1rem;
    }

    .navbar-subtitle {
        font-size: 0.7rem;
    }

    .btn {
        padding: 5px 10px;
        font-size: 0.75rem;
        min-width: 90px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}


/*GALLERY NEW*/

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    overflow: auto;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    display: block;
    margin: auto;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover {
    color: #bbb;
}

.lightbox-prev, .lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: #f1f1f1;
    font-weight: bold;
    font-size: 20px;
    transition: 0.3s;
    user-select: none;
    -webkit-user-select: none;
}

.lightbox-prev:hover, .lightbox-next:hover {
    color: #bbb;
}

.lightbox-prev {
    left: 0;
}

.lightbox-next {
    right: 0;
}

/* Responsive Gallery */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/*TEMP*/
.btn-booking{
	display: none !important;
}

.description a{
	text-decoration: none;
	font-weight: bold;
	color: #006699;
}

