:root {
  --navy: #6D0F23;
  --navy-dark: #4A0918;
  --gold: #E9CD6C;
  --gold-dark: #E2C35A;
  --white: #FFFFFF;
  --muted: #F3EAEA;
  --cream: #fef3e8;
  --cream-light: #fff6ed;
  --text-dark: #1e1e2a;
  --text-soft: #4f443a;
  --border: rgba(210, 164, 56, 0.35);
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: #fefcf8;
  color: var(--text-dark);
  line-height: 1.5;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
  background: rgba(74, 9, 24, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--gold);
  height: 230px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  gap: 24px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.logo-img {
    width: 110px;
    height: auto;
    display: block;
    margin-top: 130px;
}

.logo-divider {
    height: 45px;
}

.logo-sub {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.4px;
  display: flex;
  align-items: center;
  margin-top: 150px;
}

.nav-lang-wrapper {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 150px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: var(--white);
  transition: 0.2s;
  font-size: 0.95rem;
}

.nav-links a:hover { color: var(--gold); }

/* Language buttons */
.lang-switch {
  display: flex;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--gold);
  padding: 5px;
  border-radius: 60px;
}

.lang-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 40px;
  cursor: pointer;
  transition: 0.2s;
  font-family: inherit;
}

.lang-btn.active,
.lang-btn:hover {
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: 0 4px 14px rgba(210,164,56,0.35);
}

/* Hero */
.hero {
  background: linear-gradient(105deg, var(--cream-light) 0%, var(--cream) 100%);
  padding: 230px 0 90px;
  border-bottom: 1px solid #f0e3d8;
  overflow: hidden;
}

.hero .container { max-width: 1500px; }

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  flex: 0.85;
  text-align: left;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 5.3rem);
  font-weight: 700;
  line-height: 1.15;
  background: linear-gradient(135deg, #2c2c38, #b47c48);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 24px;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-soft);
  max-width: 600px;
  margin-bottom: 30px;
}

.hero-btn,
.contact-card a {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 14px 30px;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  transition: 0.25s;
  box-shadow: 0 8px 18px rgba(210,164,56,0.25);
}

.hero-btn:hover,
.contact-card a:hover {
  background: var(--gold-dark);
  color: var(--navy-dark);
  transform: translateY(-2px);
}

.hero-image {
  flex: 1.5;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: -120px;
}

.hero-image img {
  width: 900px;
  max-width: none;
  height: auto;
  display: block;
  border-radius: 34px;
  opacity: 0.92;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 22%);
  mask-image: linear-gradient(to right, transparent 0%, black 22%);
}

/* Sections */
.section { padding: 80px 0; }

.gallery-hero-section {
  padding-top: 230px;
}

.back-btn {
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 20px;
}

.section-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 52px;
  position: relative;
  width: 100%;
}

.section-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 3px;
  background: var(--gold);
  margin: 14px auto 0;
  border-radius: 4px;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--white);
  border-radius: 28px;
  padding: 36px 24px 32px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 12px 24px -12px rgba(0,0,0,0.08);
  border: 1px solid #f1e6dc;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 36px -16px rgba(0,0,0,0.12);
  border-color: var(--border);
}

.service-image {
  width: 170px;
  height: 170px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--gold);
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s;
}

.service-card:hover .service-image img {
  transform: scale(1.08);
}

.service-title {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #2c2c38;
}

.service-desc {
  color: #605a52;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Contact */
.contact-section { padding-top: 0; }

.contact-card {
  background: #faf5ef;
  border-radius: 48px;
  padding: 48px 32px;
  text-align: center;
}

.contact-card i {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 16px;
  display: inline-block;
}

.contact-card h3 {
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.contact-card p {
  max-width: 500px;
  margin: 0 auto 20px;
  color: var(--text-soft);
}

/* Footer */
.footer {
  background: var(--navy-dark);
  padding: 36px 22px;
  border-top: 2px solid var(--gold);
  color: var(--muted);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-col {
  text-align: center;
}

.footer-col p {
  margin: 10px 0;
}

.footer-col i {
  margin-right: 10px;
  color: var(--gold);
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  width: 100%;
}

.footer-logo-img {
  width: 180px;
  height: auto;
}

#footer-follow {
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-links a {
  color: var(--gold);
  text-decoration: none;
  transition: 0.2s;
  font-size: 20px;
}

.social-links a:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.copyright {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 28px;
  font-size: 0.85rem;
}

/* Gallery — masonry layout (fixes gaps caused by mixed image heights) */
.gallery-grid {
  column-count: 3;
  column-gap: 20px;
  margin-top: 40px;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    margin-bottom: 20px;
    break-inside: avoid;
    cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.02);
}

@media (max-width: 900px) {
  .gallery-grid { column-count: 2; }
}

@media (max-width: 560px) {
  .gallery-grid { column-count: 1; }
}

/* Video section */
.video-section {
  margin-top: 60px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.video-grid video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  background: #000;
}

/* Tablet */
@media (max-width: 900px) {
  .hero {
    padding: 220px 0 70px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image {
    margin-right: 0;
    width: 100%;
    justify-content: center;
  }

  .hero-image img {
    width: 100%;
    max-width: 650px;
    border-radius: 28px;
  }
}

/* Mobile */
@media (max-width: 780px) {
  .site-header {
    position: static;
    height: auto;
    padding: 16px 0;
  }

  .header-inner {
    height: auto;
  }

  .hero {
    padding-top: 40px;
  }

  .gallery-hero-section {
    padding-top: 30px;
  }

  .header-inner {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
  }

  .logo-area { gap: 12px; }

  .logo-img { width: 130px; margin-top: 0; }

  .logo-divider { height: 30px; }

  .logo-sub { font-size: 0.72rem; margin-top: 0; }

  .nav-lang-wrapper {
    width: 100%;
    justify-content: center;
    gap: 18px;
    margin-top: 0;
  }

  .nav-links { gap: 20px; }

  .hero h1 { font-size: 2.5rem; }

  .section-title { font-size: 1.9rem; }
}

@media (max-width: 480px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-col {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    justify-content: center;
}

.footer-logo-img {
    display: block;
    margin: 0 auto 15px;
}

.footer-col p {
    text-align: center;
}

#footer-follow {
    text-align: center;
}

.social-links {
    justify-content: center;
}
  .container { padding: 0 18px; }

  .logo-area {
    flex-direction: column;
    gap: 4px;
  }

  .logo-divider { display: none; }

  .nav-lang-wrapper {
    flex-direction: column;
    gap: 12px;
  }

  .hero { padding-top: 40px; }

  .hero h1 { font-size: 2.2rem; }

  .service-card { padding: 28px 18px; }

  .service-image {
    width: 145px;
    height: 145px;
  }
}
.lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.lightbox.show{
    display:flex;
}

.lightbox img{
    max-width:90%;
    max-height:90%;
    border-radius:12px;
}

.close{
    position:absolute;
    top:30px;
    right:45px;
    font-size:45px;
    color:white;
    cursor:pointer;
}

.prev,
.next{

    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:none;
    border:none;
    color:white;
    font-size:60px;
    cursor:pointer;
    padding:20px;
}

.prev{
    left:25px;
}

.next{
    right:25px;
}

.prev:hover,
.next:hover,
.close:hover{
    color:#D2A438;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-card a {
    display: inline-block;
    margin: 0 auto;
    text-align: center;
}
.contact-card a {
    word-break: break-word;
}

