﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Arial', sans-serif;
  background: #f5f2ed;
}

/* Slider layout */
.carousel-inner .item {
  display: flex;
  flex-direction: row;
  height: 100vh;
}

.carousel-inner .item img.slide-img {
  flex: 0 0 70%;
  height: 100%;
  object-fit: cover;
}

.carousel-caption.mb-none {
  position: static !important; /* không đè lên ảnh */
  flex: 0 0 30%;
  background: #f5f2ed;
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  text-align: left;
}

.carousel-caption.mb-none h1 {
  font-family: "Georgia", serif;
  font-style: italic;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}

.carousel-caption.mb-none p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #444;
}

.carousel-caption.mb-none .btn {
  background: #333;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .carousel-inner .item {
    flex-direction: column;
  }
  .carousel-inner .item img.slide-img {
    flex: 0 0 50%;
    width: 100%;
    height: 50%;
  }
  .carousel-caption.mb-none {
    flex: 0 0 50%;
    width: 100%;
    padding: 20px;
    text-align: center;
  }
  .carousel-caption.mb-none h1 {
    font-size: 1.5rem;
  }
  .carousel-caption.mb-none p {
    font-size: 0.9rem;
  }
}
