/* ===========================
  ACCOMMODATION (acc-)
  Gold: #D9A84E
  Dark: #1a1a1a
=========================== */

/* Fonts (ensure these are loaded in layout) */
.font-playfair { font-family: 'Playfair Display', serif; }
.letter-spacing-1 { letter-spacing: 1px; }
.text-gold { color: #D9A84E !important; }
.border-gold { border-color: #D9A84E !important; }

.acc-section {
  background: #f9f9f9; /* Slight off-white for contrast */
}

/* Header */
.acc-head__title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.acc-head__desc {
  font-family: 'Inter', sans-serif;
  color: #666;
  font-size: 15px;
  max-width: 600px;
}

/* ===========================
   CARD STYLES
=========================== */
.acc-card {
  width: 100%;
  border-radius: 8px; /* Soft rounding */
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Clean shadow */
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.acc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Image Wrap */
.acc-card__imgWrap {
  position: relative;
  width: 100%;
  height: 400px; /* Increased height */
  overflow: hidden;
}

.acc-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.acc-card:hover .acc-card__img {
  transform: scale(1.05);
}

/* Overlay */
.acc-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6); /* More transparent as requested */
  backdrop-filter: blur(4px);
  padding: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.acc-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 30px; /* Slightly larger */
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.prohibited-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    /* width: 35px;
    height: 35px; */
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #8f3232; /* Red */
    font-size: 16px;
    border: 2px solid #f09b1b;
}

/* Panel (Book Button) */
.acc-card__panel {
  background: #fff;
  padding: 0px;
}

/* Gold Button */
.acc-btn--gold {
  background-color: #D9A84E;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 0px;
  border: none;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}

.acc-btn--gold:hover {
  background-color: #9b6500;
  color: #fff;
  box-shadow: 0 5px 15px rgba(217, 78, 78, 0.4);
}

.h-effect {
    position: relative;
    transition: color 0.3s;
}
.h-effect::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #D9A84E;
    transition: width 0.3s;
}
.h-effect:hover::after {
    width: 100%;
}

/* ===========================
   MODAL STYLES
=========================== */
.acc-modal-tabs {
    /* Sticky top inside modal body if needed, but simple block is fine */
}

/* Custom Tabs */
.nav-tabs .nav-link.acc-modal-tab {
    color: #555;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    border: none;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    background: transparent;
    padding: 10px 15px;
    transition: color 0.2s ease;
}

.nav-tabs .nav-link.acc-modal-tab:hover {
    color: #D9A84E;
}

.nav-tabs .nav-link.acc-modal-tab.active {
    color: #D9A84E;
    border-bottom-color: #D9A84E;
    background: transparent;
}

/* Feature Badge */
.acc-feature-badge {
    display: inline-flex;
    align-items: center;
    background: #f1f1f1;
    color: #333;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #e5e5e5;
}

/* Price Box */
.acc-price-box {
    background-color: #fcfcfc;
}

/* Tariff Table */
.table th {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 768px) {
    .acc-card__imgWrap {
        height: 240px;
    }
    
    .acc-head__title {
        font-size: 28px;
    }
    
    /* Make Modal Tabs Scrollable horizontally on mobile */
    .acc-modal-tabs .nav-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 5px; /* Space for scrollbar */
    }
    
    .acc-modal-tabs .nav-tabs::-webkit-scrollbar {
        height: 4px;
    }
    .acc-modal-tabs .nav-tabs::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 2px;
    }
    
    .modal-dialog {
        margin: 10px; /* Maximize space */
    }
}
