/* Luxury Hotel Styling */
:root {
    --primary-color: #c9a55c; /* Rich gold */
    --secondary-color: #1e293b; /* Deep navy blue */
    --accent-color: #e2c275; /* Light gold */
    --dark-color: #0f172a; /* Almost black */
    --light-color: #f8f5f0; /* Warm white */
    --gray-color: #64748b; /* Slate gray */
    --border-color: #e2d9c2; /* Light gold border */
    --success-color: #34a853;
    --error-color: #ea4335;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --luxury-gradient: linear-gradient(135deg, #c9a55c 0%, #e2c275 100%);
    --luxury-shadow: 0 10px 25px rgba(201, 165, 92, 0.25);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--dark-color);
    background-color: var(--light-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

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

/* Luxury Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--secondary-color);
}

p {
    font-weight: 300;
    color: var(--gray-color);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--luxury-gradient);
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--accent-color);
    border: 2px solid var(--light-color);
}

/* Luxury Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 0;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--luxury-gradient);
    color: white;
    box-shadow: var(--luxury-shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(201, 165, 92, 0.3);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    transition: all 0.8s ease;
    z-index: -1;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary-color);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: -1;
}

.btn-secondary:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--luxury-shadow);
}

.btn-secondary:hover::before {
    width: 100%;
}

.center-btn {
    text-align: center;
    margin-top: 2.5rem;
}

/* Luxury Header and Navigation */
header {
    position: relative;
}

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
}

.navbar.scrolled {
    background-color: rgba(15, 23, 42, 0.95);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.logo a {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-bottom: 5px;
}

.logo a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--luxury-gradient);
}

.nav-links ul {
    display: flex;
    align-items: center;
}

.nav-links ul li {
    margin-left: 2.5rem;
}

.nav-links ul li a {
    color: white;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.nav-links ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-links ul li a:hover::after,
.nav-links ul li a.active::after {
    width: 100%;
}

.btn-book {
    background: var(--luxury-gradient);
    padding: 10px 20px;
    border-radius: 0;
    box-shadow: var(--luxury-shadow);
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: none;
    transition: var(--transition);
    position: relative;
}

.btn-book:hover {
    background: linear-gradient(135deg, #e2c275 0%, #c9a55c 100%);
    color: white;
    transform: translateY(-3px);
}

.fa-bars, .fa-times {
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, rgba(15, 23, 42, 1) 0%, rgba(15, 23, 42, 0) 100%);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInDown 1.2s ease;
    color: var(--luxury-gradient);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    animation: fadeInUp 1.2s ease;
    color: rgba(255, 255, 255, 0.8);
}

/* Page Header */
.page-header {
    background-color: var(--secondary-color);
    padding: 4rem 0 4rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(30, 41, 59, 0.7) 100%);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* Booking Search Form */
.booking-search {
    background-color: white;
    padding: 3rem 0;
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 10;
    margin-top: -50px;
}

.search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    background-color: white;
    padding: 2.5rem;
    border-radius: 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    position: relative;
}

.form-group {
    flex: 1 1 200px;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--secondary-color);
    letter-spacing: 0.5px;
}

.form-group label i {
    color: var(--primary-color);
    margin-right: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    background-color: #fff;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(201, 165, 92, 0.2);
}

.form-group .btn-primary {
    width: 100%;
    margin-top: 1.8rem;
}

/* Gallery Section */
.gallery-grid {
    padding: 4rem 0;
    background-color: var(--light-color);
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .gallery-container {
        grid-template-columns: 1fr;
    }
}

/* Filter Buttons */
.filter-buttons {
    text-align: center;
    margin-bottom: 2rem;
}

.filter-btn {
    background-color: var(--light-color);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    margin: 0 0.5rem 0.5rem 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 0;
    font-family: 'Poppins', sans-serif;
    margin-top: 50px;
}

.filter-btn:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--light-color);
    border-color: var(--primary-color);
}

/* Navigation menu visibility fix */
#menuClose {
    display: none;
}

#navLinks {
    display: block;
}

#menuOpen {
    display: none;
}

@media screen and (max-width: 768px) {
    #menuOpen {
        display: block;
    }
    
    #menuClose {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 1.5rem;
        cursor: pointer;
    }
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 6rem 0 2rem;
    position: relative;
    margin-top: 3rem;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--luxury-gradient);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 1rem;
    color: white;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-section p {
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--luxury-gradient);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.social-links a:hover {
    transform: translateY(-5px);
}

.social-links a:hover::before {
    opacity: 1;
}

.footer-section.links ul li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 15px;
}

.footer-section.links ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.footer-section.links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-block;
}

.footer-section.links ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-section.contact p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-section.contact p i {
    margin-right: 15px;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

.section-title{
    margin-top: 3rem;
    text-align: center;
}

.about-text {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    text-align: center;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--luxury-shadow);
    margin-top: 2rem;
}
.about-image:hover {
    transform: scale(1.05);
    transition: var(--transition);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.member-img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: var(--luxury-shadow);
}
.member-img:hover {
    transform: scale(1.05);
    transition: var(--transition);
}

.achievements {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin-top: 3rem;
}
 .center-btn{
    margin-bottom: 2rem;
 }

 #booking{
    margin-left: 30px;
 }
 .cta-section{
    margin-bottom: -3rem;
 }

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: var(--secondary-color);
        padding: 50px 0;
        z-index: 1001;
        transition: var(--transition);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 2rem;
    }
    
    .nav-links ul li {
        margin: 1rem 0;
    }
    
    .fa-bars, .fa-times {
        display: block;
    }
    
    .fa-times {
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
        margin-top: 2rem;
    }

    #booking{
    margin-left: 0px;
 }
 iframe{
    width: 100%;
    height: 300px;
    border: none;
    margin-top: 2rem;
    margin-bottom: 2rem;}
}
