:root {
  /* Define colors as CSS variables for easier management */
  --color-primary-dark: #1f1a17; /* Deep, rich dark brown/black, like oud wood or dark coffee */
  --color-secondary-dark: #3a2e2a; /* A slightly lighter, warm dark for cards and sections */
  --color-text-light: #f4e8d8; /* Warm off-white, like parchment or desert sand */
  --color-text-muted: #c7b8a8; /* Muted, aged gold/beige for secondary text */
  --color-accent-gold: #c2a77a; /* Rich, elegant gold accent */
  --color-accent-gold-hover: #e0cd9d; /* Lighter gold for hover states */
  --color-shadow-deep: rgba(0, 0, 0, 0.8); /* Deeper, more substantial shadow */
  --color-border-ornate: #8b7156; /* A strong, contrasting border color, like aged brass */
}

/* --- Base Styles --- */
body {
  background-color: var(--color-primary-dark);
  color: var(--color-text-light);
  font-family: "Inter", sans-serif; /* Changed to Inter for body text */
  margin: 0;
  line-height: 1.8; /* Increased line height for a more relaxed, luxurious feel */
  scroll-behavior: smooth;
}

/* --- Global Section Title Styles --- */
.title-text {
  text-align: center;
  margin-bottom: 80px; /* More generous space below titles */
  position: relative; /* For decorative elements */
}

.title-text h1 {
  color: var(--color-accent-gold); /* Gold for prominent titles */
  font-family: "Montserrat", sans-serif; /* Changed to Montserrat for titles */
  font-size: 4rem; /* Larger and more impactful */
  font-weight: 700; /* Not too heavy, allowing the ornate font to shine */
  letter-spacing: 4px; /* Increased letter spacing for grandeur */
  text-transform: capitalize; /* More elegant than uppercase */
  margin: 0;
  position: relative;
  display: inline-block; /* To contain pseudo-elements */
}

/* Decorative lines above and below titles */
.title-text h1::before,
.title-text h1::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100px; /* Length of the decorative line */
  height: 2px;
  background-color: var(--color-border-ornate);
}

.title-text h1::before {
  top: -20px; /* Position above the title */
}

.title-text h1::after {
  bottom: -20px; /* Position below the title */
}

/* --- Banner Section --- */
#banner {
  position: relative;
  height: 100vh;
  background: linear-gradient(
      180deg,
      rgba(31, 26, 23, 0.9),
      /* Darker overlay for better text contrast */ rgba(31, 26, 23, 0.8)
    ),
    url("images/saloon22.jpg") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 60px; /* More generous padding */
  margin-top: 2rem;
  margin-bottom: 15rem;
}

.logo {
  width: 300px; /* Larger, more prominent logo */
  filter: drop-shadow(
    0 0 15px var(--color-accent-gold)
  ); /* Stronger, golden shadow */
  margin-bottom: 50px; /* More space below logo */
  border: 3px solid var(--color-border-ornate); /* Subtle border for elegance */
  border-radius: 50%; /* Make it circular if it's an emblem */
  margin-top: 10rem;
}

.banner-text h1 {
  font-family: "Montserrat", sans-serif; /* Consistent Montserrat for main heading */
  font-weight: 700;
  font-size: 5rem; /* Grand and inviting */
  margin-bottom: 25px;
  color: var(--color-accent-gold);
  letter-spacing: 5px; /* Increased letter spacing */
  text-transform: capitalize;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* Subtle text shadow for depth */
}

.banner-text p {
  font-family: "Inter", sans-serif; /* Consistent Inter for banner text */
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 50px;
  color: var(--color-text-muted);
  letter-spacing: 1.5px;
  max-width: 900px;
  text-align: center; /* Centers the text inside the paragraph */
  margin-left: auto; /* Centers the paragraph block itself if it has a max-width */
  margin-right: auto; /* Centers the paragraph block itself if it has a max-width */
}

.banner-btn a {
  background: transparent;
  border: 3px solid var(--color-accent-gold); /* Thicker, more substantial border */
  color: var(--color-accent-gold);
  padding: 18px 50px; /* Larger buttons */
  margin: 0 25px; /* More space between buttons */
  border-radius: 60px; /* More rounded, softer edges */
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s ease;
  display: inline-block;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.banner-btn a:hover {
  background: var(--color-accent-gold);
  color: var(--color-primary-dark); /* Dark text on gold hover */
  box-shadow: 0 0 25px var(--color-accent-gold-hover); /* Stronger, golden hover shadow */
  transform: translateY(-5px); /* More pronounced lift on hover */
}

/* --- Side Navigation --- */
#sideNav {
  position: fixed;
  right: -305px; /* Slightly wider for more content */
  top: 0;
  width: 300px;
  height: 100vh;
  background-color: var(--color-secondary-dark); /* Consistent dark secondary */
  box-shadow: -6px 0 20px var(--color-shadow-deep); /* More pronounced, deeper shadow */
  transition: right 0.5s ease-in-out;
  z-index: 1000;
  border-left: 2px solid var(--color-border-ornate); /* Subtle ornate border */
}

#sideNav nav ul {
  list-style: none;
  padding: 100px 0 0 0; /* More top padding */
  margin: 0;
}

#sideNav nav ul li {
  margin: 30px 0; /* More vertical space */
}

#sideNav nav ul li a {
  color: var(--color-text-light);
  text-decoration: none;
  font-family: "Inter", sans-serif; /* Consistent Inter for navigation */
  font-size: 1.35rem; /* Larger font size */
  font-weight: 500;
  padding: 15px 40px; /* Increased padding */
  display: block;
  transition: all 0.3s ease-out;
  border-left: 4px solid transparent; /* For hover effect */
}

#sideNav nav ul li a:hover {
  background: var(--color-accent-gold);
  color: var(--color-primary-dark);
  border-radius: 40px 0 0 40px; /* More rounded, sophisticated shape */
  padding-left: 10px; /* More expansion on hover */
  border-left-color: var(--color-primary-dark); /* Solidify border on hover */
}

/* --- Menu Button --- */
#menuBtn {
  position: fixed;
  top: 40px; /* Slightly lower */
  right: 40px; /* Slightly more inward */
  z-index: 1100;
  cursor: pointer;
  background-color: var(--color-secondary-dark);
  border-radius: 50%;
  padding: 10px; /* Padding around the image */
  box-shadow: 0 0 15px var(--color-shadow-deep);
  border: 2px solid var(--color-accent-gold); /* Golden border */
}

#menuBtn img {
  width: 20px; /* Larger icon */
  filter: drop-shadow(0 0 6px var(--color-accent-gold));
  transition: transform 0.4s ease, filter 0.4s ease;
}

#menuBtn img:hover {
  transform: rotate(270deg) scale(1.15); /* More pronounced rotation and scale */
  filter: drop-shadow(0 0 10px var(--color-accent-gold-hover));
}

/* --- Features Section --- */
#feature {
  padding: 100px 60px; /* More generous vertical and horizontal padding */
  background-color: var(
    --color-secondary-dark
  ); /* Use secondary dark for sections */
}

.feature-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px; /* Increased gap for breathing room */
}

.features {
  flex: 1 1 400px; /* Slightly larger base width */
  max-width: 500px;
  text-align: left;
  color: var(--color-text-muted);
}

.features h1 {
  font-family: "Montserrat", sans-serif; /* Consistent Montserrat for headings */
  font-size: 2.2rem; /* Consistent heading size */
  font-weight: 600;
  color: var(--color-accent-gold);
  margin-bottom: 15px; /* More space below heading */
  text-transform: capitalize;
  letter-spacing: 1px;
}

.features-desc {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px; /* More space between feature items */
}

.feature-icon i {
  font-size: 3.8rem; /* Larger, more impactful icons */
  color: var(--color-accent-gold);
  margin-right: 35px; /* More space for icons */
  min-width: 50px; /* Ensure icon doesn't shrink */
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5); /* Subtle shadow on icons */
}

.feature-text p {
  font-family: "Inter", sans-serif; /* Consistent Inter for feature text */
  font-size: 1.15rem; /* Slightly larger text */
  line-height: 1.8;
  color: var(--color-text-muted);
}

/* Features image */
.features-img {
  flex: 1 1 250px; /* Slightly larger base width */
  display: flex;
  justify-content: center;
  align-items: center;
}

.features-img img {
  max-width: 100%;
  border-radius: 20px; /* More rounded corners */
  box-shadow: 0 10px 40px var(--color-accent-gold) !important; /* More pronounced, golden shadow */
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  border: 4px solid var(--color-border-ornate); /* Stronger ornate border */
}

.features-img img:hover {
  transform: scale(1.05); /* More subtle scale for hover */
  box-shadow: 0 15px 50px var(--color-accent-gold-hover) !important; /* Stronger hover shadow */
}

/* --- Services Section --- */
#service {
  padding: 100px 60px; /* Consistent padding */
  background-color: var(--color-primary-dark); /* Alternating background */
  text-align: center;
}

.service-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px; /* Increased gap */
}

.single-service {
  position: relative;
  flex: 1 1 300px; /* Larger base width for service cards */
  max-width: 380px;
  background-color: var(--color-secondary-dark);
  border-radius: 25px; /* More rounded corners, elegant feel */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6); /* Deeper shadow */
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 2px solid var(--color-border-ornate); /* Subtle ornate border */
}

.single-service:hover {
  transform: translateY(-10px); /* More pronounced lift up on hover */
  box-shadow: 0 20px 50px var(--color-accent-gold-hover); /* Stronger, lifted shadow */
}

.single-service img {
  width: 100%;
  height: 200px; /* Fixed height for image consistency */
  object-fit: cover;
  display: block;
  border-bottom: 5px solid var(--color-accent-gold); /* Thicker, golden border */
  border-radius: 25px 25px 0 0;
}

.service-desc {
  padding: 30px 25px; /* Increased padding */
  color: var(--color-text-light);
}

.service-desc h3 {
  margin: 0 0 20px; /* More space below heading */
  font-weight: 700;
  color: var(--color-accent-gold);
  font-family: "Montserrat", sans-serif; /* Montserrat for service titles */
  font-size: 1.6rem; /* Slightly larger font */
  text-transform: capitalize;
  letter-spacing: 1px;
}
.service-desc p {
  font-family: "Inter", sans-serif; /* Inter for service description text */
  font-size: 1.05rem; /* Add specific style for service description text */
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* --- Testimonials Section --- */
#testimonial {
  background-color: var(--color-primary-dark); /* Alternating background */
  padding: 100px 60px; /* Consistent padding */
  text-align: center;
}

.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 45px; /* Increased gap */
}

.testimonial-col {
  background-color: var(--color-secondary-dark);
  padding: 40px 35px; /* Increased padding */
  border-radius: 25px; /* More rounded corners */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  max-width: 380px; /* Slightly wider */
  color: var(--color-text-muted);
  font-style: italic;
  transition: all 0.4s ease;
  position: relative;
  border: 2px solid var(--color-border-ornate); /* Subtle ornate border */
  overflow: hidden; /* For the background pattern */
}

/* Pattern background for testimonials */
.testimonial-col::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    circle,
    rgba(194, 167, 122, 0.05) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
  opacity: 0.7; /* Subtle pattern */
  z-index: 0;
}

.testimonial-col:hover {
  box-shadow: 0 15px 40px var(--color-accent-gold-hover); /* Stronger hover shadow */
  transform: translateY(-8px); /* More pronounced lift */
}

/* Add a quote icon for testimonials */
.testimonial-col::after {
  content: "\201D"; /* Right double quotation mark */
  font-family: serif; /* Ensure it's a clear quote */
  font-size: 8rem; /* Very large quote */
  color: var(--color-accent-gold);
  position: absolute;
  bottom: -20px; /* Position it at the bottom */
  right: 15px;
  opacity: 0.1; /* Very subtle opacity */
  z-index: 0;
}

.testimonial-col p {
  position: relative;
  z-index: 1;
  font-family: "Inter", sans-serif; /* Inter for testimonial text */
  font-size: 1.15rem;
  margin-bottom: 25px;
}

.user {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.user img {
  width: 80px; /* Larger user image */
  height: 80px;
  border-radius: 50%;
  margin-right: 25px;
  border: 4px solid var(--color-accent-gold); /* Thicker, golden border */
  object-fit: cover;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Subtle shadow on image */
}

.user-info h4 {
  margin: 0;
  font-weight: 700;
  color: var(--color-accent-gold);
  font-family: "Montserrat", sans-serif; /* Montserrat for names */
  font-size: 1.4rem; /* Larger name */
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

.user-info small {
  font-family: "Inter", sans-serif; /* Inter for role */
  font-size: 1.05rem; /* Slightly larger role */
  color: var(--color-text-muted);
}

/* --- Footer Section --- */
.footer {
  background-color: var(--color-primary-dark);
  text-align: left;
  color: var(--color-text-light);
  padding: 80px 60px 50px; /* Adjust padding for visual balance */
  font-family: "Inter", sans-serif; /* Inter for footer text */
}

/* Consistent title style for footer */
.footer .title-text h1 {
  color: var(--color-accent-gold);
  font-size: 3.5rem; /* Slightly smaller than main section titles but still impactful */
  font-weight: 700;
  margin-bottom: 70px;
  margin-top: 0;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1300px; /* Wider container */
  margin: 0 auto;
  gap: 70px; /* More gap for better separation */
}

.footer-info {
  flex: 1 1 400px; /* Slightly larger base */
  margin-bottom: 0;
}

.footer-info h2 {
  color: var(--color-accent-gold);
  font-family: "Montserrat", sans-serif; /* Montserrat for footer headings */
  font-size: 2rem; /* Larger heading */
  margin-bottom: 25px; /* More space below heading */
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

.footer-info p {
  margin: 12px 0; /* More space between paragraphs */
  font-size: 1.1rem; /* Slightly larger font */
  color: var(--color-text-muted);
  line-height: 1.7;
}

.footer-info a {
  color: var(--color-accent-gold);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-info a:hover {
  text-decoration: underline;
  color: var(--color-accent-gold-hover);
}

.footer-map {
  flex: 1 1 450px; /* Slightly larger map area */
  margin-bottom: 0;
}

.footer-map iframe {
  border-radius: 20px; /* Consistent rounded corners */
  box-shadow: 0 0 25px var(--color-accent-gold) !important; /* Stronger golden shadow */
  width: 100%;
  height: 300px; /* Slightly taller map */
  border: none;
  border: 3px solid var(--color-border-ornate); /* Ornate border */
}

.social-links {
  text-align: center;
  margin-top: 70px; /* More space above social links */
  padding-top: 40px; /* Add some padding above */
  border-top: 1px solid rgba(194, 167, 122, 0.2); /* Subtle golden separator line */
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 15px; /* More space between icon and text */
  color: var(--color-accent-gold);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
  font-family: "Inter", sans-serif; /* Inter for social links */
  font-size: 2.2rem; /* Larger text for social links */
  margin: 20px 30px; /* Space for individual social link entries */
}

.social-links i {
  font-size: 3.5rem; /* Even bigger icons */
  color: var(--color-accent-gold);
  cursor: pointer;
  vertical-align: middle;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.social-links a:hover i,
.social-links a:hover {
  color: var(--color-accent-gold-hover);
  transform: translateY(-5px); /* More pronounced lift on hover */
}

.social-links p {
  margin-top: 40px; /* More space above copyright */
  font-weight: 400;
  color: var(--color-text-muted); /* Muted copyright text */
  font-size: 1.05rem;
  letter-spacing: 0.5px;
}

/* --- Responsive Typography --- */
@media (max-width: 1200px) {
  .banner-text h1 {
    font-size: 4.5rem;
  }

  #banner {
    position: relative;
    height: 100vh;
    background: linear-gradient(
        180deg,
        rgba(31, 26, 23, 0.9),
        /* Darker overlay for better text contrast */ rgba(31, 26, 23, 0.8)
      ),
      url("images/Backgrund1.jpg") center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 60px; /* More generous padding */
    margin-top: 12rem;
    margin-bottom: 5rem;
  }
  .banner-btn a {
    margin-bottom: 25rem;
  }
}

@media (max-width: 992px) {
  .title-text h1 {
    font-size: 3.5rem;
  }
  .banner-text h1 {
    font-size: 4rem;
  }
  .banner-text p {
    font-size: 1.6rem;
  }
  .logo {
    margin-top: 10rem;
    width: 350px;
  }
  .features,
  .features-img {
    flex: 1 1 48%;
  }
  .single-service {
    flex: 1 1 45%;
  }
  .banner-btn a {
    margin-bottom: 25rem;
  }
}

@media (max-width: 768px) {
  /* Global adjustments for smaller screens */
  #banner,
  #feature,
  #service,
  #testimonial,
  .footer {
    padding: 80px 35px; /* Reduced padding on smaller screens */
  }

  .title-text h1 {
    font-size: 2.8rem;
  }

  /* Banner */
  .banner-text h1 {
    font-size: 3.2rem;
  }
  .banner-text p {
    font-size: 1.4rem;
    margin-bottom: 40px;
  }
  .banner-btn a {
    padding: 14px 40px;
    margin: 0 15px;
    font-size: 1.1rem;
    margin-bottom: 6rem;
  }
  .logo {
    width: 250px;
    margin-bottom: 40px;
    margin-top: 10rem;
  }

  /* Side Nav */
  #sideNav {
    width: 250px;
    right: -250px;
  }
  #sideNav nav ul {
    padding: 70px 0 0 0;
  }
  #sideNav nav ul li {
    margin: 25px 0;
  }
  #sideNav nav ul li a {
    font-size: 1.2rem;
    padding: 12px 30px;
  }

  /* Menu Button */
  #menuBtn {
    top: 30px;
    right: 30px;
    padding: 8px;
  }
  #menuBtn img {
    width: 15px;
  }

  /* Features */
  .feature-box {
    flex-direction: column;
    gap: 40px;
  }
  .features,
  .features-img {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .features h1 {
    font-size: 1.8rem;
  }
  .feature-icon i {
    font-size: 3.2rem;
    margin-right: 25px;
  }

  /* Services */
  .service-box {
    flex-direction: column;
  }
  .single-service {
    flex: 1 1 100%;
    max-width: 100%;
  }

  /* Testimonials */
  .testimonial-row {
    flex-direction: column;
    gap: 30px;
  }
  .testimonial-col {
    max-width: 100%;
    padding: 35px 25px;
  }
  .testimonial-col::after {
    font-size: 6rem;
    right: 10px;
  }
  .user img {
    width: 70px;
    height: 70px;
  }
  .user-info h4 {
    font-size: 1.2rem;
  }
  .user-info small {
    font-size: 1rem;
  }

  /* Footer */
  .footer .title-text h1 {
    font-size: 2.8rem;
    margin-bottom: 50px;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .footer-info,
  .footer-map {
    flex: 1 1 100%;
    min-width: auto;
    text-align: center;
  }
  .footer-map iframe {
    height: 280px;
  }
  .social-links a {
    font-size: 1.8rem;
    margin: 15px 20px;
  }
  .social-links i {
    font-size: 2.8rem;
  }
  .social-links p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .title-text h1 {
    font-size: 2.2rem;
  }

  /* Banner */
  .banner-text h1 {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }
  .banner-text p {
    font-size: 1.2rem;
  }
  .logo {
    width: 250px;
    margin-top: 10rem;
  }
  .banner-btn a {
    padding: 10px 30px;
    margin: 8px;
    font-size: 1rem;
  }

  /* Side Nav */
  #sideNav {
    width: 180px;
    right: -200px;
  }
  #sideNav nav ul li a {
    font-size: 1rem;
    padding: 8px 8px;
  }

  /* Features */
  .features h1 {
    font-size: 1.6rem;
  }
  .feature-icon i {
    font-size: 2.8rem;
    margin-right: 20px;
  }
  .feature-text p {
    font-size: 1rem;
  }

  /* Services */
  .service-desc h3 {
    font-size: 1.4rem;
  }
  .service-desc p {
    font-size: 0.95rem;
  }

  /* Testimonials */
  .testimonial-col p {
    font-size: 1.05rem;
  }
  .user img {
    width: 60px;
    height: 60px;
  }
  .user-info h4 {
    font-size: 1.1rem;
  }

  /* Footer */
  .footer .title-text h1 {
    font-size: 2.2rem;
  }
  .footer-info h2 {
    font-size: 1.6rem;
  }
  .footer-info p {
    font-size: 1rem;
  }
  .social-links a {
    font-size: 1.5rem;
    margin: 10px 15px;
  }
  .social-links i {
    font-size: 2.4rem;
  }
}

/* Global image styles to prevent overflow */
img,
.features-img img,
.single-service img {
  max-width: 100%;
  height: auto;
  display: block;
}
