/* ============================================
   Paradise Now Services — Website Stylesheet
   Colors from Style Guide:
   - Dark Green: #2B4A2B
   - Gold/Bronze: #B8860B
   - Warm Gold (light): #D4A843
   - Anthracite: #333333
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --green-dark: #2B4A2B;
    --green-medium: #3D6B3D;
    --gold: #B8860B;
    --gold-light: #D4A843;
    --gold-pale: #F5E6C8;
    --anthracite: #333333;
    --text: #222222;
    --text-light: #666666;
    --white: #FFFFFF;
    --off-white: #FAFAF5;
    --bg-dark: #1A1A1A;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --radius: 8px;
    --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.3;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; display: block; }

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

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-align: center;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(184,134,11,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--green-dark);
}

.btn-nav {
    padding: 10px 24px;
    background: var(--gold);
    color: var(--white) !important;
    border-radius: var(--radius);
}
.btn-nav:hover { background: var(--gold-light); color: var(--white) !important; }

.btn-full { width: 100%; }

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 10px 0;
}

.nav-container { display: flex; justify-content: space-between; align-items: center; }

.nav-logo img { height: 50px; width: auto; transition: opacity var(--transition); }
.nav-logo .logo-white { display: block; }
.nav-logo .logo-color { display: none; }
.navbar.scrolled .nav-logo .logo-white { display: none; }
.navbar.scrolled .nav-logo .logo-color { display: block; }

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 8px;
}

.nav-links a {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius);
    transition: all var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
.navbar.scrolled .nav-links a { color: var(--text); }
.navbar.scrolled .nav-links a:hover { color: var(--gold); }
.navbar.scrolled .btn-nav { color: var(--white) !important; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    margin: 6px 0;
    transition: all var(--transition);
}
.navbar.scrolled .nav-toggle span { background: var(--text); }

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('hero-bg.png') center/cover no-repeat;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(43,74,43,0.85) 0%,
        rgba(43,74,43,0.6) 40%,
        rgba(184,134,11,0.4) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-logo { height: 100px; margin: 0 auto 20px; }

.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--gold-pale);
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 12px;
    letter-spacing: 0.03em;
}

.hero-location {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 35px;
}

.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- Sections --- */
.section { padding: 80px 0; }
.section-dark { background: var(--off-white); }

.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 {
    font-size: 2.2rem;
    color: var(--green-dark);
    margin-bottom: 12px;
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 16px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- About --- */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.about-text p { margin-bottom: 16px; color: var(--text-light); font-size: 1.05rem; }
.about-text strong { color: var(--green-dark); }

.about-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 30px; }

.feature { text-align: center; }
.feature-icon { font-size: 2.2rem; margin-bottom: 10px; }
.feature h3 { font-size: 1.05rem; color: var(--green-dark); margin-bottom: 6px; }
.feature p { font-size: 0.85rem; color: var(--text-light); }

.about-image img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }

/* --- Rooms --- */
.rooms-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

.room-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}
.room-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.room-image { height: 250px; overflow: hidden; }
.room-image img { width: 100%; height: 100%; object-fit: cover; }

.room-details { padding: 28px; }
.room-details h3 {
    font-size: 1.4rem;
    color: var(--green-dark);
    margin-bottom: 12px;
}
.room-details p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 16px; }

.room-amenities {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.room-amenities li {
    background: var(--gold-pale);
    color: var(--green-dark);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 20px;
}

.room-price { margin-bottom: 20px; }
.price {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 700;
}
.per-night { font-size: 0.9rem; color: var(--text-light); margin-left: 6px; }

/* --- Restaurant --- */
.restaurant-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.restaurant-image img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }

.restaurant-text h3 {
    font-size: 1.6rem;
    color: var(--green-dark);
    margin-bottom: 16px;
}
.restaurant-text p { color: var(--text-light); margin-bottom: 14px; font-size: 1.05rem; }

.opening-hours {
    background: var(--off-white);
    padding: 20px;
    border-radius: var(--radius);
    margin: 24px 0;
    border-left: 3px solid var(--gold);
}
.opening-hours h4 {
    font-size: 1rem;
    color: var(--green-dark);
    margin-bottom: 10px;
}
.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 0.95rem;
    color: var(--text-light);
}

/* --- Gallery --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4/3;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* --- Room Category --- */
.rooms-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 700px;
    margin: -20px auto 40px;
}
.room-category-title {
    font-size: 1.3rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 24px;
    margin-top: 50px;
    letter-spacing: 0.04em;
}
.room-category-title:first-of-type { margin-top: 0; }

/* --- Contact --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-card {
    background: var(--off-white);
    padding: 30px;
    border-radius: var(--radius);
    margin-bottom: 24px;
}
.contact-card h3 {
    font-size: 1.4rem;
    color: var(--green-dark);
    margin-bottom: 6px;
}
.contact-manager {
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { color: var(--green-dark); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; }
.contact-item a { color: var(--text); }
.contact-item a:hover { color: var(--gold); }

.map-container { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

/* --- Contact Form --- */
.contact-form-container h3 {
    font-size: 1.4rem;
    color: var(--green-dark);
    margin-bottom: 24px;
}

.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--green-dark);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184,134,11,0.15);
}

.form-group textarea { resize: vertical; }

/* --- Footer --- */
.footer {
    background: var(--green-dark);
    color: rgba(255,255,255,0.8);
    padding: 50px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo { height: 50px; margin-bottom: 14px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.6; }

.footer h4 {
    color: var(--gold-light);
    font-size: 0.95rem;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer-links a:hover { color: var(--gold-light); }

.footer-contact p { font-size: 0.9rem; margin-bottom: 6px; }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--gold-light); }

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 0.82rem;
    opacity: 0.6;
}

/* --- Toast --- */
.toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green-dark);
    color: var(--white);
    padding: 16px 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    transition: bottom 0.5s ease;
    font-size: 0.95rem;
    max-width: 90%;
    text-align: center;
}
.toast.show { bottom: 30px; }

/* --- Responsive --- */
@media (max-width: 992px) {
    .about-grid,
    .restaurant-grid,
    .contact-grid { grid-template-columns: 1fr; }

    .rooms-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }

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

    .about-features { grid-template-columns: repeat(3, 1fr); }

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

@media (max-width: 768px) {
    .hero h1 { font-size: 1.6rem; }
    .hero-logo { height: 70px; }
    .section-header h2 { font-size: 1.8rem; }
    .section { padding: 60px 0; }

    .about-features { grid-template-columns: 1fr; gap: 20px; }

    .nav-toggle { display: block; z-index: 1001; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--green-dark);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        transition: right var(--transition);
        box-shadow: -5px 0 30px rgba(0,0,0,0.3);
    }
    .nav-links.active { right: 0; }
    .nav-links a { color: rgba(255,255,255,0.9) !important; font-size: 1.1rem; padding: 12px 0; }
    .nav-links a:hover { color: var(--gold-light) !important; }

    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.3rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; max-width: 280px; }
    .price { font-size: 1.5rem; }
}
