:root {
    --primary-color: #d4af37;
    --primary-dark: #b8972e;
    --secondary-color: #f5f5f5;
    --text-color: #333333;
    --bg-color: #ffffff;
    --dark-bg: #e6e2d3;
    --transition: all 0.3s ease;
    --light-bg: #f9f9f9;
    --gold-light: #e8d9a0;
    --gold:#f9c221;
    --accent:#b3863c;
    --bg:#f5f3ed;
    
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.container {
    padding-right: 15px;
    padding-left: 15px;
    width: 100%;
    max-width: 100%;
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

h1.handwritten-title {
    font-size: 2.8rem;
}

h2.section-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h3.card-title {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.section-subtitle {
    color: var(--text-color);
    font-size: 1rem;
}

.handwritten-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    color: var(--text-color);
}

/* Title Wrapper */
.title-wrapper {
    background: rgba(230, 226, 211, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Navbar */
.navbar {
    background-color: var(--dark-bg);
    padding: 1rem 0;
    border-bottom: 1px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.navbar-brand img {
    max-width: 100px;
}

.navbar-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 0.8rem;
    color: var(--text-color);
    font-weight: 300;
    line-height: 1.2;
}

.navbar-toggler {
    margin-left: auto;
    display: block !important;
    padding: 0.25rem 0.5rem;
    border: 2px solid var(--primary-color);
    background-color: var(--primary-color) !important;
}

.navbar-toggler-icon {
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 400;
    font-size: 1rem;
    padding: 0.75rem 1rem !important;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color) !important;
}
.nav-item:hover{
    border: 1px solid var(--primary-color);
}

.navbar.scrolled {
    background-color: rgba(230, 226, 211, 0.95);
}

/* Buttons */
.btn-hero {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 8px;
    border: none;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-hero:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-hero:active {
    transform: scale(0.95);
}

.btn-outline-hero {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-outline-hero:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.btn-custom {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 500;
}

/* Sections */
.section-padding {
    padding: 3rem 0;
    background: var(--bg-color);
    transition: background 0.5s ease;
}

/* Header Section */
.header-section {
    background-color: var(--bg-color);
    padding: 0rem 0;
    position: relative;
}

/* Hero Slider */
.hero .carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero .carousel-item img {
    height: 350px;
    object-fit: cover;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
    width: 15%;
    opacity: 0.8;
    z-index: 2;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 30px;
    height: 30px;
}

.hero .carousel-caption {
    background: rgba(0,0,0,0.0);
    padding: 1rem;
    border-radius: 8px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    transform: translateY(-30%);
    z-index: 2;
}

.hero .carousel-caption h2 {
    font-size: 1.8rem;
}

.hero .carousel-caption p {
    font-size: 1rem;
}

/* Amenity Cards */
.amenity-card {
    background-color: var(--light-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.amenity-card img {
    height: 250px;
}

.card-body {
    padding: 1.5rem;
}

/* Ensure consistent padding for all card bodies */
.card-body,
.reservation-container,
.google-reviews-container {
    padding-left: 1rem;
    padding-right: 1rem;
}

.card-text {
    color: var(--text-color);
    font-size: 0.9rem;
}

/* About Section */
.about-header {
    padding-left: 1rem;
    padding-right: 1rem;
}

#about .row {
    align-items: center;
}

.about-text {
    padding: 2rem;
}

/* Contact Section */
.reservation-container {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.reservation-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.phone-btn {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.phone-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.reservation-text {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.service-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-button {
    background-color: var(--dark-bg);
    color: var(--text-color);
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.service-button i {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.service-button p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--text-color);
}

.service-button:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.service-button:hover i,
.service-button:hover p {
    color: var(--secondary-color);
}

.service-button:active {
    transform: scale(0.95);
}

/* Footer */
footer {
    background-color: var(--dark-bg);
}

.social-links a {
    background: rgba(245, 245, 245, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--primary-color);
}

.footer-links {
    color: var(--text-color);
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer-links i {
    color: var(--text-color);
}

/* Back to Top */
.back-to-top {
    background: var(--primary-color);
    color: var(--secondary-color);
    position: fixed;
    bottom: 30px;
    left: 30px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    opacity: 1;
    visibility: visible;
    z-index: 1000;
}

.back-to-top:hover {
    background: var(--primary-dark);
}

/* Google Reviews Styles */
.google-reviews-container {
    min-height: 150px;
    padding: 20px;
}

.google-review {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.google-review:last-child {
    border-bottom: none;
}

.google-review-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.google-review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 1rem;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-weight: bold;
    font-size: 1.2rem;
}

.google-review-name {
    font-weight: 600;
    font-size: 1rem;
    color: #1a0dab;
    text-decoration: none;
}

.google-review-name:hover {
    text-decoration: underline;
}

.google-review-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.google-review-stars {
    color: #f4c20d;
    font-size: xx-large;
}

.google-review-text {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Map Section */
.map-section {
    padding: 2rem 0;
    background: var(--light-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 450px;
}

.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    width: 100%;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: 0;
}

/* Modal */
.modal-content {
    width: 95%;
}

.close {
    font-size: 30px;
    top: 15px;
    right: 15px;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .navbar-nav {
        text-align: center;
    }

    .navbar-brand img {
        max-width: 80px;
    }

    .navbar {
        padding: 0 15px;
    }
    /* Ensure the collapsed menu appears properly */
    .navbar-collapse {
        background-color: var(--dark-bg);
        padding: 1rem;
        border-radius: 0 0 8px 8px;
    }

    .navbar-brand img {
        max-width: 60px;
        height: auto;
    }

    .about-text {
        padding: 1.5rem;
    }

    .about-text p {
        font-size: 0.9rem;
    }

    .navbar-toggler {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

@media (max-width: 767.98px) {
    .navbar-brand img {
        max-width: 70px;
    }

    h1.handwritten-title {
        font-size: 2rem;
    }

    h2.section-title {
        font-size: 1.8rem;
    }

    .section-padding {
        padding: 2rem 0;
    }

    .hero .carousel-item img {
        height: 300px;
    }

    .hero .carousel-caption h2 {
        font-size: 1.5rem;
    }

    .hero .carousel-caption p {
        font-size: 0.9rem;
    }

    .amenity-card img {
        height: 200px;
    }

    .service-buttons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        justify-items: center;
    }

    .service-button {
        width: 80px;
        height: 80px;
    }

    .service-button i {
        font-size: 1.2rem;
    }

    .service-button p {
        font-size: 0.8rem;
    }

    .map-container iframe {
        height: 300px;
    }

    .card-body,
    .reservation-container,
    .google-reviews-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand img {
        max-width: 60px;
    }

    .navbar {
        padding: 0.25rem 0;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2.section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .hero .carousel-item img {
        height: 250px;
    }

    .hero .carousel-caption {
        padding: 0.75rem;
    }

    .hero .carousel-caption h2 {
        font-size: 1.2rem;
    }

    .hero .carousel-caption p {
        font-size: 0.8rem;
    }

    .btn-hero {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }

    .amenity-card img {
        height: 180px;
    }

    .card-body {
        padding: 1rem;
    }

    .reservation-container {
        padding: 1rem;
    }

    .service-button {
        width: 70px;
        height: 70px;
    }

    .service-button i {
        font-size: 1rem;
    }

    .service-button p {
        font-size: 0.75rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .map-container iframe {
        height: 250px;
    }

    .about-header {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .about-text {
        padding: 1rem;
    }

    .about-text p {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .card-body,
    .reservation-container,
    .google-reviews-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Mobile View Fixes */

/* Fix for the navbar and hidden login in top right */
@media (max-width: 991.98px) {
    .navbar {
        width: 100%;
        padding: 0.5rem 15px;
    }
    
    .navbar-brand {
        margin-right: 0;
    }
    
    /* Hide any unwanted elements in the top right */
    .navbar .navbar-nav .nav-item:last-child {
        display: none !important;
    }
    
    /* Ensure navbar toggle is visible and positioned correctly */
    .navbar-toggler {
        margin-left: auto;
        margin-right: 0;
        padding: 0.25rem 0.5rem;
        display: block !important;
    }
    
    /* Fix for container width in mobile view */
    .container {
        width: 100%;
        max-width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
        overflow-x: hidden;
    }
    
    /* Prevent horizontal scrolling */
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    /* Ensure content fits within screen */
    .row {
        margin-right: 0;
        margin-left: 0;
    }
    
    /* Adjust columns for better mobile view */
    [class*="col-"] {
        padding-right: 10px;
        padding-left: 10px;
    }
}

/* Smaller screens adjustments */
@media (max-width: 576px) {
    /* Improve responsiveness for very small screens */
    html, body {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    /* Adjust content sizing for smaller screens */
    .section-padding {
        padding: 1.5rem 0;
    }
    
    /* Ensure images don't overflow */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Better spacing for amenity cards */
    .amenity-card {
        margin-bottom: 1.5rem;
    }
    
    /* Make service buttons more compact but still usable */
    .service-buttons {
        gap: 0.5rem;
    }
    
    /* Ensure footer stays at bottom and doesn't overflow */
    footer {
        width: 100%;
        padding: 1rem 0;
    }
    
    /* Fix for back to top button to not overlap content */
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        left: 20px;
    }
    
    /* Ensure consistent padding throughout */
    .card-body,
    .reservation-container,
    .google-reviews-container,
    .about-header,
    .about-text {
        padding: 0.75rem;
    }
}

/* Prevent zoom issues */
@media (max-width: 767.98px) {
    /* Adjust viewport settings */
    @viewport {
        width: device-width;
        zoom: 1.0;
    }
    
    /* Ensure content sizing is appropriate */
    .hero .carousel-item img {
        height: 250px;
        width: 100%;
        object-fit: cover;
    }
    
    /* Fix section dimensions */
    .section-padding {
        width: 100%;
    }
    
    /* Ensure proper alignment */
    .text-center-mobile {
        text-align: center !important;
    }
    
    /* Fix alignment issues when zooming */
    .row > * {
        flex-shrink: 0;
        width: 100%;
        max-width: 100%;
    }
}












/* GSAP */
