/* ============================================
   MINIMAL CSS FIXES - PRESERVE EXISTING DESIGN
   Park Hotel & Resorts
   Only fixing alignment, button visibility, and mobile responsiveness
   ============================================ */

/* Fix button text visibility - ensure text is always visible */
.default-btn,
.book-btn,
.btn-bg-one,
.btn-bg-three,
.submit-btn {
    color: #ffffff !important;
    text-decoration: none;
}

.default-btn:hover,
.book-btn:hover,
.btn-bg-one:hover,
.btn-bg-three:hover,
.submit-btn:hover {
    color: #ffffff !important;
}

/* Fix nav button visibility */
.nav-btn .default-btn,
.nav-item-btn .default-btn {
    color: #ffffff !important;
}

/* Ensure all anchor buttons have visible text */
a.default-btn,
a.book-btn,
a.booking-btn {
    color: #ffffff !important;
}

/* Fix carousel controls visibility */
.carousel-control {
    opacity: 0.7;
}

.carousel-control:hover {
    opacity: 1;
}

.carousel-control .glyphicon {
    color: #fff;
}
@media (max-width: 767px) {

  .carousel-control .glyphicon {
    font-size: 18px;   /* smaller icon */
    color: #fff;
    margin-top: 8px;
  }

  .carousel-control {
    width: 35px;       /* smaller control area */
  }

}


/* Fix overflow issues */
body {
    overflow-x: hidden;
}

.container-fluid {
    overflow-x: hidden;
}

/* Ensure images don't overflow containers */
img {
    max-width: 100%;
    height: auto;
}

/* Fix header alignment on small screens */
@media (max-width: 767px) {
    .top-header .row {
        text-align: center;
    }
    
    .header-right ul {
        justify-content: center;
        flex-wrap: wrap;
        padding: 0;
    }
    
    .header-right ul li {
        margin: 5px;
    }
}

/* Fix navbar mobile menu */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #fff;
        padding: 15px;
    }
    
    .nav-item-btn {
        margin-top: 10px;
    }
    
    .nav-btn {
        margin-top: 10px;
    }
}

/* Fix about section alignment on mobile */
@media (max-width: 991px) {
    .about-modern-section .row {
        text-align: center;
    }
    
    .about-content-modern {
        margin-top: 30px;
    }
}

/* Fix resort cards on mobile */
@media (max-width: 767px) {
    .resort-card {
        margin-bottom: 20px;
    }
}

/* Fix room block layout on mobile */
@media (max-width: 991px) {
    .room-block {
        flex-direction: column;
    }
    
    .room-block.reverse {
        flex-direction: column;
    }
    
    .room-img {
        width: 100%;
    }
    
    .room-info {
        width: 100%;
    }
}

/* Fix contact form grid on mobile */
@media (max-width: 575px) {
    .input-grid {
        grid-template-columns: 1fr;
    }
}

/* Fix contact wrapper on mobile */
@media (max-width: 991px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Fix room bottom alignment on mobile */
@media (max-width: 575px) {
    .room-bottom {
        flex-direction: column;
        align-items: stretch;
    }
    
    .room-bottom .btn {
        width: 100%;
        margin-top: 15px;
    }
}

/* Fix booking section on mobile */
@media (max-width: 991px) {
    .booking-wrap {
        flex-direction: column;
    }
    
    .booking-image {
        margin-top: 30px;
    }
}

/* Fix testimonial layout on mobile */
@media (max-width: 991px) {
    .testimonial-layout {
        grid-template-columns: 1fr;
    }
}

/* Fix why choose us section on mobile */
@media (max-width: 991px) {
    .why-exp-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .why-exp-header {
        flex-direction: column;
        text-align: center;
    }
}

/* Fix activities/facilities cards to equal height */
.reservation-widget-content .row {
    display: flex;
    flex-wrap: wrap;
}

.reservation-widget-content .row > [class*='col-'] {
    display: flex;
}

.room-item.reservation-room {
    display: flex;
    flex-direction: column;
    /* height: 100%; */
}

.room-item.reservation-room .content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.room-item.reservation-room .book-btn {
    margin-top: auto;
}

/* Fix gallery grid on mobile */
@media (max-width: 767px) {
    .gallery-area .col-lg-3,
    .gallery-area .col-sm-6 {
        width: 50%;
        float: left;
    }
}

@media (max-width: 480px) {
    .gallery-area .col-lg-3,
    .gallery-area .col-sm-6 {
        width: 100%;
        float: none;
    }
}

/* Fix footer columns on mobile */
@media (max-width: 767px) {
    .footer .col-md-4,
    .footer .col-md-6 {
        margin-bottom: 30px;
    }
}

/* Fix action buttons alignment */
.action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

@media (max-width: 575px) {
    .action-buttons {
        flex-direction: column;
    }
    
    .action-buttons a {
        width: 100%;
        text-align: center;
    }
}

/* Fix booking stats alignment */
.booking-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

@media (max-width: 575px) {
    .booking-stats {
        justify-content: center;
    }
}

/* Fix feature grid on mobile */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

@media (max-width: 575px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Fix banner image height on mobile */
@media (max-width: 767px) {
    .carousel-inner img {
        min-height: 250px;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .carousel-inner img {
        min-height: 100px;
    }
}

/* Fix section padding on mobile */
@media (max-width: 767px) {
    .pt-100 {
        padding-top: 60px;
    }
    
    .pb-70 {
        padding-bottom: 40px;
    }
}

/* Fix font sizes on small screens */
@media (max-width: 575px) {
    .section-title h2 {
        font-size: 28px;
    }
    
    .main-title {
        font-size: 28px;
    }
    
    .contact-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .section-title h2,
    .main-title,
    .contact-title {
        font-size: 24px;
    }
}

/* Fix stream item layout on mobile */
@media (max-width: 575px) {
    .stream-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Ensure proper spacing for mobile */
@media (max-width: 767px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Fix navbar brand size on mobile */
@media (max-width: 575px) {
    .navbar-brand img {
        max-height: 50px;
    }
}

/* Fix dropdown menu on mobile */
@media (max-width: 991px) {
    .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        margin-top: 0;
        background-color: #f8f9fa;
        border: 0;
        box-shadow: none;
    }
}

/* Fix resort overlay for better readability */
.resort-overlay {
    background: rgba(0, 0, 0, 0.6);
}

/* Fix contact form inputs for mobile */
@media (max-width: 575px) {
    .contact-form input,
    .contact-form textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Fix table/carousel responsiveness */
@media (max-width: 767px) {
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Fix button padding for better touch targets on mobile */
@media (max-width: 767px) {
    .default-btn,
    .book-btn,
    .booking-btn,
    .submit-btn {
        padding: 12px 20px;
        min-width: 120px;
    }
}

/* Fix resort card buttons to full width on mobile */
@media (max-width: 575px) {
    .resort-card .default-btn {
        width: 100%;
        display: block;
    }
}

/* Fix services/activities grid on mobile */
@media (max-width: 767px) {
    .services-area-three .col-lg-3,
    .services-area-three .col-md-6 {
        margin-bottom: 20px;
    }
}

/* Ensure experience badge is visible on mobile */
@media (max-width: 575px) {
    .experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 15px;
        display: inline-block;
    }
}

/* Fix resort price display */
.resort-price {
    text-align: center;
}

/* Fix social icons spacing */
.ft_social_order {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Fix marquee on mobile */
@media (max-width: 575px) {
    marquee {
        font-size: 14px;
    }
}

/* Fix header icons alignment */
.header-right ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-right ul li {
    display: inline-flex;
    align-items: center;
}

/* Fix booking action buttons */
@media (max-width: 767px) {
    .booking-actions {
        text-align: center;
    }
}

/* Ensure proper line height for readability */
body {
    line-height: 1.6;
}

/* Fix vertical alignment in flex containers */
.align-items-center {
    align-items: center !important;
}

/* Fix resort card list items */
.resort-card ul {
    text-align: left;
}

/* Fix contact form box on very small screens */
@media (max-width: 480px) {
    .contact-form-box {
        padding: 25px 15px;
    }
}

/* Fix footer address sections */
.address_main {
    display: flex;
    margin-bottom: 15px;
}

.address_left {
    min-width: 30px;
}

/* Ensure buttons don't wrap text awkwardly */
.default-btn,
.book-btn,
.booking-btn,
.submit-btn {
    white-space: nowrap;
}

@media (max-width: 480px) {
    .default-btn,
    .book-btn,
    .booking-btn,
    .submit-btn {
        white-space: normal;
        word-wrap: break-word;
    }
}

/* Fix gallery icon positioning */
.gallery-icon {
    text-decoration: none;
}

/* Fix resort header text alignment */
.resort-header {
    text-align: center;
}

/* Fix room features list */
.room-features {
    list-style: none;
    padding-left: 0;
}

/* Ensure proper spacing in cards */
.reservation-room .content {
    padding: 20px;
}

/* Fix why choose us card alignment */
.why-exp-card {
    margin-bottom: 20px;
}

/* Fix feature items alignment */
.feature-item {
    display: flex;
    align-items: flex-start;
}

/* Fix testimonial focus quote */
.focus-quote {
    line-height: 1.6;
}

/* Ensure booking wrap has proper spacing */
.booking-wrap {
    display: flex;
    align-items: center;
}

/* Fix activity/facility cards minimum height */
@media (min-width: 768px) {
    .reservation-room {
        min-height: 400px;
    }
}

/* Clear floats properly */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Fix any potential z-index issues */
.navbar-area {
    position: relative;
    z-index: 999;
}

.dropdown-menu {
    z-index: 1000;
}

/* Ensure proper box sizing */
* {
    box-sizing: border-box;
}

/* Fix potential image loading issues */
img {
    display: block;
}

/* Fix button cursor */
.default-btn,
.book-btn,
.booking-btn,
.submit-btn,
button {
    cursor: pointer;
}

/* Fix link underlines */
a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}
