/* Custom Variables */

:root {
    --primary: #000;
    --accent: #d4af37;
    --light-bg: #f8f9fa;
}

/* Global Styles */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.section-title {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent);
}

/* Header */

.navbar {
    background-color: #06cdd0;
    transition: all 0.3s ease;
    padding: 0.8rem 0;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
    color: #fff;
    font-weight: 500;
    margin: 0 8px;
    position: relative;
}

.navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover:after,
.navbar-nav .nav-link.active:after {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: var(--accent);
}

.call-btn {
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--accent);
    border-radius: 8px;
    padding: 6px 16px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.call-btn:hover {
    background: var(--accent);
    color: var(--primary);
}

.logo-img {
    height: 50px;
}

/* Hero Section */

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('image/banner-3.jpg') no-repeat center center/cover;
    color: white;
    padding: 120px 0 80px;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.info-box {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--accent);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
}

.form-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 8px;
    color: black;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-box input {
    margin-bottom: 15px;
    padding: 10px;
}

/* Second Section */

.second-section img {
    object-fit: cover;
    width: 100%;
    height: auto;
    max-height: 100vh;
}

/* Overview Section */

.overview-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

/* Amenities Section */

.amenities-section {
    padding: 80px 0;
}

.amenity-card {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.amenity-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

/* Gallery Section */

.gallery-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Location Section */

.location-section {
    padding: 80px 0;
}

/* Footer */

.footer {
    background-color: var(--primary);
    color: #fff;
    padding: 60px 0 30px;
}

.footer h5 {
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent);
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
}

/* Back to Top Button */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent);
    color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Adjustments */

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    .info-box {
        margin-bottom: 15px;
    }
    .section-title {
        font-size: 1.8rem;
    }
}