/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #000;
  line-height: 1.6;
}

/* Container around the entire nav */
.ultra-nav {
  margin-bottom: 1rem; /* keep or remove if desired */
}

/* The UL that holds the nav items */
.ultra-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center; /* centers the nav horizontally */
  gap: 1rem;               /* spacing between items */
}

/* Each LI in the nav */
.ultra-nav-item {
  /* Add styling if needed */
}

/* The links themselves */
.ultra-nav-link {
  text-decoration: none;
  color: #333;            /* dark gray text is visible on light backgrounds */
  padding: 0.5rem 1rem;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: background-color 0.2s, border-color 0.2s;
  font-weight: 500;       /* slightly bold */
}

/* Hover effect */
.ultra-nav-link:hover {
  background-color: #f0f0f0; /* light grey background on hover */
  border-color: #ccc;
  color: #000;               /* optional: even darker text on hover */
}

/* Active link styling */
.ultra-nav-link.active {
  color: #fff;               /* white text */
  background-color: #d81a60; /* dark hot pink */
  border-color: #d81a60;
}

/* Hero Section */
.ultra-hero {
  background: #000 url('https://ultracamporn.com/images/hero-bg.jpg') no-repeat center center;
  background-size: cover;
  padding: 60px 0;
  color: #000;
}

.ultra-hero .card-body,
.ultra-hero h4,
.ultra-hero p,
.ultra-hero li,
.ultra-hero .card-text {
  color: #000 !important;
}

/* Model Info (Left Column) */
.ultra-model-info {
  background-color: #fff;
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.ultra-model-title {
  margin-bottom: 10px;
  font-size: 1.2em;
  color: #000;
}

.ultra-model-meta ul {
  list-style: none;
  font-size: 0.9em;
  color: #000;
}

.ultra-model-meta ul li {
  margin-bottom: 8px;
  color: #000;
}

/* Main Model Image & Play Button */
.ultra-main-img-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.ultra-main-img {
  width: 100%;
  border-radius: 4px;
  display: block;
}

.ultra-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.85;
}

/* Thumbnail Images */
.ultra-thumb-gallery {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ultra-thumb-item {
  position: relative;
  overflow: hidden;
}

.ultra-thumb-item img {
  width: 100%;
  border-radius: 4px;
  display: block;
}

.ultra-thumb-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 5px;
  text-align: center;
  font-size: 0.9em;
}

/* Customer & Text Blocks */
.ultra-customer-text,
.ultra-text-block-1,
.ultra-text-block-2 {
  background-color: #fff;
  padding: 20px;
  margin: 20px 0;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ultra-client-section {
  padding: 15px;
  background-color: #eee;
  border-radius: 4px;
  margin-bottom: 15px;
}

.ultra-client-title {
  font-size: 1.1em;
  margin-bottom: 10px;
}

.ultra-client-desc p {
  font-size: 0.9em;
}

/* Review Section */
.ultra-review-section {
  background-color: #fff;
  padding: 20px;
  margin: 20px 0;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ultra-review-title {
  font-size: 1.3em;
  margin-bottom: 10px;
}

.ultra-review-text {
  font-size: 0.95em;
  margin-bottom: 10px;
}

.ultra-review-rating {
  font-size: 1em;
  color: #f39c12; /* you may update this if desired */
}

/* Models Grid */
.ultra-model-grid {
  margin: 20px 0;
}

.ultra-grid-item {
  background-color: #fff;
  padding: 10px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.ultra-grid-item:hover {
  transform: translateY(-3px);
}

.ultra-grid-img {
  width: 100%;
  border-radius: 4px;
  display: block;
}

.ultra-grid-text h4 {
  font-size: 1em;
  margin-top: 5px;
}

.ultra-grid-text p {
  font-size: 0.9em;
  margin: 5px 0;
}

.ultra-grid-link h5,
.ultra-grid-link h2 {
  margin: 0;
  font-weight: normal;
}

/* Spacer */
.ultra-spacer {
  height: 20px;
}

/* Footer */
.ultra-footer {
  background-color: #111;
  color: #aaa;
  padding: 20px;
  font-size: 0.9em;
}

.ultra-footer-menu {
  list-style: none;
  display: flex;
  gap: 15px;
  padding: 0;
}

.ultra-footer-menu li a {
  color: #aaa;
  text-decoration: none;
}

/* Modal (Bootstrap can override these, adjust if needed) */
.modal-content {
  border-radius: 4px;
}

.modal-header,
.modal-footer {
  background-color: #222;
  color: #fff;
}

.modal-body {
  text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .ultra-thumb-gallery {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .ultra-grid-item {
    margin-bottom: 15px;
  }
}

/* ------------------------------------------
   Override for .navbar-dark nav links (force dark text)
-------------------------------------------- */
.navbar-dark .navbar-nav .nav-link {
  color: #333 !important;
}
.navbar-dark .navbar-nav .nav-link:hover {
  color: #000 !important;
}
