.featured-browband {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    max-width: 100%;
    margin: 0 auto;
    padding: 60px 20px;
}



.featured-title {
    text-align: center;   /* horizontal center */
    font-size: 2.5rem;
    color: #2c1810;
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    margin-top: 30px;
    position: relative;
}


.featured-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #8b4513, #cd853f);
    border-radius: 2px;
}

.bridle-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.browband-feature-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #000; /* thin black border */
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    position: relative;
}

.browband-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
    border-color: #333; /* slightly darker hover effect */
}

/* IMAGE DIV (instead of <img>) */
.protected-image {
    width: 100%;
    height: 220px;
    background-color: #fff;
    background-size: contain;   /* behaves like object-fit: contain */
    background-repeat: no-repeat;
    background-position: center;
    padding: 10px;
    transition: transform 0.3s ease;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none; /* prevents dragging */
}

.browband-feature-card:hover .protected-image {
    transform: scale(1.05);
}

.browband-feature-card h3 {
    padding: 20px;
    font-size: 1.2rem;
    color: #2c1810;
    font-weight: 400;
    text-align: center;
    background: linear-gradient(135deg, #f8f6f2, #ffffff);
    border-top: 1px solid #e8e6e2;
}

.browband-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b4513, #cd853f, #daa520);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.browband-feature-card:hover::before {
    opacity: 1;
}

@media (max-width: 768px) {
    .featured-browband {
        padding: 40px 15px;
    }
    .featured-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    .bridle-feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    .protected-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .bridle-feature-grid {
        grid-template-columns: 1fr;
    }
    .featured-title {
        font-size: 1.8rem;
    }
}

.fancy-button {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}


/* Modern Fancy Button */
.fancy-button a {
    display: inline-block;
    color: #fff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px; /* smaller rounded corners for modern look */
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 15px;
    letter-spacing: 0.5px;
    background-color: #2c1810; /* matches your card title color */
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-top: 20px;
}

.fancy-button a:hover {
    background-color: #000; /* slightly darker on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

.fancy-button a:active {
    transform: scale(0.97);
}

/* Back Button */
.backbtn {
    margin-top: 20px;
    text-align: center;
}

.backbtn a {
    display: inline-block;
    color: #2c1810;
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 8px;
    border: 1px solid #2c1810;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: #fff;
}

.backbtn a:hover {
    background-color: #2c1810;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

a {
    text-decoration: none;
}


/* Only add positioning — do NOT change size */
.protected-image {
  position: relative; /* Required for watermark overlay */
}

/* Watermark: no size changes, just overlay */
.protected-image::before {
  content: "Star Alliance";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
  font-family: "Consolas", cursive, sans-serif;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  opacity: 0.5;
  pointer-events: none;
  z-index: 10;
}
