/* ================= GENERAL ================= */

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

/* ================= NAVBAR ================= */

.custom-navbar {
    width: 100%;
    background: linear-gradient(to right, #ffffff, #f8f5ef);
    padding: 18px 0;
    position: relative;
    z-index: 1000;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ad8b3b;
}

/* Desktop Menu */

.menu-center {
    display: flex;
    align-items: center;
    gap: 25px;
}

.menu-center .nav-link {
    color: #ad8b3b;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

/* Animated Underline */
.menu-center .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #ad8b3b;
    transition: width 0.4s ease;
}

.menu-center .nav-link:hover::after {
    width: 100%;
}

/* Right Section */

.right-section {
    display: flex;
    align-items: center;
}

.right-section .nav-link {
    color: #ad8b3b;
}

/* Book Button */

.btn-book {
    background: #ad8b3b;
    color: #fff;
    padding: 8px 22px;
    border-radius: 0;
    transition: 0.3s;
    border: none;
}

.btn-book:hover {
    background: #8f732f;
    color: #fff;
}

/* ================= HAMBURGER ================= */

.hamburger {
    width: 28px;
    cursor: pointer;
    display: none;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    height: 2px;
    width: 100%;
    background: #ad8b3b;
    transition: 0.3s;
}

/* Animate to X */

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* ================= MOBILE MENU ================= */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background: linear-gradient(to bottom, #ffffff, #f8f5ef);
    transition: 0.4s ease;
    z-index: 1001;
    padding: 40px 25px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-link {
    display: block;
    padding: 15px 0;
    font-size: 18px;
    color: #ad8b3b;
}

.mobile-link:hover {
    color: #8f732f;
}

/* Close Button */

.mobile-close span {
    font-size: 28px;
    color: #ad8b3b;
    cursor: pointer;
}

/* Overlay */

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 1000;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

    .menu-center,
    .right-section {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 768px) {

    .hero-title {
        font-size: 34px;
    }

    .hero-description {
        font-size: 14px;
        padding: 0 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-hero-outline,
    .btn-hero-gold {
        width: 100%;
    }
}
/* ================= HERO SECTION ================= */

/* ================= IMPROVED HERO ================= */

.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -2;
}

/* Gradient overlay for depth */
.hero-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.75)
    );
    height: 100%;
    display: flex;
    align-items: center;
}

/* Content Animation */
.hero-content {
    animation: fadeUp 1.3s ease;
}

/* Decorative Line */
.hero-top-line {
    width: 80px;
    height: 2px;
    background: #ad8b3b;
    margin: 0 auto 20px;
}

/* Subtitle */
.hero-subtitle {
    letter-spacing: 4px;
    font-size: 14px;
    color: #ad8b3b;
    font-weight: 500;
}

/* Main Heading */
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    margin: 25px 0;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.hero-title span {
    color: #ad8b3b;
}

/* Paragraph */
.hero-description {
    max-width: 650px;
    margin: 0 auto;
    font-size: 18px;
    color: #e0e0e0;
    line-height: 1.6;
}

/* Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.btn-hero-outline {
    border: 1px solid #fff;
    color: #fff;
    padding: 12px 30px;
    border-radius: 0;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-hero-outline:hover {
    background: #fff;
    color: #000;
}

.btn-hero-gold {
    background: #ad8b3b;
    color: #fff;
    padding: 12px 30px;
    border-radius: 0;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-hero-gold:hover {
    background: #8f732f;
}

/* Scroll Indicator */
.scroll-indicator {
    margin-top: 60px;
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 40px;
    background: #ad8b3b;
    margin: 0 auto;
    animation: scrollAnim 1.5s infinite;
}

@keyframes scrollAnim {
    0% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
    100% { opacity: 0; transform: translateY(20px); }
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */
@media (max-width: 768px) {

    .hero-title {
        font-size: 34px;
    }

    .hero-description {
        font-size: 14px;
        padding: 0 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-hero-outline,
    .btn-hero-gold {
        width: 100%;
    }
}


/* ================= ELEGANT ABOUT SECTION ================= */

.about-section {
    background: linear-gradient(to bottom, #ffffff, #f9f6f0);
    padding: 120px 0;
    position: relative;
}

/* Image Layer Effect */

.about-image-wrapper {
    position: relative;
}

.about-bg-shape {
    position: absolute;
    width: 85%;
    height: 85%;
    background: #ad8b3b;
    top: 40px;
    left: -30px;
    z-index: 1;
    opacity: 0.08;
}

.about-main-img {
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* Tag */

.section-tag {
    color: #ad8b3b;
    letter-spacing: 4px;
    font-size: 12px;
    font-weight: 600;
}

/* Title */

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    margin: 20px 0 10px;
    line-height: 1.2;
}

.section-title span {
    color: #ad8b3b;
}

/* Decorative Divider */

.section-divider {
    width: 60px;
    height: 2px;
    background: #ad8b3b;
    margin: 20px 0;
}

/* Text */

.section-text {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    max-width: 520px;
}

/* Button already styled earlier */

/* Animation */

.about-content {
    animation: fadeUp 1.2s ease;
}

/* Responsive */

@media (max-width: 991px) {

    .about-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .about-bg-shape {
        display: none;
    }
}

/* ================= LUXURY ROOMS SECTION ================= */

.rooms-section {
    padding: 130px 0;
    background: linear-gradient(to bottom, #ffffff, #f9f6f0);
}

/* Section Header */

.section-header {
    margin-bottom: 70px;
}

.section-tag {
    color: #ad8b3b;
    letter-spacing: 4px;
    font-size: 13px;
    font-weight: 600;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    margin: 20px 0 10px;
}

.section-title span {
    color: #ad8b3b;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: #ad8b3b;
    margin-top: 15px;
}

/* Room Card */

.room-card {
    background: #fff;
    transition: 0.5s ease;
    position: relative;
}

.room-card:hover {
    transform: translateY(-10px);
}

/* Image */

.room-img {
    position: relative;
    overflow: hidden;
}

.room-img img {
    width: 100%;
    transition: 0.6s ease;
}

.room-card:hover img {
    transform: scale(1.08);
}

/* Price Badge */

.price-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(173, 139, 59, 0.95);
    color: #fff;
    padding: 8px 18px;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Content */

.room-content {
    padding: 30px 25px;
    border-bottom: 2px solid transparent;
    transition: 0.4s ease;
}

.room-card:hover .room-content {
    border-bottom: 2px solid #ad8b3b;
}

.room-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 12px;
}

.room-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Elegant Link */

.room-link {
    color: #ad8b3b;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    transition: 0.3s;
}

.room-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 1px;
    background: #ad8b3b;
    transition: 0.3s ease;
}

.room-link:hover::after {
    width: 100%;
}

/* Responsive */

@media (max-width: 992px) {
    .rooms-section {
        padding: 90px 0;
    }
}

@media (max-width: 768px) {

    .section-title {
        font-size: 30px;
    }

    .room-content {
        padding: 20px;
    }
}

/* ================= ULTRA LUXURY AMENITIES ================= */

.amenities-section {
    padding: 140px 0;
    background: linear-gradient(to bottom, #fdfcf9, #f4efe6);
    position: relative;
}

/* Section Header spacing */
.section-header {
    margin-bottom: 80px;
}

/* Card */

.amenity-card {
    text-align: center;
    padding: 50px 30px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(6px);
    transition: 0.4s ease;
    position: relative;
}

.amenity-card:hover {
    transform: translateY(-10px);
}

/* Icon Circle */

.amenity-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border: 1px solid #ad8b3b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
}

.amenity-icon-wrapper i {
    font-size: 28px;
    color: #ad8b3b;
    transition: 0.4s ease;
}

.amenity-card:hover .amenity-icon-wrapper {
    background: #ad8b3b;
}

.amenity-card:hover .amenity-icon-wrapper i {
    color: #fff;
}

/* Title */

.amenity-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 15px;
}

/* Description */

.amenity-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    max-width: 240px;
    margin: 0 auto;
}

/* Responsive */

@media (max-width: 992px) {
    .amenities-section {
        padding: 100px 0;
    }
}

@media (max-width: 768px) {

    .section-title {
        font-size: 30px;
    }

    .amenity-card {
        padding: 40px 20px;
    }
}

/* ================= LIGHT LUXURY BREAK ================= */

.luxury-break-section {
    height: 75vh;
    background: url('../images/parallax.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

/* Light Elegant Overlay */

.luxury-overlay-light {
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.75),
        rgba(0, 0, 0, 0.85)
    );
    display: flex;
    align-items: center;
}

/* Decorative Divider */

.luxury-divider {
    width: 70px;
    height: 2px;
    background: #ad8b3b;
    margin: 0 auto 25px;
}

/* Heading */

.luxury-heading {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    line-height: 1.2;
    color: #ffffff;
}

.luxury-heading span {
    color: #ad8b3b;
}

/* Text */

.luxury-text {
    font-size: 16px;
    margin-top: 15px;
    color: #ffffff;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Button */

.btn-luxury-gold {
    background: #ad8b3b;
    color: #fff;
    padding: 12px 30px;
    border-radius: 0;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-luxury-gold:hover {
    background: #8f732f;
}

/* Responsive */

@media (max-width: 768px) {

    .luxury-heading {
        font-size: 30px;
    }

    .luxury-break-section {
        height: 60vh;
    }
}

/* ================= LUXURY TESTIMONIALS WITH BG IMAGE ================= */

.testimonials-section {
    padding: 150px 0;
    position: relative;
    background: url('../images/parallax.jpg') center/cover no-repeat;
}

/* Light Elegant Overlay */

.testimonials-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.85),
        rgba(255,255,255,0.92)
    );
    z-index: 1;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

/* Slider */

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: auto;
}

/* Glass Card */

.testimonial-card {
    display: none;
    text-align: center;
    padding: 70px 60px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(173,139,59,0.2);
    transition: 0.4s ease;
}

.testimonial-card.active {
    display: block;
    animation: fadeTestimonial 0.6s ease;
}

/* Quote */

.quote-mark {
    font-size: 90px;
    font-family: 'Playfair Display', serif;
    color: #ad8b3b;
    line-height: 1;
    margin-bottom: 25px;
}

/* Text */

.testimonial-card p {
    font-size: 18px;
    line-height: 1.9;
    color: #444;
    font-style: italic;
    margin-bottom: 35px;
}

/* Author */

.testimonial-card h6 {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    margin-bottom: 5px;
}

.testimonial-card span {
    font-size: 12px;
    letter-spacing: 3px;
    color: #ad8b3b;
}

/* Dots */

.testimonial-dots .dot {
    height: 8px;
    width: 8px;
    margin: 0 6px;
    background: #ccc;
    display: inline-block;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.testimonial-dots .dot.active {
    background: #ad8b3b;
}

/* Animation */

@keyframes fadeTestimonial {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */

@media (max-width: 768px) {

    .testimonial-card {
        padding: 40px 25px;
    }

    .testimonial-card p {
        font-size: 15px;
    }
}

/* ================= LUXURY GALLERY ================= */

.gallery-section {
    padding: 140px 0;
    background: #ffffff;
}

.gallery-item {
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    transition: 0.6s ease;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0),
        rgba(0,0,0,0.35)
    );
    opacity: 0;
    transition: 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Responsive */

@media (max-width: 768px) {
    .gallery-section {
        padding: 90px 0;
    }
}

/* ================= LUXURY BOOKING CTA ================= */

.booking-cta-section {
    padding: 150px 0;
    background: linear-gradient(to bottom, #fdfcf9, #f4efe6);
}

.booking-cta-box {
    max-width: 800px;
    margin: auto;
}

.booking-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin: 25px 0 15px;
}

.booking-title span {
    color: #ad8b3b;
}

.booking-text {
    font-size: 17px;
    color: #555;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

/* Buttons */

.booking-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-book-now {
    background: #ad8b3b;
    color: #fff;
    padding: 14px 35px;
    border-radius: 0;
    transition: 0.3s;
}

.btn-book-now:hover {
    background: #8f732f;
}

.btn-contact {
    border: 1px solid #ad8b3b;
    color: #ad8b3b;
    padding: 14px 35px;
    border-radius: 0;
    transition: 0.3s;
}

.btn-contact:hover {
    background: #ad8b3b;
    color: #fff;
}

/* Responsive */

@media (max-width: 768px) {

    .booking-title {
        font-size: 30px;
    }

    .booking-buttons {
        flex-direction: column;
    }

    .btn-book-now,
    .btn-contact {
        width: 100%;
    }
}


/* ================= ULTRA LUXURY FOOTER ================= */

.luxury-footer {
    background: linear-gradient(
        to bottom,
        #1f1c17,
        #151310
    );
    color: #ddd;
    padding-top: 110px;
    font-size: 14px;
}

/* Top Section Spacing */

.footer-top {
    padding-bottom: 70px;
}

/* Logo */

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: #ad8b3b;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

/* Text */

.footer-text {
    color: #aaa;
    line-height: 1.9;
    max-width: 320px;
}

/* Headings */

.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    color: #ad8b3b;
    letter-spacing: 2px;
    margin-bottom: 25px;
    position: relative;
}

/* Small Gold Underline */

.footer-heading::after {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    background: #ad8b3b;
    margin-top: 10px;
}

/* Links */

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
    color: #bbb;
}

/* Hover Effect */

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 1px;
    background: #ad8b3b;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ad8b3b;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Newsletter */

.footer-form {
    display: flex;
    margin-top: 15px;
}

.footer-form input {
    flex: 1;
    padding: 12px;
    border: none;
    outline: none;
    background: #222;
    color: #fff;
    font-size: 13px;
}

.footer-form input::placeholder {
    color: #777;
}

.footer-form button {
    background: #ad8b3b;
    border: none;
    padding: 12px 20px;
    color: #fff;
    font-size: 13px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.footer-form button:hover {
    background: #8f732f;
}

/* Bottom Bar */

.footer-bottom {
    border-top: 1px solid rgba(173,139,59,0.2);
    padding: 30px 0;
    font-size: 13px;
    color: #888;
}

/* Responsive */

@media (max-width: 992px) {
    .luxury-footer {
        padding-top: 80px;
    }
}

@media (max-width: 768px) {

    .footer-form {
        flex-direction: column;
    }

    .footer-form button {
        margin-top: 10px;
        width: 100%;
    }

    .footer-text {
        max-width: 100%;
    }
}