@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes sway {
  0%, 100% {
    transform: rotate(-2deg);
  }
  50% {
    transform: rotate(2deg);
  }
}
/* ===== HERO SECTION ===== */
/* ===== ABOUT SECTION ===== */
/* ===== GALLERY SECTION ===== */
/* ===== MENU SECTION ===== */
/* ===== RESERVATION SECTION ===== */
/* ===== BRANCHES SECTION ===== */
/* ===== CONTACT SECTION ===== */
/* ===== FOOTER ===== */
/* ===== LIGHTBOX ===== */
/* ===== BACK TO TOP ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Crimson Text", Georgia, serif;
  background-color: #f5f0e6;
  color: #2d1f1a;
  line-height: 1.6;
  overflow-x: hidden;
}

:root {
  --golden: #d4a84b;
  --golden-light: #e8c97b;
  --golden-dark: #b8922f;
  --deep-red: #8b0000;
  --deep-red-light: #a52a2a;
  --cream: #f5f0e6;
  --cream-dark: #ede5d5;
  --dark-wood: #2d1f1a;
  --bamboo-green: #4a7c59;
  --black: #1a1a1a;
}

h1 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--deep-red);
  line-height: 1.2;
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--deep-red);
  line-height: 1.2;
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--deep-red);
  line-height: 1.2;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--deep-red);
  line-height: 1.2;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

h5 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--deep-red);
  line-height: 1.2;
}

h6 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--deep-red);
  line-height: 1.2;
}

p {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

a {
  color: var(--deep-red);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: var(--golden-dark);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}
.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--golden), var(--deep-red));
  margin: 1rem auto 0;
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: "Crimson Text", serif;
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--golden);
  color: var(--dark-wood);
}
.btn-primary:hover {
  background-color: var(--golden-dark);
  color: rgb(231, 231, 231);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 168, 75, 0.4);
}

.btn-secondary {
  background-color: var(--deep-red);
  color: var(--cream);
}
.btn-secondary:hover {
  background-color: var(--deep-red-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--golden);
  color: var(--golden);
}
.btn-outline:hover {
  background-color: var(--golden);
  color: var(--dark-wood);
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, var(--dark-wood) 0%, #3d2a22 100%);
  overflow: hidden;
  padding-top: 80px;
}
.hero .hero-bamboo {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  pointer-events: none;
}
.hero .hero-bamboo .hero-bamboo-left {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 200px;
  height: 100%;
  animation: sway 6s ease-in-out infinite;
}
.hero .hero-bamboo .hero-bamboo-right {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 200px;
  height: 100%;
  animation: sway 6s ease-in-out infinite reverse;
}
.hero .hero-content {
  text-align: center;
  z-index: 10;
  padding: 2rem;
  max-width: 800px;
}
.hero .hero-content .hero-subtitle {
  font-size: 1.25rem;
  color: var(--golden);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero .hero-content .hero-title {
  font-size: clamp(3rem, 8vw, 4rem);
  color: var(--cream);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero .hero-content .hero-title span {
  color: var(--golden);
  display: block;
}
.hero .hero-content .hero-description {
  font-size: 1.25rem;
  color: rgba(245, 240, 230, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease 0.6s both;
}
.hero .hero-content .hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s both;
}
.hero .hero-decoration {
  position: absolute;
  width: 100%;
  height: 80px;
  bottom: 0;
}
@media (max-width: 768px) {
  .hero {
    min-height: auto;
  }
  .hero .hero-decoration {
    background: none;
  }
}

.about {
  padding: 6rem 0;
  background-color: var(--cream);
  position: relative;
}
.about p {
  margin-bottom: 5px;
}
.about h2 {
  margin-bottom: 5px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image-main {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-image-frame {
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 3px solid var(--golden);
  border-radius: 8px;
  z-index: -1;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}
.about-content p {
  color: var(--dark-wood);
  margin-bottom: 1.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.about-features .about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.about-features .about-feature .about-feature-icon {
  width: 50px;
  height: 50px;
  background-color: var(--golden);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-features .about-feature .about-feature-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--dark-wood);
}
.about-features .about-feature h4 {
  font-size: 1rem;
  color: var(--deep-red);
  margin-bottom: 0.25rem;
}
.about-features .about-feature p {
  font-size: 0.9rem;
  color: var(--dark-wood);
  margin: 0;
}
@media (max-width: 768px) {
  .about-features {
    grid-template-columns: 1fr;
  }
}

.gallery {
  padding: 6rem 0;
  background-color: var(--cream-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}
.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
@media (max-width: 768px) {
  .gallery-item:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
  }
}
.gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 31, 26, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.gallery-overlay span {
  color: var(--cream);
  font-size: 1.125rem;
  font-weight: 600;
}

.menu {
  padding: 2rem 0;
  background-color: var(--cream);
}
.menu .menu-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.menu .menu-tabs .menu-tab {
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  border: 2px solid var(--golden);
  color: var(--deep-red);
  font-family: "Crimson Text", serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.menu .menu-tabs .menu-tab:hover {
  background-color: var(--golden);
  color: var(--dark-wood);
}
.menu .menu-tabs .menu-tab.active {
  background-color: var(--golden);
  color: var(--dark-wood);
}
.menu .menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.menu .menu-grid .menu-item {
  background-color: var(--cream-dark);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menu .menu-grid .menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.menu .menu-grid .menu-item .menu-image {
  background-color: var(--golden-light);
  line-height: 0;
}
.menu .menu-grid .menu-item .menu-image .menu-item-image {
  width: 100%;
  height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
}
.menu .menu-grid .menu-item .menu-item-content {
  padding: 1.5rem;
}
.menu .menu-grid .menu-item .menu-item-content .menu-item-name {
  font-size: 1.25rem;
  color: var(--deep-red);
  margin-bottom: 0.5rem;
}
.menu .menu-grid .menu-item .menu-item-content .menu-item-description {
  font-size: 0.95rem;
  color: var(--dark-wood);
  margin: 0;
  line-height: 1.5;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.menu .menu-cta {
  text-align: center;
  margin-top: 3rem;
}

.reservation {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--dark-wood) 0%, #3d2a22 100%);
  position: relative;
}
.reservation .section-title {
  color: var(--cream);
}
.reservation .section-title h2 {
  color: var(--golden);
}
.reservation .reservation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.reservation .reservation-grid .reservation-info {
  color: var(--cream);
}
.reservation .reservation-grid .reservation-info h3 {
  color: var(--golden);
  margin-bottom: 1.5rem;
}
.reservation .reservation-grid .reservation-info p {
  opacity: 0.9;
  margin-bottom: 2rem;
}
.reservation .reservation-grid .reservation-info .reservation-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.reservation .reservation-grid .reservation-info .reservation-contact-item .reservation-contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--golden);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reservation .reservation-grid .reservation-info .reservation-contact-item .reservation-contact-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--dark-wood);
}
.reservation .reservation-grid .reservation-info .reservation-contact-item .reservation-contact-text span {
  display: block;
  font-size: 1rem;
  color: var(--golden);
  margin-bottom: 0.25rem;
}
.reservation .reservation-grid .reservation-info .reservation-contact-item .reservation-contact-text strong {
  font-size: 1.125rem;
}
.reservation .reservation-grid .reservation-info .reservation-contact-item .reservation-contact-text strong a {
  color: var(--cream);
  font-family: Arial, Helvetica, sans-serif !important;
}
.reservation .reservation-grid .reservation-form {
  background-color: var(--cream);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.reservation .reservation-grid .reservation-form .btn {
  width: 100%;
}
.reservation .reservation-grid .reservation-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 480px) {
  .reservation .reservation-grid .reservation-form .form-row {
    grid-template-columns: 1fr;
  }
}
.reservation .reservation-grid .reservation-form .form-group {
  margin-bottom: 1.5rem;
}
.reservation .reservation-grid .reservation-form .form-group label {
  display: block;
  font-weight: 600;
  color: var(--deep-red);
  margin-bottom: 0.5rem;
}
.reservation .reservation-grid .reservation-form .form-group input {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: "Crimson Text", serif;
  font-size: 1rem;
  border: 2px solid var(--cream-dark);
  border-radius: 4px;
  background-color: var(--cream);
  color: var(--dark-wood);
  transition: border-color 0.3s ease;
}
.reservation .reservation-grid .reservation-form .form-group input:focus {
  outline: none;
  border-color: var(--golden);
}
.reservation .reservation-grid .reservation-form .form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: "Crimson Text", serif;
  font-size: 1rem;
  border: 2px solid var(--cream-dark);
  border-radius: 4px;
  background-color: var(--cream);
  color: var(--dark-wood);
  transition: border-color 0.3s ease;
}
.reservation .reservation-grid .reservation-form .form-group select:focus {
  outline: none;
  border-color: var(--golden);
}
.reservation .reservation-grid .reservation-form .form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: "Crimson Text", serif;
  font-size: 1rem;
  border: 2px solid var(--cream-dark);
  border-radius: 4px;
  background-color: var(--cream);
  color: var(--dark-wood);
  transition: border-color 0.3s ease;
  resize: vertical;
  min-height: 100px;
}
.reservation .reservation-grid .reservation-form .form-group textarea:focus {
  outline: none;
  border-color: var(--golden);
}
@media (max-width: 768px) {
  .reservation .reservation-grid {
    grid-template-columns: 1fr;
  }
}

.branches {
  padding: 6rem 0;
  background-color: var(--cream-dark);
}
.branches .branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}
.branches .branches-grid .branch-card {
  background-color: var(--cream);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.branches .branches-grid .branch-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.branches .branches-grid .branch-card .branch-image {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.branches .branches-grid .branch-card .branch-content {
  padding: 1.5rem;
}
.branches .branches-grid .branch-card .branch-content .branch-name {
  font-size: 1.25rem;
  color: var(--deep-red);
  margin-bottom: 1rem;
}
.branches .branches-grid .branch-card .branch-content .branch-info {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--dark-wood);
}
.branches .branches-grid .branch-card .branch-content .branch-info svg {
  width: 18px;
  height: 18px;
  fill: var(--golden-dark);
  flex-shrink: 0;
  margin-top: 3px;
}
.branches .branches-grid .branch-card .branch-content .branch-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.branches .branches-grid .branch-card .branch-content .branch-actions .btn {
  flex: 1;
  padding: 0.625rem 1rem;
  font-size: 0.9rem;
  text-align: center;
}
@media (max-width: 768px) {
  .branches .branches-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.contact {
  padding: 6rem 0;
  background-color: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--golden);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--dark-wood);
}

.contact-text span {
  display: block;
  font-size: 0.9rem;
  color: var(--golden-dark);
  margin-bottom: 0.25rem;
  font-weight: 600;
}
.contact-text p {
  margin: 0;
  color: var(--dark-wood);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 45px;
  height: 45px;
  background-color: var(--dark-wood);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.social-link:hover {
  background-color: var(--golden);
  transform: translateY(-3px);
}
.social-link:hover svg {
  fill: var(--dark-wood);
}
.social-link svg {
  width: 20px;
  height: 20px;
  fill: var(--cream);
  transition: fill 0.3s ease;
}

.contact-map {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.contact-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

.footer {
  background-color: var(--dark-wood);
  color: var(--cream);
  padding: 4rem 0 0;
}
.footer h4 {
  color: var(--golden);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}
.footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer .footer-grid .footer-brand p {
  color: rgba(245, 240, 230, 0.8);
  margin-top: 1rem;
  font-size: 1rem;
}
.footer .footer-grid .footer-column .footer-links {
  list-style: none;
}
.footer .footer-grid .footer-column .footer-links li {
  margin-bottom: 0.75rem;
}
.footer .footer-grid .footer-column .footer-links a {
  color: rgba(245, 240, 230, 0.8);
  font-size: 1rem;
  transition: color 0.3s ease;
}
.footer .footer-grid .footer-column .footer-links a:hover {
  color: var(--golden);
}
@media (max-width: 768px) {
  .footer .footer-grid .footer-column {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 425px) {
  .footer .footer-grid {
    grid-template-columns: 1fr;
  }
}
.footer .footer-bottom {
  border-top: 1px solid rgba(245, 240, 230, 0.1);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer .footer-bottom p {
  color: rgba(245, 240, 230, 0.6);
  font-size: 0.9rem;
  margin: 0;
}
.footer .footer-bottom .footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer .footer-bottom .footer-bottom-links a {
  color: rgba(245, 240, 230, 0.6);
  font-size: 0.9rem;
}
.footer .footer-bottom .footer-bottom-links a:hover {
  color: var(--golden);
}

.lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox .lightbox-content {
  max-width: 90%;
  max-height: 90%;
}
.lightbox .lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  -o-object-fit: contain;
     object-fit: contain;
}
.lightbox .lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--golden);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.lightbox .lightbox-close:hover {
  transform: scale(1.1);
}
.lightbox .lightbox-close svg {
  width: 24px;
  height: 24px;
  fill: var(--dark-wood);
}

.box-socials #btn-zalo {
  display: block;
  width: 40px;
  height: 40px;
  position: fixed;
  right: 25px;
  bottom: 110px;
  z-index: 9999;
}
.box-socials #btn-zalo i {
  display: flex;
  display: -ms-flex;
  align-items: center;
  -ms-flex-align: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0166da;
  position: relative;
  z-index: 999;
}
.box-socials #btn-zalo i img {
  vertical-align: middle;
  max-width: 100%;
}
.box-socials #btn-call {
  display: block;
  width: 40px;
  height: 40px;
  position: fixed;
  right: 25px;
  bottom: 180px;
  z-index: 9999;
}
.box-socials #btn-call i {
  display: flex;
  display: -ms-flex;
  align-items: center;
  -ms-flex-align: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0166da;
  position: relative;
  z-index: 999;
}
.box-socials #btn-call i img {
  width: 70%;
  margin: auto;
}
.box-socials .kenit-alo-circle-fill {
  width: 60px;
  height: 60px;
  top: -10px;
  position: absolute;
  transition: all 0.2s ease-in-out;
  border-radius: 100%;
  border: 2px solid transparent;
  transition: all 0.5s;
  background-color: rgba(1, 102, 218, 0.45);
  opacity: 0.75;
  right: -10px;
}
.box-socials .kenit-alo-circle {
  width: 50px;
  height: 50px;
  top: -5px;
  right: -5px;
  position: absolute;
  background-color: transparent;
  border-radius: 100%;
  border: 2px solid rgba(17, 130, 252, 0.8);
  opacity: 0.1;
  border-color: #0166da;
  opacity: 0.5;
}
.box-socials .animated.infinite {
  animation-iteration-count: infinite;
}
.box-socials .zoomIn {
  animation-name: zoomInn;
}
.box-socials .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.box-socials .shake-anim {
  animation: shake-anim 1s infinite ease-in-out;
  transform-origin: 50% 50%;
}
@keyframes shake-anim {
  0% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes zoomInn {
  0% {
    transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.2;
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
    opacity: 0.2;
  }
  100% {
    transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.2;
  }
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 25px;
  width: 50px;
  height: 50px;
  background-color: var(--golden);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(212, 168, 75, 0.4);
}
.back-to-top:hover {
  transform: translateY(-3px);
  background-color: var(--golden-dark);
}
.back-to-top svg {
  width: 24px;
  height: 24px;
  fill: var(--dark-wood);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(45, 31, 26, 0.95);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.header.scrolled .header-inner {
  padding: 0.5rem 0;
}
.header.scrolled .header-inner .logo img {
  width: 80px;
  height: 80px;
}
.header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}
.header .header-inner .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50px;
  bottom: 0;
  transform: translate(-50%, 30%);
  background-color: rgba(45, 31, 26, 0.95);
  padding: 4px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 10;
  transition: all 0.3s ease;
}
.header .header-inner .logo img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
.header .header-inner .nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}
.header .header-inner .nav .nav-link {
  color: var(--cream);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}
.header .header-inner .nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--golden);
  transition: width 0.3s ease;
}
.header .header-inner .nav .nav-link:hover {
  color: var(--golden);
}
.header .header-inner .nav .nav-link:hover::after {
  width: 100%;
}
@media (max-width: 768px) {
  .header .header-inner .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background-color: rgba(45, 31, 26, 0.98);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
  }
  .header .header-inner .nav.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
  }
}
.header .header-inner .mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}
.header .header-inner .mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--golden);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .header .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    width: 90%;
    margin: 0 auto;
  }
  .header .header-inner .logo {
    position: relative;
    left: 0;
    bottom: 0;
    transform: none;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
  }
  .header .header-inner .logo img {
    width: 50px !important;
    height: 50px !important;
  }
  .header .header-inner .mobile-menu-btn {
    display: flex;
    margin-left: auto;
    position: relative;
    right: 0;
    top: 0;
    transform: none;
  }
}
.btn-readmore {
  color: var(--golden);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--golden);
  transition: all 0.3s;
}
.btn-readmore:hover {
  color: var(--golden);
}

.page-cover {
  width: 100%;
  position: relative;
  margin-top: 88px;
  overflow: hidden;
}
.page-cover .banner-img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .page-cover {
    margin-top: 66px;
  }
}

.news-section {
  padding-bottom: 80px;
}
.news-section .news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .news-section .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .news-section .news-grid {
    grid-template-columns: 1fr;
  }
}

.news-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.news-card:hover {
  transform: translateY(-10px);
}
.news-card:hover .news-thumb img {
  transform: scale(1.1);
}
.news-card .news-thumb {
  height: 250px;
  overflow: hidden;
  position: relative;
}
.news-card .news-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card .news-thumb .date {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--golden);
  color: #fff;
  padding: 10px;
  text-align: center;
  line-height: 1;
  font-family: "Crimson Text", Georgia, serif;
}
.news-card .news-thumb .date span {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
}
.news-card .news-content {
  padding: 25px;
}
.news-card .news-content h3 {
  font-family: "Crimson Text", Georgia, serif;
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #2d1f1a;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card .news-content p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 20px;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.pagination .page-node {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  text-decoration: none;
  color: #2d1f1a;
  transition: all 0.3s;
}
.pagination .page-node.active, .pagination .page-node:hover {
  background: var(--golden);
  color: #fff;
  border-color: var(--golden);
}

.new-detail-section {
  padding: 50px 0;
}
.new-detail-section .new-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}
.new-detail-section .new-detail-content .new-detail-title {
  font-family: "Crimson Text", Georgia, serif;
  font-size: 1.8rem;
  color: #2d1f1a;
  margin-bottom: 15px;
  line-height: normal;
}
.new-detail-section .new-detail-content .new-detail-body {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  text-align: justify;
}
.new-detail-section .new-detail-content .new-detail-body p {
  margin-bottom: 10px;
  line-height: 26px;
}
    .new-detail-section .new-detail-content .new-detail-body img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }
@media (max-width: 768px) {
  .new-detail-section .new-detail-content .new-detail-body p {
    font-size: 1rem;
    line-height: 24px;
  }
}
@media (max-width: 768px) {
  .new-detail-section .new-detail-content .new-detail-body iframe {
    width: 100%;
    max-height: 420px;
  }
}
.content-detail img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
.contact-section {
  padding: 50px 0;
}
.contact-section .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-section .contact-info .contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 20px;
}
.contact-section .contact-info .contact-list li {
  margin-bottom: 15px;
}
.contact-section .contact-info .contact-list li i {
  margin-right: 10px;
}
.contact-section .contact-form form .form-group {
  margin-bottom: 15px;
}
.contact-section .contact-form form .form-group input,
.contact-section .contact-form form .form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}/*# sourceMappingURL=main.css.map */