@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #b45309;
    /* Amber 700 */
    --primary-dark: #78350f;
    /* Amber 900 */
    --primary-light: #fffbeb;
    /* Amber 50 */
    --text-dark: #1c1917;
    /* Stone 900 */
    --text-muted: #78716c;
    /* Stone 500 */
    --bg-main: #fafaf9;
    /* Stone 50 */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
}

.font-serif-custom {
    font-family: 'Playfair Display', serif;
}

.announcement-bar {
    background-color: var(--primary-dark);
    color: #fef3c7;
    font-size: 12px;
    padding: 8px 16px;
    text-align: center;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.bar {
    background-color: #fef3c7;
    padding-right: 20px;
    font-size: 12px;
    padding: 8px 16px;
    display: flex;
    justify-content: right;
    gap: 16px;
}

.bar a {
    text-decoration: none;
    color: var(--primary-dark);
    padding-right: 20px;
    font-weight: 600;

}

.bar a:hover {
    color: black;
}

.whatsapp-badge {
    background-color: #16a34a;
    color: white;
    padding: 2px 10px;
    border-radius: 9999px;
    font-size: 10px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Header & Navigation */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #fde68a;
}

.nav-container {
    max-width: 1280px;
    margin: 0 100px;
    padding: 0 4px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background-color: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fef3c7;
    font-size: 20px;
    box-shadow: 0 4px 6px rgba(120, 53, 15, 0.2);
}

.logo-text p {
    display: block;
    font-size: 30px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: #1C4882;
    line-height: 1.1;
}

.logo-text span {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    font-weight: 600;

}

.nav-links {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s;
}


.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Mobile Nav Toggle (hamburger) */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 12px;
}

.nav-toggle:hover {
    background: #fef3c7;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--primary-dark);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Overlay behind mobile menu */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(28, 25, 23, 0.5);
    z-index: 40;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

.btn-phone {
    background-color: #fef3c7;
    color: #451a03;
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
    border: 1px solid #fcd34d;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(180, 83, 9, 0.2);
    transition: background 0.2s;
    border: none;
    cursor: pointer;
    justify-content: center;
}

.btn-primary:hover {
    background-color: #92400e;
}

/* Hero Section */
.hero {
    position: relative;
    background-color: #1c1917;
    color: white;
    padding: 120px 24px;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.45;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0c0a09, rgba(28, 25, 23, 0.4));
}

.hero-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.badge {
    background: rgba(245, 158, 11, 0.2);
    color: #fde68a;
    border: 1px solid rgba(245, 158, 11, 0.4);
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero h1 {
    font-size: 48px;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    line-height: 1.2;
}

.hero h1 span {
    color: #fcd34d;
}

.hero p {
    color: #d6d3d1;
    font-size: 16px;
    max-width: 700px;
}

/* Search Box Widget */
.search-box {
    background: white;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: 800px;
    margin-top: 24px;
    border: 1px solid #fde68a;
}

.search-field {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 8px 16px;
    background: #fffbeb;
    border: 1px solid #e7e5e4;
    border-radius: 12px;
    gap: 12px;
}

.search-field i {
    color: var(--primary-color);
}

.search-field select,
.search-field input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
}

/* Sections & Layouts */
.section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 24px 80px 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    z-index: 1;

}

.section-header span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-header h2 {
    font-size: 36px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Grid Cards */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #fde68a;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-4px);
}

.card-img {
    height: 220px;
    position: relative;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-dark);
    color: #fef3c7;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 600;
}

.card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-title-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-title-price h3 {
    font-size: 20px;
    font-family: 'Playfair Display', serif;
}

.price {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 18px;
}

.card p {
    color: var(--text-muted);
    font-size: 14px;
}

.card-footer {
    padding: 24px 24px 24px 24px;
}

.card-book {
    padding: 24px 24px 24px 0px;
    justify-content: center;

}


/* Forms & Inputs */
.form-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #fde68a;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #d6d3d1;
    background: #fffbeb;
    outline: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
}

/* Footer */
footer {
    background-color: #1c1917;
    color: #a8a29e;
    padding: 5px 24px 7px 14px;
    border-top: 1px solid #292524;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    box-shadow: 0 0 15px #d4af37;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-coordinates: repeat(auto-fit, minmax(250px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    color: white;
    font-size: 16px;
    padding-bottom: 5px;
    font-family: 'Playfair Display', serif;
    padding-left: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding-left: 20px;

}

.footer-col ul a {
    color: #a8a29e;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: #f59e0b;
}

.footer-col p {
    color: #a8a29e;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s;
}

.footer-col p a {
    color: #a8a29e;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s;
}

.footer-col p a:hover {
    color: #f59e0b;
}

.footer-bottom {
    display: block;
    max-width: 1280px;
    margin: 10px auto;
    border-top: 1px solid #292524;
    text-align: center;
    font-size: 12px;
    color: #78716c;
}

/* Utilities */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 16px;
}

.social-icon {
    height: 100px;
    padding: 20px;
    margin-top: 8px;
    width: 100px;
}

.whatsapp-logo {
    position: fixed;
    top: 650px;
    right: 50px;
    z-index: 9999;
}

.response {
    font-size: 28px;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    margin-top: 20px;
}

.response-grid {
    display: flex;
    flex-wrap: nowrap;
    /* Keeps them in a single row for your carousel slider */
    align-items: center;
    padding: 20px 10px;
    margin: 20px auto;
    gap: 20px;
    overflow-x: auto;
    /* Allows sliding if items exceed screen bounds */
}

.response-grid div {
    /* Removed strict fixed width/height so it scales responsively */
    max-width: 300px;
    width: 100%;
}

.review-card {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    min-height: 250px;
    /* Ensures a comfortable reading box size */
}

.review-card i.fa-quote-left {
    position: absolute;
    right: 15px;
    bottom: 15px;
    font-size: 80px;
    color: rgba(0, 0, 0, 0.03);
    pointer-events: none;
}

.response-bubble {
    background-color: #fff6d6;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #fcd34d;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s;
    font-style: italic;
    color: var(--primary-dark);

    /* Forces every card to have the exact same size */
    width: 300px;
    height: 280px;
    flex: 0 0 auto;
    /* Prevents flexbox from shrinking or growing the cards */
    overflow: hidden;
    /* Hides any text that overflows the fixed box */
}

.prev,
.next {
    cursor: pointer;
    padding: 16px;
    color: #888;
    font-weight: bold;
    font-size: 20px;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.prev:hover,
.next:hover {
    color: black;
}

.grid-card-name {
    color: #a8a29e;
    font-style: italic;
    font-size: 15px;
    text-align: right;
    padding-right: 10px;
    margin-top: 15px;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .response {
        font-size: 22px;
    }

    .response-grid {
        padding: 10px;
        margin: 10px;
    }
}

/* ==========================================================================
   RESPONSIVE / MOBILE-FRIENDLY MEDIA QUERIES
   ========================================================================== */

/* Tablet & below (~1024px) */
@media (max-width: 1024px) {
    .section {
        padding: 64px 24px;
    }

    .hero {
        padding: 96px 24px;
    }

    .hero h1 {
        font-size: 40px;
    }
}

/* Tablet / small laptop (~900px) — collapse nav into hamburger */
@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(320px, 80vw);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 4px;
        padding: 96px 24px 24px 24px;
        box-shadow: -10px 0 25px rgba(0, 0, 0, 0.15);
        z-index: 45;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        width: 100%;
        padding: 12px 8px;
        border-bottom: 1px solid #f5f5f4;
        font-size: 16px;
    }

    .nav-cta .btn-phone span {
        display: none;
    }

    .nav-cta .btn-primary {
        padding: 10px 14px;
        font-size: 12px;
    }

    .nav-cta {
        gap: 10px;
    }
}

@media (max-width: 640px) {
    .bar {
        font-size: 11px;
        padding: 8px 12px;
        flex-wrap: wrap;
        gap: 8px;
    }
}

/* Mobile phones (~640px) */
@media (max-width: 640px) {
    .announcement-bar {
        font-size: 11px;
        padding: 8px 12px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .nav-container {
        padding: 0 16px;
        margin: 5px;
        height: fit-content;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
        font-size: 17px;
        border-radius: 12px;
    }

    .logo-text span {
        font-size: 17px;
    }

    .logo-text small {
        font-size: 9px;
    }

    .nav-cta {
        gap: 8px;
    }

    .btn-phone {
        padding: 8px 12px;
        margin-left: 5px;
    }

    .btn-primary {
        padding: 8px 14px;
    }

    /* Hero */
    .hero {
        padding: 64px 16px;
    }

    .hero-content {
        gap: 16px;
    }

    .hero h1 {
        font-size: 30px;
        line-height: 1.3;
    }

    .hero p {
        font-size: 14px;
    }

    .badge {
        font-size: 10px;
        padding: 5px 12px;
    }

    /* Search box stacks vertically on mobile */
    .search-box {
        flex-direction: column;
        padding: 12px;
        border-radius: 14px;
    }

    .search-field {
        padding: 10px 14px;
    }

    /* Sections */
    .section {
        padding: 48px 16px;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    /* Cards collapse to single column */
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card-img {
        height: 180px;
    }

    .card-body {
        padding: 18px;
    }

    .card-title-price h3 {
        font-size: 17px;
    }

    /* Forms */
    .form-card {
        padding: 24px;
        border-radius: 18px;
    }

    /* Footer */
    footer {
        padding: 48px 16px 24px 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 5px;
        margin-bottom: 5px;
    }
}

/* Very small phones (~380px) */
@media (max-width: 380px) {
    .hero h1 {
        font-size: 26px;
    }

    .logo-text small {
        display: none;
    }

    .whatsapp-badge {
        display: none;
    }

    .nav-cta .btn-primary {
        display: none;
    }

    .nav-cta {
        gap: 8px;
    }
}