
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
:root {
    /* Color Palette */
    --primary: #C5A880; /* Sandstone Gold */
    --primary-hover: #B49469;
    --accent: #B85A38; /* Terracotta Accent */
    --bg-dark: #121413; /* Deep Charcoal */
    --bg-card-dark: #1B1E1C;
    --bg-light: #FAF9F6; /* Soft Linen */
    --bg-white: #FFFFFF;
    --text-dark: #1F2421;
    --text-gray: #5A6560;
    --text-light: #FFFFFF;
    --border-color: #E2DFD9;
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.07);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    /* Transitions & Shadows */
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.03);
    --shadow-md: 0 12px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 24px 48px rgba(0,0,0,0.12);
    --border-radius: 12px;
}
/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
}
body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 0.02em;
}
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.section-padding {
    padding: 50px 0;
}
.section-padding-1 {
    padding-top: 180px;
    padding-bottom: 60px;
}
.text-center {
    text-align: center;
}
.section-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    margin: 15px auto 0;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}
/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}
.btn-primary {
    background-color: var(--primary);
    color: var(--bg-dark);
}
.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 168, 128, 0.3);
}
.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--bg-dark);
    border-color: var(--text-light);
    transform: translateY(-2px);
}
.btn-accent {
    background-color: var(--accent);
    color: var(--text-light);
}
.btn-accent:hover {
    background-color: #A3492A;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 90, 56, 0.3);
}
/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 5px 0;
    transition: var(--transition);
      background-color: white;
}
header.scrolled {
    background: rgba(18, 20, 19, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-text {
    color: var(--text-light);
}
.logo-text h1 {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.1;
}
.logo-text span {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--primary);
    display: block;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}
.nav-link {
    color: black;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    
}
/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(18,20,19,0.7) 0%, rgba(18,20,19,0.5) 50%, rgba(18,20,19,0.85) 100%);
    z-index: 1;
}
.hero .container {
    position: relative;
    z-index: 2;
    color: var(--text-light);
    margin-top: 50px;
}
.hero-content {
    max-width: 750px;
     margin-top: 50px;
}
.hero h2 {
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero h2 span {
    font-style: italic;
    color: var(--primary);
}
.hero p {
    font-size: 1.25rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}
.hero-ctas {
    display: flex;
    gap: 15px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}
/* Floating Booking Bar */
.booking-bar {
    position: absolute;
    bottom: -90px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 25px;
    box-shadow: var(--shadow-lg);
    z-index: 10;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.booking-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 20px;
    align-items: end;
}
.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.input-group label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: var(--text-gray);
}
.input-group select, .input-group input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background-color: var(--bg-white);
    color: var(--text-dark);
    outline: none;
    transition: var(--transition);
}
.input-group select:focus, .input-group input:focus {
    border-color: var(--primary);
}
/* Promo / USP Section */
.usp-section {
    padding-top: 140px;
    padding-bottom: 70px;
    background-color: var(--bg-light);
}
.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.usp-card {
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.02);
}
.usp-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(197, 168, 128, 0.2);
}
.usp-icon {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}
.usp-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}
.usp-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}
/* About / Heritage Section */
.about-section {
    background-color: var(--bg-white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}
.about-content h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 25px;
}
.about-content h2 span {
    color: var(--primary);
    font-style: italic;
}
.about-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 1.05rem;
}
.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 35px;
}
.stat-item h4 {
    font-size: 2.2rem;
    color: var(--accent);
    font-weight: 600;
}
.stat-item p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0;
}
.about-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.about-img {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.about-img:hover img {
    transform: scale(1.05);
}
.img-tall {
    grid-row: span 2;
    height: 430px;
}
.img-wide {
    height: 207px;
}
/* Rooms Section */
.rooms-section {
    background-color: var(--bg-light);
}
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.room-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.room-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.room-img-container {
    height: 250px;
    overflow: hidden;
    position: relative;
}
.room-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.room-card:hover .room-img-container img {
    transform: scale(1.08);
}
.room-price {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.1);
}
.room-details {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.room-details h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}
.room-details p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}
.room-amenities {
    display: flex;
    gap: 15px;
    list-style: none;
    margin-bottom: 25px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}
.room-amenities li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-gray);
}
.room-amenities li svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}
.room-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* Event / Marriage Lawn Section */
.event-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}
.event-grid {
    display: grid;
    grid-template-columns: 0.94fr 1.06fr;
    gap: 60px;
    align-items: center;
}
.event-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}
.event-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    font-size: 1.05rem;
}
.event-features {
    list-style: none;
    margin-bottom: 35px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.event-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}
.event-features li svg {
    color: var(--primary);
    width: 20px;
    height: 20px;
}
.event-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.event-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}
/* Restaurant Section */
.restaurant-section {
    background-color: var(--bg-white);
}
.restaurant-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.restaurant-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.restaurant-img {
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 220px;
}
.restaurant-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.restaurant-img-large {
    grid-column: span 2;
    height: 250px;
}
.restaurant-info h2 {
    font-size: 2.5rem;
    margin-bottom: 8px;
}
.restaurant-info .tagline {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}
.restaurant-info p {
    color: var(--text-gray);
    margin-bottom: 30px;
}
.menu-list {
    margin-bottom: 30px;
}
.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 15px;
}
.menu-item h4 {
    font-size: 1.05rem;
    font-weight: 600;
    font-family: var(--font-body);
}
.menu-dots {
    flex-grow: 1;
    border-bottom: 1px dotted var(--border-color);
    margin: 0 10px;
}
.menu-price {
    font-weight: 600;
    color: var(--accent);
}
/* Testimonial Section */
.testimonials-section {
    background-color: var(--bg-light);
}
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.testimonial-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    position: relative;
}
.testimonial-quote {
    color: var(--primary);
    font-size: 3rem;
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: var(--font-heading);
    opacity: 0.15;
    line-height: 1;
}
.stars {
    color: #F1C40F;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}
.stars svg {
    width: 16px;
    height: 16px;
}
.testimonial-text {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 0.98rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
}
.author-info h4 {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
}
.author-info p {
    font-size: 0.8rem;
    color: var(--text-gray);
}
/* Gallery Section */
.gallery-section {
    background-color: var(--bg-white);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 20, 19, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay svg {
    color: var(--text-light);
    width: 32px;
    height: 32px;
    transform: scale(0.8);
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay svg {
    transform: scale(1);
}
/* Contact & Inquiry Section */
.contact-section {
    background-color: var(--bg-light);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
}
.contact-form-container {
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}
.contact-form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}
.form-group.full-width {
    grid-column: span 2;
}
.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
    background-color: var(--bg-light);
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary);
    background-color: var(--bg-white);
}
.contact-info-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.info-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}
.info-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(197, 168, 128, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}
.info-icon svg {
    width: 22px;
    height: 22px;
}
.info-details h4 {
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 5px;
}
.info-details p, .info-details a {
    color: var(--text-gray);
    font-size: 0.95rem;
}
.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 250px;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}
/* Footer Section */
footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}
.footer-brand h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-links-wrapper{
    display:grid;
    grid-template-columns:repeat(2,1fr);
}

.footer-links-list{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links-list li{
    margin-bottom:12px;
}

.footer-links-list a{
    text-decoration:none;
    color:#fff;
    transition:.3s;
}

.footer-links-list a:hover{
    color:var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
}
.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.social-link:hover {
    background-color: var(--primary);
    color: var(--bg-dark);
    transform: translateY(-3px);
}
.social-link svg {
    width: 18px;
    height: 18px;
}
.footer-links h3, .footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--primary);
}
.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links-list a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
}
.footer-links-list a:hover {
    color: var(--primary);
    padding-left: 5px;
}
.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.footer-contact-list li {
    display: flex;
    gap: 12px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
}
.footer-contact-list li svg {
    color: var(--primary);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}
/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}
.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: var(--transition);
}
.floating-btn:hover {
    transform: scale(1.1) rotate(5deg);
}
.floating-btn svg {
    width: 26px;
    height: 26px;
    color: var(--text-light);
}
.floating-whatsapp {
    background-color: #25D366;
}
.floating-call {
    background-color: var(--accent);
}
/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Responsive Styles */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    .booking-bar {
        bottom: -60px;
    }
    .booking-form {
        grid-template-columns: 1fr 1fr;
    }
    .booking-form button {
        grid-column: span 2;
    }
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .rooms-grid, .usp-grid, .testimonials-slider {
        grid-template-columns: 1fr 1fr;
    }
    .event-grid, .restaurant-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .event-image img {
        height: 380px;
    }
}
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--bg-white);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: 0.5s ease-in-out;
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }
    .nav-menu.active {
        right: 0;
    }
    .hero h2 {
        font-size: 2.8rem;
    }
    .rooms-grid, .usp-grid, .testimonials-slider, .footer-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    .contact-form-container {
        padding: 30px 20px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}


.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
    display:flex;
    align-items:center;
}

.hero-slider{
    position:absolute;
    inset:0;
}

.slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:opacity 1.2s ease;
}

.slide.active{
    opacity:1;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}



.hero .container{
    position:relative;
    z-index:2;
}

.hero-content{
    max-width:750px;
    color:#fff;
}

.hero-subtitle{
    color:#C5A880;
    text-transform:uppercase;
    letter-spacing:3px;
    font-weight:600;
}

.hero-content h2{
    font-size:5rem;
    line-height:1.1;
    margin:20px 0;
}

.hero-content h2 span{
    color:#C5A880;
}

.hero-content p{
    font-size:1.1rem;
    line-height:1.9;
    max-width:650px;
    margin-bottom:35px;
}

/* Navigation */

.slider-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    cursor:pointer;
    z-index:5;

    background:rgba(255,255,255,.15);
    backdrop-filter:blur(8px);

    color:#fff;
    font-size:20px;
}

.prev{
    left:30px;
}

.next{
    right:30px;
}

.slider-btn:hover{
    background:#C5A880;
}

/* Dots */

.slider-dots{
    position:absolute;
    bottom:40px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:12px;
    z-index:5;
}

.dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:rgba(255,255,255,.5);
    cursor:pointer;
}

.dot.active{
    background:#C5A880;
}

@media(max-width:768px){

    .hero-content h2{
        font-size:2.8rem;
    }

    .slider-btn{
        display:none;
    }
}


/* ==========================
   TOP BAR
========================== */

.top-bar{
    background:#434949;
    padding:6px 0;
    font-family:Georgia, serif;
}

.top-bar .container{
    width:90%;
    max-width:1400px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* Left Side */

.top-left{
    display:flex;
    align-items:center;
    gap:25px;
}

.top-left a{
    color:#fff;
    text-decoration:none;
    font-size:16px;

    display:flex;
    align-items:center;
    gap:8px;

    transition:.3s;
}

.top-left a:hover{
    opacity:.8;
}

/* Right Side */

.top-right{
    display:flex;
    gap:12px;
}

.top-right a{
    width:32px;
    height:32px;

    border:1px solid rgba(255,255,255,.8);
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    text-decoration:none;

    transition:.3s;
}

.top-right a:hover{
    background:#fff;
    color:#0a8581;
}

/* Mobile */

@media(max-width:768px){

    .top-bar{
        display:none;
    }

}