html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  background: #faf8f5;
}

/* NAVBAR */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  z-index: 100;
  color: white;
  background: transparent;
  transition: background 0.4s ease, color 0.4s ease;
}

#navbar a {
  color: white;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

#navbar.scrolled {
  background: white;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

#navbar.scrolled a {
  color: black;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 30px;
}

.lang-switcher a {
  font-size: 11px;
  letter-spacing: 2px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.lang-switcher a:hover {
  opacity: 1;
}

.lang-switcher a.active {
  opacity: 1;
  font-weight: 600;
}

.lang-switcher span {
  opacity: 0.3;
}

/* HAMBURGER BUTTON */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: white;
  transition: all 0.3s ease;
}

#navbar.scrolled .hamburger span {
  background: black;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* HERO SECTION */
#hero {
  position: relative;
  height: 100vh;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 15, 0, 0.45);
}

.hero-content {
  position: relative;
  text-align: center;
  color: white;
  z-index: 1;
}

.hero-subtitle {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  opacity: 0.8;
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 100px;
  font-weight: 300;
  margin: 0 0 20px 0;
  line-height: 1;
}

.hero-tagline {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.3em;
  opacity: 0.8;
  margin-bottom: 20px;
  color: white;
}

.hero-description {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 300;
  opacity: 0.9;
  margin-bottom: 40px;
}

.hero-btn {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: white;
  text-decoration: none;
  padding: 16px 48px;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.hero-btn:hover {
  border-color: white;
  color: white;
  opacity: 0.8;
}

/* SERVICES SECTION */
#services {
  padding: 100px 60px;
  background: #faf8f5;
}

#services > p {
  text-align: center;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: #aaa;
  margin-bottom: 16px;
}

#services > h2 {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: #2c1810;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #e0d8d0;
}

.service-card {
  background: #faf8f5;
  padding: 40px;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: #2c1810;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0d8d0;
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f0ebe4;
}

.service-item:last-child {
  border-bottom: none;
}

.service-name {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #555;
  flex: 1;
}

.service-time {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  color: #bbb;
  margin: 0 20px;
  white-space: nowrap;
}

.service-price {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  color: #c9a96e;
  font-weight: 500;
  white-space: nowrap;
}

.service-card:last-child {
  grid-column: 1;
  background: #faf8f5;
}

.empty-card {
  background: #faf8f5;
}

/* GALLERY SECTION */
#gallery {
  padding: 100px 60px;
  background: #f5f2ee;
}

#gallery > p {
  text-align: center;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: #aaa;
  margin-bottom: 16px;
}

#gallery > h2 {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: #2c1810;
  margin-bottom: 60px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.gallery-card {
  position: relative;
  height: 400px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.5s ease;
}

.gallery-card:hover .gallery-overlay {
  background: rgba(0, 0, 0, 0.25);
}

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 16px;
  color: white;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  z-index: 1;
}

.gallery-card:hover .gallery-label {
  transform: translateY(0);
}

/* ABOUT SECTION */
#about {
  padding: 100px 60px;
  background: #faf8f5;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  overflow: hidden;
}

.about-images img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
}

.about-label {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: #aaa;
  margin-bottom: 12px;
}

#about h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: #2c1810;
  margin-bottom: 30px;
}

.about-text p {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #777;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* REVIEWS SECTION */
#reviews {
  padding: 100px 60px;
  background: #f5f2ee;
}

#reviews > p {
  text-align: center;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: #aaa;
  margin-bottom: 16px;
}

#reviews > h2 {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: #2c1810;
  margin-bottom: 60px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.reviews-card {
  background: white;
  padding: 30px;
}

.reviews-card::before {
  content: '★★★★★';
  color: #c9a96e;
  font-size: 14px;
  display: block;
  margin-bottom: 16px;
}

.reviews-text {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-style: italic;
  font-weight: 300;
  color: #777;
  line-height: 1.8;
  display: block;
  margin-bottom: 16px;
}

.reviews-name {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #2c1810;
  display: block;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #f0ebe4;
}

/* CONTACT SECTION */
#contact {
  padding: 100px 60px;
  background: #2c1e10;
  color: white;
}

#contact > p {
  text-align: center;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

#contact > h2 {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: white;
  margin-bottom: 60px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-item i {
  color: #c9a96e;
  font-size: 16px;
  margin-top: 3px;
}

.contact-item p {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  color: white;
}

.contact-sub {
  font-size: 11px !important;
  color: rgba(255,255,255,0.5) !important;
  margin-top: 4px;
}

.contact-desc {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 30px;
}

.contact-buttons {
  display: flex;
  gap: 16px;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  text-decoration: none;
  padding: 16px 28px;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  transition: border-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;  /* ADD THIS LINE */
}

.contact-btn:hover {
  border-color: #c9a96e;
  color: #c9a96e;
}

/* FOOTER */
footer {
  background: #2c1e10;
  padding: 0 60px 40px 60px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
}

.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: rgba(255,255,255,0.5);
}

.footer-copy {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible,
.fade-left.visible,
.fade-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* MOBILE */
@media (max-width: 768px) {

  #navbar {
    padding: 16px 20px;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    height: 100vh;
    background: white;
    padding: 80px 40px;
    gap: 24px;
    z-index: 100;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 99;
  }

  .menu-overlay.open {
    display: block;
  }

  .nav-links a {
    color: black !important;
    font-size: 14px;
  }

  .lang-switcher {
    margin-left: 0;
    margin-top: 20px;
  }

  .lang-switcher a {
    color: black !important;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 60px;
  }

  .hero-subtitle {
    font-size: 10px;
  }

  .hero-description {
    font-size: 13px;
    padding: 0 20px;
  }

  .hero-btn {
    padding: 12px 32px;
  }

  #services {
    padding: 60px 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card:last-child {
    max-width: 100%;
  }

  .service-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .service-name {
    font-size: 12px;
  }

  .service-time {
    margin: 0;
    font-size: 10px;
  }

  .service-price {
    font-size: 12px;
  }

  #gallery {
    padding: 60px 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }

  .gallery-card {
    height: 200px;
  }

  #about {
    padding: 60px 20px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-images {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }

  .about-images img {
    height: 150px;
  }

  #reviews {
    padding: 60px 20px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  #contact {
    padding: 60px 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-buttons {
    flex-direction: column;
  }

  .contact-btn {
    justify-content: center;
  }

  footer {
    padding: 0 20px 30px 20px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  #services > h2,
  #gallery > h2,
  #about h2,
  #reviews > h2,
  #contact > h2 {
    font-size: 36px;
  }

}

/* BLOG SECTION */
#blog {
  padding: 100px 60px;
  background: #faf8f5;
}

#blog > p {
  text-align: center;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: #aaa;
  margin-bottom: 16px;
}

#blog > h2 {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: #2c1810;
  margin-bottom: 60px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.blog-card {
  background: white;
  padding: 0px;
  overflow: hidden;
}

.blog-date {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  color: #c9a96e;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}

.blog-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: #2c1810;
  margin-bottom: 16px;
}

.blog-content {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #777;
  line-height: 1.8;
  word-break: break-word;
}

.blog-empty {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  color: #aaa;
  text-align: center;
  grid-column: 1 / -1;
}

.blog-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.blog-card-content {
  padding: 36px;
}


/* BLOG READ MORE */
.blog-read-more {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #c9a96e;
  text-decoration: none;
  margin-top: 16px;
  border-bottom: 1px solid #c9a96e;
  padding-bottom: 2px;
  transition: opacity 0.3s ease;
}

.blog-read-more:hover {
  opacity: 0.7;
}

/* BLOG MOBILE */
@media (max-width: 768px) {
  #blog {
    padding: 60px 20px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
}


/* FULL POST PAGE */
.post-page {
  max-width: 700px;
  margin: 0 auto;
  padding: 80px 40px;
}

.post-back {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #aaa;
  text-decoration: none;
  margin-bottom: 40px;
}

.post-back:hover {
  color: #2c1810;
}

.post-hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin-bottom: 40px;
}

.post-date {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  color: #c9a96e;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}

.post-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: #2c1810;
  margin-bottom: 40px;
  line-height: 1.2;
}

.post-content {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #555;
  line-height: 2;
  word-break: break-word;  /* ADD THIS */
}

/* SEE ALL BUTTON */
.blog-see-all {
  text-align: center;
  margin-top: 50px;
}

.blog-see-all-btn {
  display: inline-block;
  border: 1px solid #2c1810;
  color: #2c1810;
  text-decoration: none;
  padding: 16px 48px;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  transition: background 0.3s ease, color 0.3s ease;
}

.blog-see-all-btn:hover {
  background: #2c1810;
  color: white;
}

/* BLOG PAGE */
.blog-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 60px 80px 60px;
  min-height: calc(100vh - 200px);
}

.blog-page-label {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: #aaa;
  margin-bottom: 16px;
}

.blog-page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: #2c1810;
  margin-bottom: 60px;
}

/* BLOG PAGE MOBILE */
@media (max-width: 768px) {
  .blog-page {
    padding: 100px 20px 60px 20px;
  }
}