css/style.css

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2c2c2c;
    background: #faf8f5;
    line-height: 1.6;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== COLORS ===== */
:root {
    --gold: #D4A373;
    --gold-dark: #b8894e;
    --green: #2F4F2F;
    --green-light: #4a7a4a;
    --cream: #FAF0E6;
    --dark: #1f1f1f;
    --white: #ffffff;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 163, 115, 0.4);
}
.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    background: var(--white);
    color: var(--green);
}
.btn-book {
    display: inline-block;
    background: var(--green);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.btn-book:hover {
    background: var(--green-light);
    transform: scale(1.05);
}
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-whatsapp:hover {
    background: #128C7E;
    transform: scale(1.05);
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(47, 79, 47, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo a {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo a img {
    height: 45px;
    width: auto;
    border-radius: 8px;
}
.logo span {
    color: var(--gold);
}
nav ul {
    display: flex;
    gap: 30px;
}
nav ul li a {
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}
nav ul li a:hover,
nav ul li a.active {
    color: var(--gold);
}
nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}
nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
}

/* ===== HERO ===== */
.hero {
    height: 100vh;
    background: url('../images/balcony-lake-view.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-content {
    color: var(--white);
    padding: 20px;
}
.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
.hero-content h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gold);
    margin: 15px auto;
    border-radius: 2px;
}
.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== WELCOME ===== */
.welcome {
    padding: 80px 0;
    background: var(--cream);
}
.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.welcome-text h2 {
    font-size: 2.5rem;
    color: var(--green);
    margin-bottom: 20px;
}
.welcome-text h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gold);
    margin-top: 10px;
    border-radius: 2px;
}
.welcome-text p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}
.welcome-image img {
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    height: 400px;
    width: 100%;
    object-fit: cover;
}

/* ===== ROOMS ===== */
.rooms {
    padding: 80px 0;
    background: var(--white);
}
.rooms h2,
.restaurant h2,
.attractions h2,
.contact h2,
.video-section h2,
.maps h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--green);
}
.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}
.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.room-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}
.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.room-card img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}
.room-info {
    padding: 25px;
}
.room-info h3 {
    font-size: 1.4rem;
    color: var(--green);
    margin-bottom: 10px;
}
.room-desc {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 15px;
}
.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}
.room-amenities li {
    background: var(--cream);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #444;
}
.room-amenities li i {
    color: var(--gold);
    margin-right: 5px;
}
.room-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 15px;
}
.room-price span {
    color: var(--gold);
    font-size: 1.3rem;
}

/* ===== RESTAURANT ===== */
.restaurant {
    padding: 80px 0;
    background: var(--cream);
}
.restaurant-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.restaurant-text ul {
    margin: 20px 0;
}
.restaurant-text ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.restaurant-text ul li i {
    color: var(--gold);
    font-size: 1.2rem;
}
.restaurant-image img {
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    height: 350px;
    width: 100%;
    object-fit: cover;
}

/* ===== ATTRACTIONS ===== */
.attractions {
    padding: 80px 0;
    background: var(--white);
}
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}
.attraction-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: var(--cream);
    transition: all 0.3s ease;
}
.attraction-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.attraction-item i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 15px;
}
.attraction-item h4 {
    font-size: 1.2rem;
    color: var(--green);
    margin-bottom: 10px;
}
.attraction-item p {
    color: #555;
    font-size: 0.95rem;
}

/* ===== VIDEO ===== */
.video-section {
    padding: 80px 0;
    background: var(--cream);
}
.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}
.video-wrapper video {
    width: 100%;
    display: block;
}

/* ===== CONTACT ===== */
.contact {
    padding: 80px 0;
    background: var(--white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.contact-info p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 12px;
}
.contact-info p i {
    width: 30px;
    color: var(--gold);
    font-size: 1.2rem;
}
.contact-social {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}
.contact-social a {
    display: inline-block;
    background: var(--green);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}
.contact-social a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: border 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    outline: none;
}
.contact-form button {
    width: 100%;
    font-size: 1.1rem;
}

/* ===== MAPS ===== */
.maps {
    padding: 80px 0;
    background: var(--cream);
}
.map-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark);
    color: #ccc;
    padding: 50px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}
footer h4 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.1rem;
}
footer ul li {
    margin-bottom: 8px;
}
footer ul li a {
    color: #aaa;
    transition: color 0.3s ease;
}
footer ul li a:hover {
    color: var(--gold);
}
footer p i {
    color: var(--gold);
    width: 25px;
}

/* ===== FLOATING WHATSAPP ===== */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}
.floating-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .welcome-grid,
    .restaurant-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
}
@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content p {
        font-size: 1.1rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn-whatsapp {
        display: none;
    }
    .room-grid {
        grid-template-columns: 1fr;
    }
    .attractions-grid {
        grid-template-columns: 1fr 1fr;
    }
    .floating-wa {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
        bottom: 20px;
        right: 20px;
    }
    .welcome-image img,
    .restaurant-image img {
        height: 250px;
    }
    .map-wrapper iframe {
        height: 250px;
    }
}
@media (max-width: 480px) {
    .attractions-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 1.8rem;
    }
}
.nav-open ul {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(47, 79, 47, 0.98);
    padding: 20px 0;
    text-align: center;
    gap: 15px;
}