﻿/* =========================
    Global Variables & Reset
========================= */
:root {
  --primary-color: #f97a00;
  --primary-dark: #d96400;
  --primary-light: #ff8c1a;
  --secondary-color: #ffc809;
  --accent-color: #ffffff;
  --text-dark: #333;
  --text-light: #666;
  --text-muted: #999;
  --bg-light: #f8f9fa;
  --bg-lighter: #fdfdfd;
  --bg-real: #f1f1f1;
  --border-color: #e1e5eb;
  --border-light: #f1f3f4;
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-llg: 16px;
  --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 5px 25px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
  --size-logo: 10rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  font-size: 16px;
}

body {
  direction: rtl;
  font-family: IRANSans, sans-serif;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-real);
  min-height: 100vh;
}

/* =========================
    Utility Classes
========================= */
.logo {
  width: var(--size-logo);
}

.text-center {
  text-align: center !important;
}
.bg-orange {
  background-color: darkorange;
}
.d-flex {
  display: flex !important;
}

.justify-center {
  justify-content: center !important;
}

.align-center {
  align-items: center !important;
}

.w-100 {
  width: 100% !important;
}

.rounded {
  border-radius: var(--radius-llg) !important;
}

.shadow {
  box-shadow: var(--shadow) !important;
}

/* =========================
    Banner & Overlay
========================= */
.banner {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.banner img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  transition: var(--transition);
}

.banner:hover img {
  transform: scale(1.02);
}

.banner-caption {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--accent-color);
  color: var(--text-dark);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-weight: bold;
  box-shadow: var(--shadow);
}

/* =========================
    Cards & Blog
========================= */
.card,
.blog-card {
  background: var(--accent-color);
  border-radius: var(--radius-llg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.card img,
.blog-card img {
  transition: var(--transition);
  object-fit: cover;
}

.card:hover img,
.blog-card:hover img {
  transform: scale(1.05);
}

.blog-row:hover {
  background-color: #fff9ed;
  transform: translateY(-3px);
}

section h5 {
  position: relative;
  padding-bottom: 6px;
}

section h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35%;
  height: 2px;
  background: var(--primary-color);
}
/* =========================
    Image Utilities
========================= */
.fixed-img {
  height: 220px;
  object-fit: cover;
  transition: var(--transition);
}

.card:hover .fixed-img {
  transform: scale(1.05);
}

/* =========================
    Hotel & Listing Styles
========================= */
.hotel-services ul li:hover {
  color: var(--primary-color);
  transition: var(--transition);
}

.theme-btn {
  background: var(--primary-color);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: bold;
  transition: var(--transition);
}

.theme-btn:hover {
  background: var(--primary-dark);
}

/* Listing Sections */
.listing-title,
.breadcrumb-title {
  font-weight: bold;
  color: var(--text-dark);
}

.breadcrumb-menu {
  color: var(--primary-color);
  font-weight: bold;
}

.room-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-llg);
  padding: 20px;
  background: var(--accent-color);
  transition: var(--transition);
}

.room-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

/* =========================
    Video & Gallery
========================= */
.video-thumbnail {
  position: relative;
  border-radius: var(--radius-llg);
  overflow: hidden;
  background: #ffffff;
  cursor: pointer;
}

.video-thumbnail img {
  width: 100%;
  height: 414px;
  max-height: 25.538rem;
  object-fit: cover;
}

.video-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-icon::before {
  content: "";
  border-left: 20px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

/* =========================
    Animations
========================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* =========================
    Responsive Adjustments
========================= */
@media (max-width: 992px) {
  .fixed-img {
    height: 180px;
  }

  .video-thumbnail img {
    height: 280px;
  }
}

.section-rooms .section-body .card img {
  width: 17.625rem;
  height: 14.625rem;
}

.section-rooms .card-list-info-room {
  height: 9.25rem;
}
@media screen and (max-width: 765px) {
  .section-rooms .section-body .card img {
    width: 100%;
  }

  .section-rooms .card-list-info-room {
    height: auto;
  }
}

footer {
  width: 100%;
  background-image: url(/images/footer-pattern.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .has-html5video .fancybox__content {
    width: 23rem !important;
    height: 40rem !important;
  }
}

@media (max-width: 767px) {
  footer {
    padding-bottom: 4rem;
    background: unset;
  }
}
