/**
 * =====================================================
 * SAVORIA RESTAURANT TEMPLATE - MAIN STYLESHEET
 * =====================================================
 *
 * This stylesheet contains all styling for the primary
 * homepage design. It includes:
 * - Global typography and element styles
 * - Navigation and header styles
 * - Hero and section components
 * - Feature cards and menu items
 * - Footer and utility classes
 * - Responsive adjustments
 *
 * Design System:
 * - Primary Color: #D4AF37 (Gold - luxury accent)
 * - Dark Color: #1a1a1a (Deep black for text)
 * - Text Color: #555555 (Readable body text)
 * - Font Heading: Playfair Display (elegant serif)
 * - Font Body: Inter (modern sans-serif)
 *
 * Responsive Breakpoints:
 * - Mobile First: Default styles for all devices
 * - SM: 576px (tablets)
 * - MD: 768px (small laptops)
 * - LG: 992px (desktops)
 * - XL: 1200px (wide screens)
 *
 * Compiled from SCSS source files in assets/scss/
 * Last Updated: 2026
 */

/* =====================================================
   EXTERNAL LIBRARIES & IMPORTS
   ===================================================== */
@import url("https://unpkg.com/aos@2.3.1/dist/aos.css");

/* =====================================================
   GLOBAL ELEMENT STYLES
   ===================================================== */

/* Reset all default margins, padding, and box model */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;  /* Include padding/border in width calculations */
}

/* Root HTML element - base font size and smooth scrolling */
html {
  scroll-behavior: smooth;  /* Smooth scroll behavior for anchor links */
  font-size: 16px;          /* Base size for rem calculations */
}

/* Body - typography and global background */
body {
  font-family: "Inter", sans-serif;  /* Modern, readable body font */
  font-size: 16px;
  line-height: 1.6;                  /* Generous line height for readability */
  color: #555555;                    /* Mid-tone text color for contrast */
  background: #ffffff;               /* Clean white background */
  overflow-x: hidden;                /* Prevent horizontal scrollbar */
}

/* =====================================================
   HEADING HIERARCHY (H1 - H6)
   ===================================================== */

/* Base heading styles */
h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;  /* Elegant serif for headings */
  color: #1a1a1a;                         /* Dark color for maximum contrast */
  line-height: 1.2;                       /* Tight line height for headings */
  margin-bottom: 1.5rem;                  /* Space below headings */
  font-weight: 600;                       /* Semi-bold weight */
}


/* H1 - Page titles with responsive scaling
   Uses clamp() for fluid typography between breakpoints */
h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);  /* Scales between 2.5rem and 4rem */
}

/* H2 - Section titles */
h2 {
  font-size: clamp(2rem, 4vw, 3rem);    /* Scales between 2rem and 3rem */
}

/* H3 - Subsection titles */
h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);  /* Scales between 1.5rem and 2rem */
}

/* H4-H6 - Secondary headings (sans-serif) */
h4 {
  font-size: 1.5rem;
  font-family: "Inter", sans-serif;     /* Use sans-serif for smaller headings */
}

h5 {
  font-size: 1.25rem;
  font-family: "Inter", sans-serif;
}

h6 {
  font-size: 1rem;
  font-family: "Inter", sans-serif;
}

/* =====================================================
   PARAGRAPH & TEXT ELEMENTS
   ===================================================== */

/* Paragraph margins for spacing */
p {
  margin-bottom: 1rem;
}

/* Lead text - larger intro paragraphs with better line height */
.lead {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;  /* Extra generous for readability */
}

/* =====================================================
   LINK STYLING
   ===================================================== */

/* Default link appearance and hover effects */
a {
  text-decoration: none;        /* Remove underlines */
  color: #D4AF37;               /* Primary accent color */
  transition: all 0.3s ease;    /* Smooth color transitions */
}

/* Link hover state - slightly darker gold */
a:hover {
  color: rgb(177.7777777778, 144.8888888889, 38.2222222222);  /* Darkened gold */
}

/* =====================================================
   LIST STYLING
   ===================================================== */

/* Remove default list bullets and numbering */
ul, ol {
  list-style: none;
}

/* =====================================================
   IMAGE & MEDIA
   ===================================================== */

/* Responsive images - never exceed container width */
img {
  max-width: 100%;  /* Scale down if needed */
  height: auto;     /* Maintain aspect ratio */
  display: block;   /* Prevent inline spacing issues */
}

/* =====================================================
   LAYOUT CONTAINERS
   ===================================================== */

/* Main content container - max width constraint with centered alignment */
.container {
  max-width: 1200px;  /* Limit width on large screens */
  margin: 0 auto;     /* Center the container */
  padding: 0 15px;    /* Padding for mobile side margins */
}

/* Default section padding - vertical rhythm */
section {
  padding: 5rem 0;    /* 80px padding top and bottom */
}

/* =====================================================
   UTILITY CLASSES
   ===================================================== */

/* Text alignment utility */
.text-center {
  text-align: center;
}

/* Light background utility for section backgrounds */
.bg-light {
  background-color: #f8f9fa;  /* Off-white background */
}

.bg-dark {
  background-color: #1a1a1a;
  color: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  display: block;
  color: #D4AF37;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.section-description {
  max-width: 600px;
  margin: 0 auto;
  color: #555555;
}

blockquote {
  border-left: 4px solid #D4AF37;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #1a1a1a;
}
blockquote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  color: #555555;
  font-size: 14px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: #D4AF37;
  color: #ffffff;
  border-color: #D4AF37;
}
.btn-primary:hover {
  background: rgb(177.7777777778, 144.8888888889, 38.2222222222);
  border-color: rgb(177.7777777778, 144.8888888889, 38.2222222222);
  color: #ffffff;
}

.btn-secondary {
  background: #333333;
  color: #ffffff;
  border-color: #333333;
}
.btn-secondary:hover {
  background: rgb(76.5, 76.5, 76.5);
  border-color: rgb(76.5, 76.5, 76.5);
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: #D4AF37;
  border-color: #D4AF37;
}
.btn-outline:hover {
  background: #D4AF37;
  color: #ffffff;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 18px;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 14px;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #D4AF37;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-icon:hover {
  background: #D4AF37;
  color: #ffffff;
  transform: scale(1.1);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  padding: 1.5rem 0;
  transition: all 0.3s ease;
  background: transparent;
}
.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}
.navbar.scrolled .logo {
  color: #1a1a1a;
}
.navbar.scrolled .nav-menu li a {
  color: #1a1a1a;
}
.navbar.scrolled .menu-toggle span {
  background: #1a1a1a;
}
.navbar.navbar-light {
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.navbar.navbar-light .logo {
  color: #1a1a1a;
}
.navbar.navbar-light .nav-menu li a {
  color: #1a1a1a;
}
.navbar.navbar-light .nav-menu li a:hover, .navbar.navbar-light .nav-menu li a.active {
  color: #D4AF37;
}
.navbar.navbar-light .menu-toggle span {
  background: #1a1a1a;
}
.navbar .navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}
.navbar .logo .logo-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #D4AF37;
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.5rem;
}
.navbar .nav-menu {
  display: flex;
  gap: 2rem;
  margin: 0;
}
.navbar .nav-menu li {
  list-style: none;
}
.navbar .nav-menu li a {
  color: #ffffff;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}
.navbar .nav-menu li a:hover, .navbar .nav-menu li a.active {
  color: #D4AF37;
}
.navbar .nav-menu li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #D4AF37;
  transition: all 0.3s ease;
}
.navbar .nav-menu li a:hover::after, .navbar .nav-menu li a.active::after {
  width: 100%;
}
.navbar .navbar-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.navbar .menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.navbar .menu-toggle span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  transition: all 0.3s ease;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero .hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}
.hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
}
.hero .hero-content .hero-subtitle {
  display: block;
  color: #D4AF37;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
}
.hero .hero-content .hero-title {
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.hero .hero-content .hero-text {
  font-size: 18px;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero .hero-content .hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero .hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: #ffffff;
  font-size: 14px;
}
.hero .hero-scroll .scroll-line {
  width: 2px;
  height: 40px;
  background: #D4AF37;
  margin: 10px auto 0;
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0%, 100% {
    height: 40px;
    opacity: 1;
  }
  50% {
    height: 20px;
    opacity: 0.5;
  }
}
.page-header {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 80px;
}
.page-header .page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-header .page-header-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}
.page-header .page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
}
.page-header .page-header-content h1 {
  color: #ffffff;
  margin-bottom: 1rem;
}
.page-header .page-header-content p {
  font-size: 18px;
  margin-bottom: 1.5rem;
}
.page-header .breadcrumb {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  font-size: 14px;
}
.page-header .breadcrumb a {
  color: #ffffff;
}
.page-header .breadcrumb a:hover {
  color: #D4AF37;
}
.page-header .breadcrumb span {
  color: rgba(255, 255, 255, 0.7);
}

.features {
  padding: 3rem 0;
}
.features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.features .feature-card {
  text-align: center;
  padding: 3rem 2rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.features .feature-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-10px);
}
.features .feature-card .feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 50%;
  color: #D4AF37;
  font-size: 2rem;
  transition: all 0.3s ease;
}
.features .feature-card:hover .feature-icon {
  background: #D4AF37;
  color: #ffffff;
  transform: scale(1.1);
}
.features .feature-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.features .feature-card p {
  color: #555555;
  margin: 0;
}

.about-section .about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
  align-items: center;
}
.about-section .about-images {
  position: relative;
}
.about-section .about-images .about-image-main {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.about-section .about-images .about-image-main img {
  width: 100%;
}
.about-section .about-images .about-image-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 60%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.about-section .about-images .about-image-float img {
  width: 100%;
}
.about-section .about-images .about-image-float .experience-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #D4AF37;
  color: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}
.about-section .about-images .about-image-float .experience-badge .badge-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  font-family: "Playfair Display", serif;
}
.about-section .about-images .about-image-float .experience-badge .badge-text {
  font-size: 14px;
}
.about-section .about-content h2 {
  margin-bottom: 1.5rem;
}
.about-section .about-content p {
  margin-bottom: 1.5rem;
}
.about-section .about-content .about-features {
  list-style: none;
  margin: 2rem 0;
}
.about-section .about-content .about-features li {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.about-section .about-content .about-features li i {
  color: #D4AF37;
}

.menu-preview .menu-tabs,
.menu-preview .menu-filters,
.menu-section .menu-tabs,
.menu-section .menu-filters {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.menu-preview .menu-tab,
.menu-preview .filter-btn,
.menu-section .menu-tab,
.menu-section .filter-btn {
  padding: 10px 25px;
  border: 2px solid #e0e0e0;
  background: #ffffff;
  color: #1a1a1a;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}
.menu-preview .menu-tab:hover, .menu-preview .menu-tab.active,
.menu-preview .filter-btn:hover,
.menu-preview .filter-btn.active,
.menu-section .menu-tab:hover,
.menu-section .menu-tab.active,
.menu-section .filter-btn:hover,
.menu-section .filter-btn.active {
  background: #D4AF37;
  color: #ffffff;
  border-color: #D4AF37;
}
.menu-preview .menu-grid,
.menu-section .menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.menu-preview .menu-item,
.menu-section .menu-item {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.menu-preview .menu-item:hover,
.menu-section .menu-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
.menu-preview .menu-item .menu-item-image,
.menu-section .menu-item .menu-item-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.menu-preview .menu-item .menu-item-image img,
.menu-section .menu-item .menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.menu-preview .menu-item .menu-item-image .menu-item-overlay,
.menu-section .menu-item .menu-item-image .menu-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}
.menu-preview .menu-item .menu-item-image:hover .menu-item-overlay,
.menu-section .menu-item .menu-item-image:hover .menu-item-overlay {
  opacity: 1;
}
.menu-preview .menu-item .menu-item-image:hover img,
.menu-section .menu-item .menu-item-image:hover img {
  transform: scale(1.1);
}
.menu-preview .menu-item .menu-item-content,
.menu-section .menu-item .menu-item-content {
  padding: 1.5rem;
}
.menu-preview .menu-item .menu-item-content .menu-item-header,
.menu-section .menu-item .menu-item-content .menu-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.menu-preview .menu-item .menu-item-content .menu-item-header h3,
.menu-section .menu-item .menu-item-content .menu-item-header h3 {
  margin: 0;
  font-size: 1.25rem;
}
.menu-preview .menu-item .menu-item-content .menu-item-header .menu-item-price,
.menu-section .menu-item .menu-item-content .menu-item-header .menu-item-price {
  color: #D4AF37;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Playfair Display", serif;
}
.menu-preview .menu-item .menu-item-content p,
.menu-section .menu-item .menu-item-content p {
  color: #555555;
  margin-bottom: 1.5rem;
  font-size: 14px;
}
.menu-preview .menu-item .menu-item-content .menu-item-footer,
.menu-section .menu-item .menu-item-content .menu-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-preview .menu-item .menu-item-content .menu-item-footer .menu-item-category,
.menu-section .menu-item .menu-item-content .menu-item-footer .menu-item-category {
  display: inline-block;
  padding: 4px 12px;
  background: #f8f9fa;
  border-radius: 4px;
  font-size: 14px;
  color: #555555;
}
.menu-preview .menu-list,
.menu-section .menu-list {
  max-width: 800px;
  margin: 0 auto;
}
.menu-preview .menu-list .menu-list-item,
.menu-section .menu-list .menu-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
  border-bottom: 1px solid #e0e0e0;
  gap: 1.5rem;
}
.menu-preview .menu-list .menu-list-item:last-child,
.menu-section .menu-list .menu-list-item:last-child {
  border-bottom: none;
}
.menu-preview .menu-list .menu-list-item .menu-list-content,
.menu-section .menu-list .menu-list-item .menu-list-content {
  flex: 1;
}
.menu-preview .menu-list .menu-list-item .menu-list-content h3,
.menu-section .menu-list .menu-list-item .menu-list-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}
.menu-preview .menu-list .menu-list-item .menu-list-content p,
.menu-section .menu-list .menu-list-item .menu-list-content p {
  color: #555555;
  font-size: 14px;
  margin: 0;
}
.menu-preview .menu-list .menu-list-item .menu-list-price,
.menu-section .menu-list .menu-list-item .menu-list-price {
  color: #D4AF37;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  white-space: nowrap;
}
.menu-preview .menu-category,
.menu-section .menu-category {
  margin-bottom: 5rem;
}
.menu-preview .menu-category .category-title,
.menu-section .menu-category .category-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}
.menu-preview .menu-category .category-title::after,
.menu-section .menu-category .category-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #D4AF37;
}

.stats-section {
  position: relative;
  padding: 5rem 0;
  color: #ffffff;
}
.stats-section .stats-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1920");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.stats-section .stats-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
}
.stats-section .stats-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.stats-section .stat-item {
  text-align: center;
}
.stats-section .stat-item .stat-number {
  font-size: 3rem;
  color: #D4AF37;
  font-weight: 700;
  margin-bottom: 1rem;
}
.stats-section .stat-item .stat-label {
  font-size: 18px;
  color: #ffffff;
}

.testimonials .testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.testimonials .testimonial-card {
  background: #ffffff;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.testimonials .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.testimonials .testimonial-card .testimonial-rating {
  margin-bottom: 1.5rem;
  color: #D4AF37;
}
.testimonials .testimonial-card .testimonial-rating i {
  margin-right: 5px;
}
.testimonials .testimonial-card .testimonial-text {
  font-style: italic;
  color: #1a1a1a;
  margin-bottom: 2rem;
  font-size: 18px;
  line-height: 1.8;
}
.testimonials .testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.testimonials .testimonial-card .testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonials .testimonial-card .testimonial-author h4 {
  margin: 0;
  font-size: 1.1rem;
}
.testimonials .testimonial-card .testimonial-author p {
  margin: 0;
  color: #555555;
  font-size: 14px;
}

.cta-section {
  background: #D4AF37;
  padding: 5rem 0;
}
.cta-section .cta-content {
  text-align: center;
  color: #ffffff;
}
.cta-section .cta-content h2 {
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.cta-section .cta-content p {
  font-size: 18px;
  margin-bottom: 3rem;
}

.team-section .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.team-section .team-member {
  text-align: center;
}
.team-section .team-member .team-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}
.team-section .team-member .team-image img {
  width: 100%;
  transition: all 0.3s ease;
}
.team-section .team-member .team-image .team-social {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transform: translateY(100%);
  transition: all 0.3s ease;
}
.team-section .team-member .team-image .team-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #1a1a1a;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.team-section .team-member .team-image .team-social a:hover {
  background: #D4AF37;
  color: #ffffff;
}
.team-section .team-member .team-image:hover .team-social {
  transform: translateY(0);
}
.team-section .team-member .team-image:hover img {
  transform: scale(1.1);
}
.team-section .team-member h3 {
  margin-bottom: 0.5rem;
}
.team-section .team-member p {
  color: #555555;
  margin: 0;
}

.values-section {
  background: #f8f9fa;
}
.values-section .values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.values-section .value-card {
  text-align: center;
  padding: 3rem;
  background: #ffffff;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.values-section .value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.values-section .value-card i {
  font-size: 3rem;
  color: #D4AF37;
  margin-bottom: 1.5rem;
}
.values-section .value-card h3 {
  margin-bottom: 1rem;
}
.values-section .value-card p {
  margin: 0;
  color: #555555;
}

.gallery-section .gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.gallery-section .gallery-filter {
  padding: 10px 25px;
  border: 2px solid #e0e0e0;
  background: #ffffff;
  color: #1a1a1a;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}
.gallery-section .gallery-filter:hover, .gallery-section .gallery-filter.active {
  background: #D4AF37;
  color: #ffffff;
  border-color: #D4AF37;
}
.gallery-section .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.gallery-section .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 300px;
  cursor: pointer;
}
.gallery-section .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.gallery-section .gallery-item .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #ffffff;
  opacity: 0;
  transition: all 0.3s ease;
}
.gallery-section .gallery-item .gallery-overlay h3 {
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.gallery-section .gallery-item .gallery-overlay p {
  color: #D4AF37;
}
.gallery-section .gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-section .gallery-item:hover img {
  transform: scale(1.1);
}

.blog-section .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.blog-section .blog-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.blog-section .blog-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
.blog-section .blog-card .blog-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.blog-section .blog-card .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.blog-section .blog-card .blog-image .blog-date {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #D4AF37;
  color: #ffffff;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  min-width: 60px;
}
.blog-section .blog-card .blog-image .blog-date .date-day {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.blog-section .blog-card .blog-image .blog-date .date-month {
  font-size: 14px;
  text-transform: uppercase;
}
.blog-section .blog-card .blog-image:hover img {
  transform: scale(1.1);
}
.blog-section .blog-card .blog-content {
  padding: 2rem;
}
.blog-section .blog-card .blog-content .blog-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 14px;
  color: #555555;
}
.blog-section .blog-card .blog-content .blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-section .blog-card .blog-content .blog-meta span i {
  color: #D4AF37;
}
.blog-section .blog-card .blog-content h3 {
  margin-bottom: 1.5rem;
}
.blog-section .blog-card .blog-content h3 a {
  color: #1a1a1a;
  transition: all 0.3s ease;
}
.blog-section .blog-card .blog-content h3 a:hover {
  color: #D4AF37;
}
.blog-section .blog-card .blog-content p {
  color: #555555;
  margin-bottom: 1.5rem;
}
.blog-section .blog-card .blog-content .read-more {
  color: #D4AF37;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}
.blog-section .blog-card .blog-content .read-more:hover {
  gap: 10px;
}
.blog-section .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.blog-section .pagination .page-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  color: #1a1a1a;
  transition: all 0.3s ease;
}
.blog-section .pagination .page-link:hover, .blog-section .pagination .page-link.active {
  background: #D4AF37;
  color: #ffffff;
  border-color: #D4AF37;
}

.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #1a1a1a;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #D4AF37;
}
.form-group textarea {
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.reservation-section .reservation-wrapper,
.reservation-section .contact-wrapper,
.contact-section .reservation-wrapper,
.contact-section .contact-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
  align-items: start;
}
.reservation-section .reservation-info h2,
.reservation-section .contact-info h2,
.contact-section .reservation-info h2,
.contact-section .contact-info h2 {
  margin-bottom: 1.5rem;
}
.reservation-section .reservation-info p,
.reservation-section .contact-info p,
.contact-section .reservation-info p,
.contact-section .contact-info p {
  margin-bottom: 2rem;
}
.reservation-section .info-items .info-item,
.reservation-section .info-items .contact-detail,
.reservation-section .contact-details .info-item,
.reservation-section .contact-details .contact-detail,
.contact-section .info-items .info-item,
.contact-section .info-items .contact-detail,
.contact-section .contact-details .info-item,
.contact-section .contact-details .contact-detail {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.reservation-section .info-items .info-item i,
.reservation-section .info-items .info-item .contact-icon,
.reservation-section .info-items .contact-detail i,
.reservation-section .info-items .contact-detail .contact-icon,
.reservation-section .contact-details .info-item i,
.reservation-section .contact-details .info-item .contact-icon,
.reservation-section .contact-details .contact-detail i,
.reservation-section .contact-details .contact-detail .contact-icon,
.contact-section .info-items .info-item i,
.contact-section .info-items .info-item .contact-icon,
.contact-section .info-items .contact-detail i,
.contact-section .info-items .contact-detail .contact-icon,
.contact-section .contact-details .info-item i,
.contact-section .contact-details .info-item .contact-icon,
.contact-section .contact-details .contact-detail i,
.contact-section .contact-details .contact-detail .contact-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  color: #D4AF37;
  border-radius: 50%;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.reservation-section .info-items .info-item h4,
.reservation-section .info-items .contact-detail h4,
.reservation-section .contact-details .info-item h4,
.reservation-section .contact-details .contact-detail h4,
.contact-section .info-items .info-item h4,
.contact-section .info-items .contact-detail h4,
.contact-section .contact-details .info-item h4,
.contact-section .contact-details .contact-detail h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.reservation-section .info-items .info-item p,
.reservation-section .info-items .contact-detail p,
.reservation-section .contact-details .info-item p,
.reservation-section .contact-details .contact-detail p,
.contact-section .info-items .info-item p,
.contact-section .info-items .contact-detail p,
.contact-section .contact-details .info-item p,
.contact-section .contact-details .contact-detail p {
  margin: 0;
  color: #555555;
}
.reservation-section .reservation-form-wrapper,
.reservation-section .contact-form-wrapper,
.contact-section .reservation-form-wrapper,
.contact-section .contact-form-wrapper {
  background: #f8f9fa;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.reservation-section .reservation-form-wrapper h3,
.reservation-section .contact-form-wrapper h3,
.contact-section .reservation-form-wrapper h3,
.contact-section .contact-form-wrapper h3 {
  margin-bottom: 2rem;
}
.reservation-section .social-media,
.contact-section .social-media {
  margin-top: 3rem;
}
.reservation-section .social-media h4,
.contact-section .social-media h4 {
  margin-bottom: 1.5rem;
}
.reservation-section .social-media .social-links,
.contact-section .social-media .social-links {
  display: flex;
  gap: 1rem;
}
.reservation-section .social-media .social-links .social-link,
.contact-section .social-media .social-links .social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #D4AF37;
  color: #ffffff;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.reservation-section .social-media .social-links .social-link:hover,
.contact-section .social-media .social-links .social-link:hover {
  background: rgb(177.7777777778, 144.8888888889, 38.2222222222);
  transform: translateY(-3px);
}

.map-section .map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

.footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 5rem 0 1.5rem;
}
.footer .footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #D4AF37;
}
.footer .footer-col p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}
.footer .footer-col h4 {
  margin-bottom: 1.5rem;
  color: #ffffff;
}
.footer .footer-col ul {
  list-style: none;
}
.footer .footer-col ul li {
  margin-bottom: 1rem;
}
.footer .footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}
.footer .footer-col ul li a:hover {
  color: #D4AF37;
  padding-left: 5px;
}
.footer .footer-col ul li i {
  color: #D4AF37;
  margin-right: 0.5rem;
  width: 20px;
}
.footer .footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.footer .footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.footer .footer-social a:hover {
  background: #D4AF37;
  color: #ffffff;
  transform: translateY(-3px);
}
.footer .footer-bottom {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}
.footer .footer-bottom p {
  margin: 0;
}
.footer .footer-bottom i {
  color: #D4AF37;
}

.blog-post-header {
  position: relative;
  padding: 180px 0 100px;
  margin-top: 80px;
  overflow: hidden;
}
.blog-post-header .blog-post-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.blog-post-header .blog-post-header-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
}
.blog-post-header .blog-post-header-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}
.blog-post-header .blog-post-header-content .blog-post-category {
  margin-bottom: 1.5rem;
}
.blog-post-header .blog-post-header-content .blog-post-category span {
  display: inline-block;
  padding: 8px 20px;
  background: #D4AF37;
  color: #ffffff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-post-header .blog-post-header-content h1 {
  color: #ffffff;
  font-size: 3.5rem;
  margin-bottom: 3rem;
  line-height: 1.2;
}
.blog-post-header .blog-post-header-content .blog-post-meta {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.blog-post-header .blog-post-header-content .blog-post-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.blog-post-header .blog-post-header-content .blog-post-meta .meta-item img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffffff;
}
.blog-post-header .blog-post-header-content .blog-post-meta .meta-item i {
  font-size: 1.5rem;
  color: #D4AF37;
}
.blog-post-header .blog-post-header-content .blog-post-meta .meta-item div {
  text-align: left;
}
.blog-post-header .blog-post-header-content .blog-post-meta .meta-item .meta-label {
  display: block;
  font-size: 14px;
  opacity: 0.8;
}
.blog-post-header .blog-post-header-content .blog-post-meta .meta-item .meta-value {
  display: block;
  font-weight: 600;
  font-size: 1rem;
}

.blog-post-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.blog-post-wrapper {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 4rem;
  align-items: start;
}

.blog-post-content {
  position: relative;
}

.social-share-sticky {
  position: absolute;
  top: 0;
  left: -100px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  padding: 1rem 0.5rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.social-share-sticky h4 {
  font-size: 0.7rem;
  margin: 0 0 5px 0;
  color: #555555;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.social-share-sticky .share-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}
.social-share-sticky .share-btn.facebook {
  background: #3b5998;
  color: #ffffff;
}
.social-share-sticky .share-btn.facebook:hover {
  background: rgb(44.7393364929, 67.4881516588, 115.2606635071);
  transform: scale(1.1);
}
.social-share-sticky .share-btn.twitter {
  background: #1da1f2;
  color: #ffffff;
}
.social-share-sticky .share-btn.twitter:hover {
  background: rgb(11.9665271967, 133.4728033473, 208.0334728033);
  transform: scale(1.1);
}
.social-share-sticky .share-btn.pinterest {
  background: #bd081c;
  color: #ffffff;
}
.social-share-sticky .share-btn.pinterest:hover {
  background: rgb(140.0710659898, 5.9289340102, 20.7512690355);
  transform: scale(1.1);
}
.social-share-sticky .share-btn.linkedin {
  background: #0077b5;
  color: #ffffff;
}
.social-share-sticky .share-btn.linkedin:hover {
  background: rgb(0, 85.4696132597, 130);
  transform: scale(1.1);
}
.social-share-sticky .share-count {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}
.social-share-sticky .share-count i {
  color: #D4AF37;
  font-size: 1rem;
}
.social-share-sticky .share-count span {
  display: block;
  font-weight: 700;
  margin-top: 3px;
  font-size: 0.85rem;
}

.article-body {
  background: #ffffff;
  padding: 5rem;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.article-body .lead {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #1a1a1a;
  margin-bottom: 3rem;
}
.article-body h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}
.article-body h3 {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
.article-body p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.article-body .blog-quote {
  margin: 3rem 0;
  padding: 3rem;
  background: #f8f9fa;
  border-left: 4px solid #D4AF37;
  border-radius: 8px;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.8;
}
.article-body .blog-quote cite {
  display: block;
  margin-top: 1.5rem;
  font-style: normal;
  font-weight: 600;
  color: #D4AF37;
}
.article-body .content-image {
  margin: 3rem 0;
  border-radius: 12px;
  overflow: hidden;
}
.article-body .content-image img {
  width: 100%;
  display: block;
}
.article-body .content-image .image-caption {
  padding: 1.5rem;
  background: #f8f9fa;
  text-align: center;
  font-size: 14px;
  color: #555555;
  font-style: italic;
  margin: 0;
}
.article-body .content-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}
.article-body .content-image-grid img {
  width: 100%;
  border-radius: 8px;
}
.article-body .highlight-box {
  margin: 3rem 0;
  padding: 2rem;
  background: rgba(212, 175, 55, 0.05);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
}
.article-body .highlight-box h4 {
  margin: 0 0 1rem 0;
  color: #D4AF37;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.article-body .highlight-box p {
  margin: 0;
}
.article-body .styled-list {
  margin: 2rem 0;
  padding-left: 2rem;
}
.article-body .styled-list li {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.article-body .styled-list li strong {
  color: #1a1a1a;
}
.article-body .tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}
.article-body .tools-grid .tool-item {
  text-align: center;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.article-body .tools-grid .tool-item:hover {
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.article-body .tools-grid .tool-item i {
  font-size: 2.5rem;
  color: #D4AF37;
  margin-bottom: 1.5rem;
}
.article-body .tools-grid .tool-item h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.article-body .tools-grid .tool-item p {
  margin: 0;
  font-size: 14px;
  color: #555555;
}

.post-tags {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 2px solid #e0e0e0;
}
.post-tags h4 {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.post-tags .tag {
  display: inline-block;
  padding: 8px 18px;
  margin: 0 8px 8px 0;
  background: #f8f9fa;
  color: #1a1a1a;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
}
.post-tags .tag:hover {
  background: #D4AF37;
  color: #ffffff;
}

.author-bio {
  margin-top: 3rem;
  padding: 3rem;
  background: #f8f9fa;
  border-radius: 12px;
  display: flex;
  gap: 2rem;
}
.author-bio img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-bio .author-info h3 {
  margin: 0 0 5px 0;
}
.author-bio .author-info .author-title {
  color: #D4AF37;
  font-weight: 600;
  margin-bottom: 1rem;
}
.author-bio .author-info p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.author-bio .author-info .author-social {
  display: flex;
  gap: 1rem;
}
.author-bio .author-info .author-social a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #1a1a1a;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.author-bio .author-info .author-social a:hover {
  background: #D4AF37;
  color: #ffffff;
  transform: translateY(-3px);
}

.post-navigation {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 2px solid #e0e0e0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.post-navigation a {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.post-navigation a:hover {
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}
.post-navigation a i {
  font-size: 1.5rem;
  color: #D4AF37;
}
.post-navigation a span {
  display: block;
  font-size: 14px;
  color: #555555;
  margin-bottom: 5px;
}
.post-navigation a h4 {
  margin: 0;
  font-size: 1rem;
  color: #1a1a1a;
}
.post-navigation .nav-prev {
  text-align: left;
}
.post-navigation .nav-next {
  text-align: right;
  justify-content: flex-end;
}

.blog-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: #ffffff;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}
.sidebar-widget h3 {
  margin: 0 0 1.5rem 0;
  font-size: 1.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #e0e0e0;
}
.sidebar-widget .search-form {
  position: relative;
}
.sidebar-widget .search-form input {
  width: 100%;
  padding: 12px 50px 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.sidebar-widget .search-form input:focus {
  outline: none;
  border-color: #D4AF37;
}
.sidebar-widget .search-form button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #D4AF37;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.sidebar-widget .search-form button:hover {
  background: rgb(177.7777777778, 144.8888888889, 38.2222222222);
}
.sidebar-widget .category-list {
  list-style: none;
}
.sidebar-widget .category-list li {
  margin-bottom: 1rem;
}
.sidebar-widget .category-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  color: #1a1a1a;
  transition: all 0.3s ease;
}
.sidebar-widget .category-list li a:hover {
  color: #D4AF37;
  padding-left: 10px;
}
.sidebar-widget .category-list li a span {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  color: #555555;
  border-radius: 50%;
  font-size: 14px;
}
.sidebar-widget .recent-posts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.sidebar-widget .recent-post-item {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}
.sidebar-widget .recent-post-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.sidebar-widget .recent-post-item:hover h4 {
  color: #D4AF37;
}
.sidebar-widget .recent-post-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.sidebar-widget .recent-post-item h4 {
  margin: 0 0 5px 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #1a1a1a;
  transition: all 0.3s ease;
}
.sidebar-widget .recent-post-item span {
  font-size: 14px;
  color: #555555;
}
.sidebar-widget .recent-post-item span i {
  color: #D4AF37;
  margin-right: 5px;
}

.newsletter-widget {
  background: linear-gradient(135deg, #D4AF37, rgb(156.7901234568, 127.7839506173, 33.7098765432));
  color: #ffffff;
  text-align: center;
}
.newsletter-widget i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.newsletter-widget h3 {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}
.newsletter-widget p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.newsletter-widget .newsletter-form input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  margin-bottom: 1rem;
}
.newsletter-widget .newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.newsletter-widget .newsletter-form input:focus {
  outline: none;
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
}
.newsletter-widget .newsletter-form button {
  width: 100%;
  background: #ffffff;
  color: #D4AF37;
  font-weight: 600;
}
.newsletter-widget .newsletter-form button:hover {
  background: #f8f9fa;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-cloud .tag {
  padding: 6px 14px;
  background: #f8f9fa;
  color: #1a1a1a;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
}
.tag-cloud .tag:hover {
  background: #D4AF37;
  color: #ffffff;
}

.related-posts-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #ffffff 0%, white 100%);
  position: relative;
}
.related-posts-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #eeeeee, transparent);
}

.related-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 5rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid white;
}
.related-header .related-header-content {
  max-width: 600px;
}
.related-header .related-header-content .section-subtitle {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #D4AF37;
  font-weight: 600;
  margin-bottom: 1rem;
}
.related-header .related-header-content .section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}
.related-header .related-header-content p {
  color: #555555;
  font-size: 1.05rem;
  margin: 0;
}
.related-header .btn-outline {
  flex-shrink: 0;
  margin-left: 1.5rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.related-article {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26, 26, 26, 0.06);
  transition: all 0.4s ease;
  position: relative;
}
.related-article:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(26, 26, 26, 0.12);
}
.related-article:hover .related-article-image img {
  transform: scale(1.08);
}
.related-article:hover .article-overlay {
  background: rgba(26, 26, 26, 0.7);
}
.related-article:hover .article-link {
  color: #D4AF37;
}
.related-article:hover .article-link i {
  transform: translateX(5px);
}
.related-article.featured {
  grid-row: span 1;
}
.related-article.featured .article-overlay .featured-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: #D4AF37;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}
.related-article.featured .article-overlay .featured-badge i {
  font-size: 10px;
}

.related-article-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.related-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.related-article-image .article-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.4);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  transition: background 0.3s ease;
}
.related-article-image .article-overlay .article-category {
  background: #ffffff;
  color: #1a1a1a;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.related-article-content {
  padding: 2rem;
}
.related-article-content .article-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.related-article-content .article-meta span {
  font-size: 14px;
  color: rgb(110.5, 110.5, 110.5);
  display: flex;
  align-items: center;
  gap: 6px;
}
.related-article-content .article-meta span i {
  color: #D4AF37;
  font-size: 12px;
}
.related-article-content h3 {
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
.related-article-content h3 a {
  color: #1a1a1a;
  transition: color 0.3s ease;
}
.related-article-content h3 a:hover {
  color: #D4AF37;
}
.related-article-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 2rem;
}
.related-article-content .article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid white;
}
.related-article-content .article-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.related-article-content .article-author img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f8f9fa;
}
.related-article-content .article-author span {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}
.related-article-content .article-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  transition: all 0.3s ease;
}
.related-article-content .article-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.elements-section {
  padding: 3rem 0;
}
.elements-section .elements-title {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #e0e0e0;
}
.elements-section .elements-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}
.elements-section .elements-showcase h1, .elements-section .elements-showcase h2, .elements-section .elements-showcase h3, .elements-section .elements-showcase h4, .elements-section .elements-showcase h5, .elements-section .elements-showcase h6 {
  width: 100%;
}
.elements-section .elements-showcase p {
  width: 100%;
}
.elements-section .form-showcase {
  max-width: 600px;
}
.elements-section .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.elements-section .menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.elements-section .menu-list {
  max-width: 800px;
  margin: 0 auto;
}
.elements-section .testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.elements-section .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.elements-section .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.icon-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
}
.icon-showcase .icon-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.icon-showcase .icon-item:hover {
  background: #D4AF37;
  color: #ffffff;
  transform: translateY(-5px);
}
.icon-showcase .icon-item i {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.icon-showcase .icon-item span {
  font-size: 14px;
}

.color-palette {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.color-palette .color-item {
  padding: 3rem;
  border-radius: 8px;
  text-align: center;
}
.color-palette .color-item span {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.color-palette .color-item code {
  display: block;
  font-size: 14px;
  opacity: 0.8;
}

.spacing-showcase {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.spacing-showcase .spacing-item {
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
}

.elements-section .feature-card {
  text-align: center;
  padding: 3rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.elements-section .feature-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.elements-section .feature-card .feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  color: #D4AF37;
  font-size: 2rem;
  transition: all 0.3s ease;
}
.elements-section .feature-card:hover .feature-icon {
  background: #D4AF37;
  color: #ffffff;
}
.elements-section .feature-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.elements-section .feature-card p {
  color: #555555;
  margin: 0;
}
.elements-section .menu-item {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.elements-section .menu-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
.elements-section .menu-item .menu-item-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.elements-section .menu-item .menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.elements-section .menu-item .menu-item-image .menu-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}
.elements-section .menu-item .menu-item-image:hover .menu-item-overlay {
  opacity: 1;
}
.elements-section .menu-item .menu-item-image:hover img {
  transform: scale(1.1);
}
.elements-section .menu-item .menu-item-content {
  padding: 2rem;
}
.elements-section .menu-item .menu-item-content .menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.elements-section .menu-item .menu-item-content .menu-item-header h3 {
  margin: 0;
  font-size: 1.25rem;
}
.elements-section .menu-item .menu-item-content .menu-item-header .menu-item-price {
  color: #D4AF37;
  font-weight: 700;
  font-size: 1.25rem;
}
.elements-section .menu-item .menu-item-content p {
  color: #555555;
  margin-bottom: 1.5rem;
}
.elements-section .menu-item .menu-item-content .menu-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.elements-section .menu-item .menu-item-content .menu-item-footer .menu-item-category {
  font-size: 14px;
  color: #555555;
  padding: 5px 15px;
  background: #f8f9fa;
  border-radius: 4px;
}
.elements-section .menu-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
  border-bottom: 1px solid #e0e0e0;
  gap: 1.5rem;
}
.elements-section .menu-list-item:last-child {
  border-bottom: none;
}
.elements-section .menu-list-item .menu-list-content {
  flex: 1;
}
.elements-section .menu-list-item .menu-list-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}
.elements-section .menu-list-item .menu-list-content p {
  color: #555555;
  margin: 0;
  font-size: 14px;
}
.elements-section .menu-list-item .menu-list-price {
  color: #D4AF37;
  font-weight: 700;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.elements-section .testimonial-card {
  background: #ffffff;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.elements-section .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.elements-section .testimonial-card .testimonial-rating {
  color: #D4AF37;
  margin-bottom: 1.5rem;
}
.elements-section .testimonial-card .testimonial-rating i {
  margin-right: 5px;
}
.elements-section .testimonial-card .testimonial-text {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
  color: #1a1a1a;
}
.elements-section .testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.elements-section .testimonial-card .testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.elements-section .testimonial-card .testimonial-author h4 {
  margin: 0;
  margin-bottom: 5px;
}
.elements-section .testimonial-card .testimonial-author p {
  margin: 0;
  color: #555555;
  font-size: 14px;
}
.elements-section .team-member {
  text-align: center;
}
.elements-section .team-member .team-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}
.elements-section .team-member .team-image img {
  width: 100%;
  transition: all 0.3s ease;
}
.elements-section .team-member .team-image .team-social {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
}
.elements-section .team-member .team-image .team-social a {
  color: #ffffff;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}
.elements-section .team-member .team-image .team-social a:hover {
  color: #D4AF37;
}
.elements-section .team-member .team-image:hover img {
  transform: scale(1.1);
}
.elements-section .team-member .team-image:hover .team-social {
  opacity: 1;
  transform: translateY(0);
}
.elements-section .team-member h3 {
  margin-bottom: 0.5rem;
}
.elements-section .team-member p {
  color: #555555;
  margin: 0;
}
.elements-section .blog-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.elements-section .blog-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
.elements-section .blog-card .blog-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.elements-section .blog-card .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.elements-section .blog-card .blog-image:hover img {
  transform: scale(1.1);
}
.elements-section .blog-card .blog-image .blog-date {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: #D4AF37;
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  text-align: center;
}
.elements-section .blog-card .blog-image .blog-date .date-day {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.elements-section .blog-card .blog-image .blog-date .date-month {
  display: block;
  font-size: 14px;
}
.elements-section .blog-card .blog-content {
  padding: 2rem;
}
.elements-section .blog-card .blog-content .blog-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 14px;
  color: #555555;
}
.elements-section .blog-card .blog-content .blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.elements-section .blog-card .blog-content .blog-meta span i {
  color: #D4AF37;
}
.elements-section .blog-card .blog-content h3 {
  margin-bottom: 1rem;
}
.elements-section .blog-card .blog-content h3 a {
  color: #1a1a1a;
  transition: all 0.3s ease;
}
.elements-section .blog-card .blog-content h3 a:hover {
  color: #D4AF37;
}
.elements-section .blog-card .blog-content p {
  color: #555555;
  margin-bottom: 1.5rem;
}
.elements-section .blog-card .blog-content .read-more {
  color: #D4AF37;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}
.elements-section .blog-card .blog-content .read-more:hover {
  gap: 1rem;
}

@media (max-width: 767px) {
  .elements-section .elements-showcase {
    flex-direction: column;
    align-items: flex-start;
  }
  .icon-showcase {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  }
  .color-palette {
    grid-template-columns: 1fr;
  }
}
.docs-wrapper {
  display: flex;
  min-height: 100vh;
}

.docs-sidebar {
  width: 300px;
  background: #f8f9fa;
  padding: 2rem;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  border-right: 1px solid #e0e0e0;
}
.docs-sidebar .docs-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #e0e0e0;
}
.docs-sidebar .docs-sidebar-header h3 {
  margin: 0;
  font-size: 1.5rem;
}
.docs-sidebar .docs-sidebar-header .sidebar-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #1a1a1a;
}
.docs-sidebar .docs-nav ul {
  list-style: none;
}
.docs-sidebar .docs-nav ul li {
  margin-bottom: 0.5rem;
}
.docs-sidebar .docs-nav ul li a {
  display: block;
  padding: 0.5rem 1rem;
  color: #555555;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.docs-sidebar .docs-nav ul li a:hover, .docs-sidebar .docs-nav ul li a.active {
  background: #D4AF37;
  color: #ffffff;
}
.docs-sidebar .docs-nav ul li ul {
  margin-left: 1.5rem;
  margin-top: 0.5rem;
}
.docs-sidebar .docs-nav ul li ul li a {
  font-size: 14px;
  padding: 0.5rem;
}

.docs-content {
  flex: 1;
  padding: 0 3rem 2rem;
  max-width: 1300px;
}
.docs-content .docs-menu-toggle {
  display: none;
  margin-bottom: 2rem;
  padding: 1rem 1.5rem;
  background: #D4AF37;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}
.docs-content .docs-menu-toggle:hover {
  background: rgb(177.7777777778, 144.8888888889, 38.2222222222);
}
.docs-content .docs-menu-toggle i {
  margin-right: 0.5rem;
}
.docs-content .docs-section {
  margin-bottom: 5rem;
  scroll-margin-top: 100px;
}
.docs-content .docs-section h1 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
  font-size: 2.5rem;
}
.docs-content .docs-section .lead {
  font-size: 1.2rem;
  color: #555555;
  margin-bottom: 3rem;
}
.docs-content .docs-section h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e0e0e0;
  color: #1a1a1a;
}
.docs-content .docs-section h3 {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}
.docs-content .docs-section h4 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.docs-content .docs-section p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.docs-content .docs-section ul, .docs-content .docs-section ol {
  margin-bottom: 1.5rem;
  margin-left: 2rem;
}
.docs-content .docs-section ul li, .docs-content .docs-section ol li {
  margin-bottom: 1rem;
  list-style: disc;
  line-height: 1.8;
}
.docs-content .docs-section code {
  background: #f8f9fa;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  color: #D4AF37;
  font-size: 0.9em;
}

.alert {
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: block;
  line-height: 1.8;
}
.alert i {
  font-size: 1.25rem;
  margin-right: 0.5rem;
}
.alert strong {
  font-weight: 600;
}
.alert.alert-info {
  background: rgb(252.6111111111, 250.5555555556, 243.8888888889);
  border-left: 4px solid #D4AF37;
  color: rgb(135.8024691358, 110.6790123457, 29.1975308642);
}
.alert.alert-success {
  background: rgb(195.7028985507, 240.7971014493, 206);
  border-left: 4px solid #28a745;
  color: rgb(20.2898550725, 84.7101449275, 35);
  padding: 2rem;
}
.alert.alert-success strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.alert.alert-warning {
  background: rgb(255, 237.625, 185.5);
  border-left: 4px solid #ffc107;
  color: rgb(58, 43.5, 0);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}
.feature-list .feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.feature-list .feature-item i {
  color: #D4AF37;
}

.code-block {
  margin-bottom: 2rem;
}
.code-block h4 {
  background: #1a1a1a;
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 8px 8px 0 0;
  margin: 0;
}
.code-block pre {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 0 0 8px 8px;
  overflow-x: auto;
  margin: 0;
}
.code-block pre code {
  background: none;
  padding: 0;
  color: #1a1a1a;
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
  line-height: 1.6;
}
.code-block p {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 0 0 8px 8px;
  margin: 0;
}

.docs-table {
  width: 100%;
  margin-bottom: 2rem;
  border-collapse: collapse;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}
.docs-table thead {
  background: #D4AF37;
  color: #ffffff;
}
.docs-table thead th {
  padding: 1.5rem;
  text-align: left;
  font-weight: 600;
}
.docs-table tbody tr {
  border-bottom: 1px solid #e0e0e0;
}
.docs-table tbody tr:last-child {
  border-bottom: none;
}
.docs-table tbody tr:hover {
  background: #f8f9fa;
}
.docs-table tbody tr td {
  padding: 1.5rem;
}
.docs-table tbody tr td code {
  background: rgba(212, 175, 55, 0.1);
}

.color-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.color-grid .color-box {
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.color-grid .color-box span {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.color-grid .color-box code {
  display: block;
  font-size: 14px;
}

@media (max-width: 991px) {
  .docs-sidebar {
    position: fixed;
    left: -300px;
    top: 0;
    height: 100vh;
    z-index: 1030;
    transition: all 0.3s ease;
  }
  .docs-sidebar.active {
    left: 0;
  }
  .docs-sidebar .docs-sidebar-header .sidebar-toggle {
    display: block;
  }
  .docs-content {
    padding: 2rem;
  }
  .docs-content .docs-menu-toggle {
    display: inline-flex;
    align-items: center;
  }
  .docs-wrapper {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .docs-sidebar {
    width: 100%;
    left: -100%;
  }
  .docs-content {
    padding: 1.5rem;
  }
  .docs-content .docs-section h2 {
    font-size: 1.5rem;
  }
  .docs-content .docs-section h3 {
    font-size: 1.25rem;
  }
  .docs-table {
    font-size: 14px;
  }
  .docs-table thead th,
  .docs-table tbody td {
    padding: 1rem;
  }
  .feature-list {
    grid-template-columns: 1fr;
  }
  .color-grid {
    grid-template-columns: 1fr;
  }
  .code-block pre code {
    font-size: 0.8rem;
  }
}
@media (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
  .about-section .about-grid,
  .reservation-section .reservation-wrapper,
  .contact-section .contact-wrapper {
    gap: 3rem;
  }
  .footer .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 720px;
  }
  .navbar .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    padding: 100px 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    gap: 1.5rem;
  }
  .navbar .nav-menu.active {
    right: 0;
  }
  .navbar .nav-menu li a {
    color: #1a1a1a;
  }
  .navbar .nav-menu li a:hover, .navbar .nav-menu li a.active {
    color: #D4AF37;
  }
  .navbar .menu-toggle {
    display: flex;
  }
  .hero {
    height: 70vh;
    min-height: 500px;
  }
  .hero .hero-content .hero-title {
    font-size: 2.5rem;
  }
  .page-header {
    height: 300px;
    margin-top: 70px;
  }
  .about-section .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .team-section .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .reservation-section .reservation-wrapper,
  .contact-section .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .blog-section .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .footer .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .stats-section .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 540px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  section {
    padding: 3rem 0;
  }
  .hero .hero-content {
    padding: 0 20px;
  }
  .hero .hero-content .hero-title {
    font-size: 2rem;
  }
  .hero .hero-content .hero-text {
    font-size: 16px;
  }
  .hero .hero-content .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero .hero-content .hero-buttons .btn {
    width: 100%;
  }
  .page-header {
    height: 250px;
  }
  .page-header h1 {
    font-size: 2rem;
  }
  .features .features-grid {
    grid-template-columns: 1fr;
  }
  .menu-preview .menu-grid,
  .menu-section .menu-grid {
    grid-template-columns: 1fr;
  }
  .menu-tabs,
  .menu-filters {
    gap: 1rem;
  }
  .gallery-section .gallery-grid {
    grid-template-columns: 1fr;
  }
  .blog-section .blog-grid {
    grid-template-columns: 1fr;
  }
  .testimonials .testimonials-slider {
    grid-template-columns: 1fr;
  }
  .stats-section .stats-grid {
    grid-template-columns: 1fr;
  }
  .stats-section .stat-item .stat-number {
    font-size: 2.5rem;
  }
  .team-section .team-grid {
    grid-template-columns: 1fr;
  }
  .values-section .values-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .btn {
    padding: 10px 20px;
  }
  .btn-lg {
    padding: 14px 30px;
  }
  .about-section .about-images .about-image-float {
    position: static;
    width: 100%;
    margin-top: 1.5rem;
  }
  .blog-post-wrapper {
    grid-template-columns: 1fr;
  }
  .social-share-sticky {
    position: static;
    left: 0;
    flex-direction: row;
    margin-bottom: 2rem;
  }
  .article-body {
    padding: 2rem;
  }
  .article-body .content-image-grid {
    grid-template-columns: 1fr;
  }
  .article-body .tools-grid {
    grid-template-columns: 1fr;
  }
  .post-navigation {
    grid-template-columns: 1fr;
  }
  .author-bio {
    flex-direction: column;
    text-align: center;
  }
  .author-bio img {
    margin: 0 auto;
  }
  .blog-post-header {
    padding: 140px 0 60px;
  }
  .blog-post-header .blog-post-header-content h1 {
    font-size: 2.5rem;
  }
  .blog-post-header .blog-post-header-content .blog-post-meta {
    gap: 1.5rem;
  }
  .related-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  .related-header .btn-outline {
    margin-left: 0;
  }
  .related-header .related-header-content .section-title {
    font-size: 2rem;
  }
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 575px) {
  .container {
    padding: 0 20px;
  }
  .navbar {
    padding: 1rem 0;
  }
  .navbar .logo {
    font-size: 1.5rem;
  }
  .navbar .logo .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .navbar .nav-menu {
    width: 100%;
    right: -100%;
  }
  .related-header .related-header-content .section-title {
    font-size: 1.75rem;
  }
  .related-header .related-header-content p {
    font-size: 0.95rem;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
  .related-article-content {
    padding: 1.5rem;
  }
  .related-article-content h3 {
    font-size: 1.15rem;
  }
  .related-article-content p {
    font-size: 0.9rem;
  }
  .navbar-actions .btn {
    display: none;
  }
  .hero {
    height: 60vh;
    min-height: 400px;
  }
  .hero .hero-content .hero-subtitle {
    font-size: 0.75rem;
  }
  .hero .hero-content .hero-title {
    font-size: 1.75rem;
  }
  .section-header {
    margin-bottom: 2rem;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .menu-item .menu-item-image {
    height: 200px;
  }
  .blog-card .blog-image {
    height: 200px;
  }
  .gallery-section .gallery-grid {
    gap: 1rem;
  }
  .gallery-item {
    height: 250px;
  }
  .reservation-form-wrapper,
  .contact-form-wrapper {
    padding: 1.5rem;
  }
  .footer {
    padding: 3rem 0 1rem;
  }
  .footer .footer-content {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .footer .footer-logo {
    font-size: 1.5rem;
  }
  .icon-showcase,
  .color-palette {
    flex-direction: column;
  }
}
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    height: auto;
    min-height: auto;
    padding: 150px 0 80px;
  }
  .page-header {
    height: auto;
    padding: 120px 0 60px;
  }
}
@media print {
  .navbar,
  .footer,
  .hero-scroll,
  .btn,
  .menu-toggle {
    display: none;
  }
  body {
    color: #000;
  }
  a {
    text-decoration: underline;
  }
}

/*# sourceMappingURL=style.css.map */
