* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #000000;
  --secondary-color: #1a1a1a;
  --tertiary-color: #333333;
  --accent-color: #666666;
  --text-color: #cccccc;
  --white-color: #ffffff;
  --gold-color: #d4af37;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: var(--primary-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo h2 {
  font-family: "Oswald", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white-color);
  letter-spacing: 2px;
  margin: 0;
  line-height: 1;
}

.logo span {
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  color: var(--gold-color);
  letter-spacing: 4px;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
}

.page-header h1 .nav-link:hover,
.nav-link.active {
  color: var(--white-color);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--white-color);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.hero-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
  z-index: -1;
}

.hero-content {
  text-align: center;
  z-index: 1;
  animation: fadeInUp 1s ease;
}

.hero-title {
  font-family: "Oswald", sans-serif;
  font-size: 80px;
  font-weight: 700;
  color: var(--white-color);
  letter-spacing: 4px;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  color: var(--gold-color);
  letter-spacing: 6px;
  margin-bottom: 40px;
}

.cta-button {
  background-color: transparent;
  color: var(--white-color);
  border: 2px solid var(--gold-color);
  padding: 15px 40px;
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.cta-button:hover {
  background-color: var(--gold-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: "Oswald", sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--white-color);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.divider {
  width: 80px;
  height: 3px;
  background-color: var(--gold-color);
  margin: 0 auto;
}

/* About Section */
.about {
  background-color: var(--secondary-color);
  padding: 80px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-color);
}

.about-image img {
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Featured Works Section */
.featured {
  background-color: var(--secondary-color);
  padding: 80px 0;
}

.featured-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 300px));
  gap: 30px;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-10px);
}

.gallery-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  color: var(--white-color);
  padding: 30px 20px 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.overlay h3 {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  margin-bottom: 10px;
}

.overlay p {
  font-size: 14px;
  color: var(--accent-color);
}

/* Artist Section */
.artist {
  background-color: var(--primary-color);
  padding: 80px 0;
}

.artist-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.artist-image img {
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.artist-text h3 {
  font-family: "Oswald", sans-serif;
  font-size: 32px;
  color: var(--white-color);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.artist-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-color);
}

.artist-achievements h4 {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  color: var(--gold-color);
  margin-bottom: 15px;
}

.artist-achievements ul {
  list-style: none;
}

.artist-achievements li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: var(--text-color);
}

.artist-achievements li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--gold-color);
  font-size: 18px;
}

/* Footer */
.footer {
  background-color: var(--primary-color);
  padding: 60px 0 20px;
  border-top: 1px solid var(--tertiary-color);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo h2 {
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  color: var(--white-color);
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.footer-logo span {
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  color: var(--gold-color);
  letter-spacing: 3px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--text-color);
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold-color);
}

/* Footer Contact */
.footer-contact h4 {
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  color: var(--white-color);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-contact .contact-info {
  list-style: none;
}

.footer-contact .contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: var(--text-color);
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact .contact-info li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold-color);
}

.footer-contact .contact-info li span {
  flex: 1;
}

.social-links h4 {
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  color: var(--white-color);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.social-icons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-icon {
  color: var(--text-color);
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.social-icon:hover {
  color: var(--gold-color);
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--tertiary-color);
}

.footer-bottom p {
  font-size: 14px;
  color: var(--accent-color);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo-img {
    width: 40px;
    height: 40px;
  }

  .logo h2 {
    font-size: 20px;
  }

  .logo span {
    font-size: 12px;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--secondary-color);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .about-content,
  .artist-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .featured-gallery {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .social-icons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .logo h2 {
    font-size: 20px;
  }

  .hero-title {
    font-size: 36px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .about-text p,
  .artist-text p {
    font-size: 16px;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 14px;
  }
}

/* Additional styles for secondary pages */
.page-header {
  padding: 120px 0 60px;
  text-align: center;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--primary-color)
  );
}

.page-header h1 {
  font-family: "Oswald", sans-serif;
  font-size: 48px;
  color: var(--white-color);
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.page-header p {
  font-size: 18px;
  color: var(--accent-color);
  max-width: 600px;
  margin: 0 auto;
}

/* About page specific styles */
.about-story {
  background-color: var(--primary-color);
  padding: 80px 0;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-text h2 {
  font-family: "Oswald", sans-serif;
  font-size: 36px;
  color: var(--white-color);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.story-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-color);
}

.story-image img {
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.mission-vision {
  background-color: var(--secondary-color);
  padding: 80px 0;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mv-item {
  text-align: center;
  padding: 40px 30px;
  background: rgba(26, 26, 26, 0.5);
  border-radius: 10px;
  border: 1px solid var(--tertiary-color);
}

.mv-item h3 {
  font-family: "Oswald", sans-serif;
  font-size: 28px;
  color: var(--gold-color);
  margin-bottom: 20px;
}

.mv-item p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-color);
}

.values {
  background-color: var(--primary-color);
  padding: 80px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(51, 51, 51, 0.1);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-10px);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-item h4 {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  color: var(--white-color);
  margin-bottom: 15px;
}

.value-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--accent-color);
}

.team {
  background-color: var(--secondary-color);
  padding: 80px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.team-member {
  text-align: center;
  background: rgba(26, 26, 26, 0.5);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.member-image {
  height: 300px;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
  transform: scale(1.1);
}

.member-info {
  padding: 30px 20px;
}

.member-info h3 {
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  color: var(--white-color);
  margin-bottom: 5px;
}

.member-info span {
  color: var(--gold-color);
  font-size: 14px;
  margin-bottom: 15px;
  display: block;
}

.member-info p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-color);
}

.stats {
  background: linear-gradient(
    135deg,
    var(--tertiary-color),
    var(--secondary-color)
  );
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item h3 {
  font-family: "Oswald", sans-serif;
  font-size: 48px;
  color: var(--gold-color);
  margin-bottom: 10px;
}

.stat-item span {
  font-size: 16px;
  color: var(--text-color);
  letter-spacing: 1px;
}

/* Gallery page specific styles */
.filter-section {
  background-color: var(--secondary-color);
  padding: 40px 0;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.filter-btn {
  background: transparent;
  color: var(--text-color);
  border: 2px solid var(--tertiary-color);
  padding: 12px 24px;
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold-color);
  color: var(--primary-color);
  border-color: var(--gold-color);
}

.gallery-section {
  background-color: var(--primary-color);
  padding: 60px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  aspect-ratio: 4/5;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
  color: var(--white-color);
  padding: 30px 20px 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item .overlay h3 {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  margin-bottom: 5px;
}

.gallery-item .overlay p {
  font-size: 14px;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.view-btn {
  background: transparent;
  color: var(--gold-color);
  border: 1px solid var(--gold-color);
  padding: 8px 16px;
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.view-btn:hover {
  background: var(--gold-color);
  color: var(--primary-color);
}

.load-more-container {
  text-align: center;
}

.load-more-btn {
  background: transparent;
  color: var(--white-color);
  border: 2px solid var(--gold-color);
  padding: 15px 40px;
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.load-more-btn:hover {
  background: var(--gold-color);
  color: var(--primary-color);
}

/* Contact page specific styles */
.contact-content {
  background-color: var(--primary-color);
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form-section h2,
.contact-info-section h2 {
  font-family: "Oswald", sans-serif;
  font-size: 36px;
  color: var(--white-color);
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(51, 51, 51, 0.1);
  border-radius: 10px;
  border: 1px solid var(--tertiary-color);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-details h3 {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  color: var(--white-color);
  margin-bottom: 5px;
}

.contact-details p {
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.6;
}

.social-section {
  margin-top: 40px;
}

.social-section h3 {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  color: var(--white-color);
  margin-bottom: 20px;
}

.social-links-horizontal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.social-link-horizontal {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-color);
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  padding: 10px 20px;
  border: 1px solid var(--tertiary-color);
  border-radius: 25px;
}

.social-link-horizontal:hover {
  color: var(--gold-color);
  border-color: var(--gold-color);
  transform: translateY(-2px);
}

.map-section {
  background-color: var(--secondary-color);
  padding: 80px 0;
}

.map-section h2 {
  font-family: "Oswald", sans-serif;
  font-size: 36px;
  color: var(--white-color);
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 1px;
  padding: 0 20px;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  display: block;
  border-radius: 10px;
}

/* Responsive for map */
@media (max-width: 768px) {
  .map-section {
    padding: 40px 0;
  }

  .map-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .map-container {
    padding: 0 15px;
  }

  .map-container iframe {
    height: 350px;
  }
}

.faq-section {
  background-color: var(--primary-color);
  padding: 80px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.faq-item {
  padding: 30px;
  background: rgba(51, 51, 51, 0.1);
  border-radius: 10px;
  border: 1px solid var(--tertiary-color);
}

.faq-item h3 {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  color: var(--gold-color);
  margin-bottom: 15px;
}

.faq-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-color);
}

/* Responsive Design for Secondary Pages */
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 36px;
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mv-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-buttons {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .social-links-horizontal {
    justify-content: center;
  }
}

/* Ý nghĩa hình xăm Section */
.y-nghia-hinh-xam {
  padding: 100px 0;
  background-color: var(--primary-color);
}

.y-nghia-content {
  margin-top: 50px;
}

.y-nghia-content > p {
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #999;
  max-width: 800px;
  margin: 0 auto 60px;
}

.y-nghia-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.y-nghia-card-link {
  text-decoration: none;
  color: inherit;
}

.y-nghia-card {
  background: var(--secondary-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--tertiary-color);
}

.y-nghia-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
  border-color: var(--gold-color);
}

.y-nghia-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.y-nghia-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.y-nghia-card:hover .y-nghia-card-image img {
  transform: scale(1.05);
}

.y-nghia-card-content {
  padding: 25px;
}

.y-nghia-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 12px;
}

.meta-tag {
  display: inline-block;
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold-color);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 600;
}

.meta-views {
  color: var(--accent-color);
}

.y-nghia-card-title {
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white-color);
  margin-bottom: 12px;
  line-height: 1.4;
}

.y-nghia-card-excerpt {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.y-nghia-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid var(--tertiary-color);
  font-size: 13px;
}

.read-time {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-color);
}

.read-time svg {
  color: var(--gold-color);
}

.read-more {
  color: var(--gold-color);
  font-weight: 600;
  transition: color 0.3s ease;
}

.y-nghia-card:hover .read-more {
  color: var(--white-color);
}

/* Old styles - keep for fallback */
.view-more {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.view-more span {
  color: #d4af37;
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.y-nghia-item:hover .view-more {
  opacity: 1;
}

.y-nghia-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.y-nghia-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.y-nghia-item:hover .y-nghia-image img {
  transform: scale(1.05);
}

.y-nghia-info {
  padding: 25px;
}

.y-nghia-info h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #d4af37;
  margin-bottom: 15px;
}

.y-nghia-info p {
  color: #999;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Responsive cho Ý nghĩa hình xăm */
@media (max-width: 1024px) {
  .y-nghia-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .y-nghia-card-image {
    height: 180px;
  }

  .y-nghia-card-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .y-nghia-hinh-xam {
    padding: 70px 0;
  }

  .y-nghia-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .y-nghia-card-content {
    padding: 18px;
  }

  .y-nghia-card-image,
  .y-nghia-image {
    height: 160px;
  }

  .y-nghia-card-title {
    font-size: 1rem;
  }

  .y-nghia-card-excerpt {
    font-size: 0.85rem;
    -webkit-line-clamp: 2;
  }

  .y-nghia-card-footer {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .y-nghia-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .y-nghia-card-image {
    height: 200px;
  }

  .y-nghia-card-title {
    font-size: 1.1rem;
  }
}

/* =====================================================
   Thu Vien Page Styles
   ===================================================== */

/* Header Section */
.thu-vien-header {
  padding: 80px 0 60px;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--primary-color)
  );
  text-align: center;
}

.thu-vien-header h1 {
  font-family: "Oswald", sans-serif;
  font-size: 56px;
  color: var(--white-color);
  margin-bottom: 20px;
}

.divider {
  width: 100px;
  height: 4px;
  background: var(--gold-color);
  margin: 0 auto 30px;
}

.thu-vien-header p {
  font-size: 18px;
  color: var(--text-color);
}

/* Filter Section */
.filter-section {
  padding: 30px 0;
  background: var(--secondary-color);
  border-bottom: 1px solid var(--tertiary-color);
  position: sticky;
  top: 0;
  z-index: 100;
}

.filter-bar {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.search-box {
  flex: 1;
  min-width: 280px;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--primary-color);
  border: 1px solid var(--tertiary-color);
  border-radius: 12px;
  padding: 12px 20px;
}

.search-box svg {
  color: var(--gold-color);
  margin-right: 12px;
  flex-shrink: 0;
}

.search-box input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--white-color);
  font-size: 15px;
  outline: none;
}

.search-box input::placeholder {
  color: var(--accent-color);
}

.filter-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-btn-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--primary-color);
  border: 1px solid var(--tertiary-color);
  border-radius: 12px;
  color: var(--white-color);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.filter-btn-toggle:hover {
  background: var(--gold-color);
  color: var(--primary-color);
}

.filter-btn-toggle.active {
  background: var(--gold-color);
  color: var(--primary-color);
}

.filter-btn-toggle svg {
  flex-shrink: 0;
}

.selected-count {
  display: none;
  background: var(--gold-color);
  color: var(--primary-color);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
}

.selected-count.show {
  display: inline-block;
}

.clear-filter-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  background: transparent;
  border: 1px solid var(--gold-color);
  border-radius: 12px;
  color: var(--gold-color);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.clear-filter-btn:hover {
  background: var(--gold-color);
  color: var(--primary-color);
}

/* Selected Types Display */
.selected-types {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.type-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--gold-color);
  color: var(--primary-color);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.type-tag button {
  background: transparent;
  border: none;
  color: var(--primary-color);
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.type-filter-dropdown.show {
  display: block;
}

.dropdown-header {
  padding: 20px;
  border-bottom: 1px solid var(--tertiary-color);
}

.dropdown-header h3 {
  font-size: 18px;
  color: var(--white-color);
  margin-bottom: 15px;
}

.dropdown-search {
  display: flex;
  align-items: center;
  background: var(--primary-color);
  border: 1px solid var(--tertiary-color);
  border-radius: 10px;
  padding: 10px 15px;
}

.dropdown-search svg {
  color: var(--gold-color);
  margin-right: 10px;
}

.dropdown-search input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--white-color);
  font-size: 14px;
  outline: none;
}

.dropdown-list {
  max-height: 300px;
  overflow-y: auto;
  padding: 10px;
}

.type-item {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.type-item:hover {
  background: var(--primary-color);
}

.type-item input {
  width: 18px;
  height: 18px;
  margin-right: 12px;
  accent-color: var(--gold-color);
}

.type-item span {
  color: var(--white-color);
  font-size: 14px;
}

.dropdown-footer {
  display: flex;
  gap: 10px;
  padding: 15px 20px;
  border-top: 1px solid var(--tertiary-color);
}

/* Type Filter Modal (Mobile) */
.type-filter-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.type-filter-modal.show {
  display: block;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.modal-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--secondary-color);
  border-radius: 24px 24px 0 0;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--tertiary-color);
}

.modal-header h3 {
  font-size: 18px;
  color: var(--white-color);
}

.modal-close {
  background: transparent;
  border: none;
  color: var(--text-color);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

.modal-search {
  display: flex;
  align-items: center;
  background: var(--primary-color);
  border: 1px solid var(--tertiary-color);
  border-radius: 10px;
  padding: 12px 15px;
  margin: 15px 20px;
}

.modal-search svg {
  color: var(--gold-color);
  margin-right: 10px;
}

.modal-search input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--white-color);
  font-size: 14px;
  outline: none;
}

.modal-list {
  flex: 1;
  overflow-y: auto;
  padding: 10px 20px;
}

.modal-footer {
  display: flex;
  gap: 10px;
  padding: 15px 20px;
  border-top: 1px solid var(--tertiary-color);
}

/* Buttons */
.btn-clear,
.btn-apply {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-clear {
  background: transparent;
  border: 1px solid var(--tertiary-color);
  color: var(--text-color);
}

.btn-clear:hover {
  background: var(--primary-color);
}

.btn-apply {
  background: var(--gold-color);
  color: var(--primary-color);
}

.btn-apply:hover {
  background: var(--white-color);
}

/* Gallery Section */
.gallery-section {
  padding: 60px 0;
  min-height: 50vh;
}

.result-count {
  margin-bottom: 30px;
  color: var(--text-color);
  font-size: 15px;
}

.result-count strong {
  color: var(--gold-color);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.gallery-card {
  display: block;
  text-decoration: none;
}

.gallery-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 16px;
  background: var(--secondary-color);
  margin-bottom: 15px;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-image img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(212, 175, 55, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay svg {
  color: var(--primary-color);
}

.gallery-category {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold-color);
  color: var(--primary-color);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  z-index: 2;
}

.gallery-title {
  font-size: 15px;
  color: var(--white-color);
  font-weight: 500;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* No Results */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
}

.no-results svg {
  color: var(--accent-color);
  margin-bottom: 20px;
}

.no-results p {
  color: var(--text-color);
  font-size: 16px;
  margin-bottom: 20px;
}

.btn-reset {
  display: inline-block;
  padding: 12px 28px;
  background: var(--gold-color);
  color: var(--primary-color);
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
}

/* Loading Spinner */
.loading-spinner {
  text-align: center;
  padding: 40px 0;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--tertiary-color);
  border-top-color: var(--gold-color);
  border-radius: 50%;
  margin: 0 auto;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* End Message */
.end-message {
  text-align: center;
  padding: 40px 0;
  color: var(--accent-color);
  font-size: 16px;
  letter-spacing: 3px;
}

/* Responsive cho Thu Vien */
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .search-box {
    min-width: 100%;
  }

  .filter-actions {
    justify-content: space-between;
  }

  .filter-btn-toggle {
    flex: 1;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .thu-vien-header h1 {
    font-size: 36px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .gallery-title {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .thu-vien-header {
    padding: 50px 0 40px;
  }

  .thu-vien-header h1 {
    font-size: 28px;
  }

  .filter-actions {
    flex-direction: column;
  }

  .filter-btn-toggle {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Reviews Section - Elfsight Widget */
.reviews-section {
  background-color: var(--primary-color);
  padding: 80px 0;
}

.reviews-content {
  max-width: 1000px;
  margin: 0 auto;
}

/* Elfsight Widget Container */
.elfsight-app-d500537c-d151-4e10-8421-8b5d300c3f80 {
  border-radius: 16px;
  overflow: hidden;
  min-height: 400px;
}

/* Elfsight custom styles */
.elfsight-app-d500537c-d151-4e10-8421-8b5d300c3f80 .elfsight-google-reviews {
  font-family: "Roboto", sans-serif !important;
}

.elfsight-app-d500537c-d151-4e10-8421-8b5d300c3f80 .elfsight-star {
  color: #fbbc04 !important;
}

.elfsight-app-d500537c-d151-4e10-8421-8b5d300c3f80 .elfsight-write-review-button {
  background: var(--gold-color) !important;
  color: var(--primary-color) !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

.elfsight-app-d500537c-d151-4e10-8421-8b5d300c3f80 .elfsight-write-review-button:hover {
  background: var(--white-color) !important;
}

/* Location Section */
.location-section {
  background-color: var(--secondary-color);
  padding: 80px 0;
}

.map-content {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 40px;
  align-items: start;
}

.map-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: var(--secondary-color);
  border-radius: 12px;
  border: 1px solid var(--tertiary-color);
}

.info-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 10px;
}

.info-icon svg {
  color: var(--gold-color);
}

.info-details h3 {
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  color: var(--gold-color);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.info-details p {
  color: var(--text-color);
  font-size: 14px;
  line-height: 1.6;
}

.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--tertiary-color);
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  display: block;
}

/* Responsive for reviews & location */
@media (max-width: 992px) {
  .map-content {
    grid-template-columns: 1fr;
  }

  .map-wrapper iframe {
    height: 350px;
  }

  .google-maps-embed iframe {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .reviews-section,
  .location-section {
    padding: 50px 0;
  }

  .elfsight-app-6c6d795a-4324-4682-8b29-3a5fd5e427a43 {
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .elfsight-app-6c6d795a-4324-4682-8b29-3a5fd5e427a43 {
    min-height: 250px;
  }
}
