/* --------------------------------------------------
   KUĆA KLADOVO - Premium Presentation Stylesheet
   Designed for: Luxury property sale presentation
   Author: Antigravity AI
   -------------------------------------------------- */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* CSS Custom Properties / Design Tokens */
:root {
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  /* Harmonious Luxury Color Palette */
  --bg-dark: #0f0f10;
  --bg-card-dark: rgba(28, 28, 30, 0.7);
  --bg-light: #fbfaf7;
  --bg-card-light: rgba(255, 255, 255, 0.8);
  
  --color-gold: #c5a880;
  --color-gold-hover: #dfc298;
  --color-gold-dark: #8c714c;
  --color-text-dark: #1a1a1a;
  --color-text-light: #f3f3f5;
  --color-text-muted-dark: #626266;
  --color-text-muted-light: #a1a1aa;
  
  --border-light: rgba(197, 168, 128, 0.2);
  --border-dark: rgba(197, 168, 128, 0.15);
  
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
  
  --shadow-gold: 0 8px 30px rgba(197, 168, 128, 0.15);
  --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.3);
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--color-text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.01em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--color-gold-dark);
  border-radius: 5px;
  border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

/* --------------------------------------------------
   Reusable UI Elements & Layout Utilities
   -------------------------------------------------- */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
}

/* Section Layouts */
section {
  padding: 8rem 0;
  position: relative;
}

@media (max-width: 768px) {
  section {
    padding: 5rem 0;
  }
}

.section-light {
  background-color: var(--bg-light);
  color: var(--color-text-dark);
}

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem auto;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 1.25rem;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background-color: var(--color-gold);
}

.section-header p {
  font-size: 1.15rem;
  font-style: italic;
  font-family: var(--font-serif);
}

.section-light .section-header p {
  color: var(--color-text-muted-dark);
}

.section-dark .section-header p {
  color: var(--color-text-muted-light);
}

@media (max-width: 768px) {
  .section-header {
    margin-bottom: 3.5rem;
  }
  .section-header h2 {
    font-size: 2.25rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--color-gold);
  color: #111;
  border: 1px solid var(--color-gold);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background-color: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(197, 168, 128, 0.25);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-text-light);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  background-color: rgba(197, 168, 128, 0.1);
  border-color: var(--color-gold);
  transform: translateY(-3px);
}

.btn-light-secondary {
  background-color: transparent;
  color: var(--color-text-dark);
  border: 1px solid rgba(26, 26, 26, 0.15);
}

.btn-light-secondary:hover {
  background-color: rgba(26, 26, 26, 0.03);
  border-color: var(--color-text-dark);
  transform: translateY(-3px);
}

.btn-action-call {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white !important;
  border: none;
}
.btn-action-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.btn-action-viber {
  background: linear-gradient(135deg, #7b519d 0%, #663b88 100%);
  color: white !important;
  border: none;
}
.btn-action-viber:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(123, 81, 157, 0.3);
}

.btn-action-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white !important;
  border: none;
}
.btn-action-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* Glassmorphism Badge */
.badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: rgba(197, 168, 128, 0.08);
  border: 1px solid rgba(197, 168, 128, 0.25);
  color: var(--color-gold);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(10px);
}

/* --------------------------------------------------
   Header & Premium Navigation System
   -------------------------------------------------- */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 15, 16, 0.7);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-dark);
  transition: var(--transition-smooth);
}

.header.scrolled {
  padding: 0.6rem 0;
  background: rgba(15, 15, 16, 0.95);
  box-shadow: var(--shadow-dark);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: var(--transition-smooth);
}

.header.scrolled .header-container {
  height: 64px;
}

/* Logo */
.logo-area {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1.1;
}

.logo-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-text-muted-light);
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted-light);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-text-light);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--color-gold);
  transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Controls (Languages) */
.controls-area {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-selector {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.25rem;
  border-radius: 4px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--color-text-muted-light);
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: var(--transition-fast);
}

.lang-btn:hover {
  color: var(--color-text-light);
}

.lang-btn.active {
  background-color: var(--color-gold);
  color: #111;
}

/* Mobile Toggle */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--color-text-light);
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: block;
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(15, 15, 16, 0.98);
    flex-direction: column;
    padding: 2.5rem 0;
    gap: 1.8rem;
    border-bottom: 1px solid var(--border-dark);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: var(--transition-smooth);
  }
  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* --------------------------------------------------
   Hero Section
   -------------------------------------------------- */

.hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(15, 15, 16, 0.65), rgba(15, 15, 16, 0.95)), 
              url('../images/viber_image_2026-04-16_13-36-15-700.jpg') no-repeat center center;
  background-size: cover;
  z-index: 1;
  transition: var(--transition-smooth);
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 820px;
}

.hero-content .badge-gold {
  margin-bottom: 2rem;
}

.hero-content h1 {
  font-size: 4.8rem;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: var(--color-text-light);
}

/* Highlight gold text in headings */
.hero-content h1 span {
  background: linear-gradient(135deg, var(--color-gold) 0%, #eed2a6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p.tagline {
  font-size: 1.35rem;
  line-height: 1.6;
  color: #d1d1d6;
  margin-bottom: 3.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .hero-content p.tagline {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }
  .hero-actions .btn {
    width: 100%;
  }
}

/* Hero Stats Overlay Panel */
.hero-stats-panel {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(28, 28, 30, 0.4);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-dark);
  z-index: 3;
  padding: 2.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 0.4rem;
}

.stat-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted-light);
}

@media (max-width: 1024px) {
  .hero {
    height: auto;
    padding-top: 160px;
    padding-bottom: 180px;
  }
  .hero-stats-panel {
    position: relative;
    bottom: auto;
    left: auto;
    background: var(--bg-dark);
    padding: 4rem 0;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* --------------------------------------------------
   Location Section
   -------------------------------------------------- */

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.location-media {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.location-map-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Elegant visual frame */
.location-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.location-img:hover {
  transform: scale(1.03);
}

.location-subimages {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.location-points {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.loc-point {
  display: flex;
  gap: 1.5rem;
}

.loc-icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(197, 168, 128, 0.12);
  border: 1px solid rgba(197, 168, 128, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.loc-info h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  color: var(--color-text-dark);
}

.loc-info p {
  color: var(--color-text-muted-dark);
  font-size: 0.95rem;
  line-height: 1.55;
}

.loc-rarity-note {
  margin-top: 1.75rem;
  padding: 1.25rem 1.5rem;
  background: rgba(197, 168, 128, 0.1);
  border: 1px solid rgba(197, 168, 128, 0.35);
  border-radius: 6px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-text-dark);
  font-family: var(--font-serif);
  font-style: italic;
}

/* Google Maps location embed */
.location-mini-map {
  max-width: 760px;
  margin: 3.5rem auto 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(197, 168, 128, 0.22);
  background: #fff;
  border: 1px solid rgba(197, 168, 128, 0.35);
}

.loc-map-embed {
  position: relative;
  width: 100%;
  height: 400px;
  background: #e8e4dc;
}

.loc-map-embed__iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.loc-map-caption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding: 0.85rem 1.25rem;
  background: linear-gradient(180deg, #faf8f4 0%, #f3efe8 100%);
  border-top: 1px solid rgba(197, 168, 128, 0.28);
}

.loc-map-caption__text {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-text-dark);
}

.loc-map-caption__link {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-gold-dark, #8c714c);
  text-decoration: none;
  border-bottom: 1px solid rgba(197, 168, 128, 0.45);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.loc-map-caption__link:hover {
  color: var(--color-text-dark);
  border-color: var(--color-text-dark);
}

@media (max-width: 640px) {
  .location-mini-map {
    margin-top: 2.5rem;
    border-radius: 10px;
  }

  .loc-map-embed {
    height: 380px;
  }

  .loc-map-caption {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --------------------------------------------------
   Investment Potential
   -------------------------------------------------- */

.investment-section {
  background-color: #0f0f10;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.invest-potential {
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem 0 0.5rem;
}

.invest-potential .section-header h2 {
  margin-bottom: 0;
}

.invest-potential .section-header h2::after {
  margin-left: 0;
}

.invest-prose {
  margin-top: 2rem;
}

.invest-prose p {
  color: var(--color-text-muted-light);
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 1.35rem;
}

.invest-prose p:last-child {
  margin-bottom: 0;
}

.invest-options-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.invest-opt-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.35rem 1rem;
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  border-radius: 6px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-light);
  line-height: 1.4;
  transition: var(--transition-fast);
}

.invest-opt-card:hover {
  border-color: rgba(197, 168, 128, 0.45);
  transform: translateY(-3px);
}

.invest-opt-icon {
  font-size: 1.6rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .invest-options-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
}

@media (max-width: 1024px) {
  .location-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

/* --------------------------------------------------
   Exterior & Yard Section
   -------------------------------------------------- */

.exterior-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.exterior-media {
  position: relative;
}

.ext-main-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  border: 1px solid var(--border-dark);
}

.ext-main-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.ext-main-image img:hover {
  transform: scale(1.03);
}

.exterior-content h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--color-gold);
}

.exterior-content p {
  color: var(--color-text-muted-light);
  margin-bottom: 1.8rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.exterior-spec-card {
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  border-radius: 6px;
  padding: 2.2rem;
  margin-top: 2rem;
  backdrop-filter: blur(10px);
}

.exterior-spec-card h4 {
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.exterior-spec-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .exterior-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .ext-main-image img {
    height: 380px;
  }
}

/* --------------------------------------------------
   Properties & Technical Features Grid
   -------------------------------------------------- */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}

.feat-card {
  background: var(--bg-card-light);
  border: 1px solid var(--border-light);
  padding: 2.8rem 2.2rem;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.feat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: rgba(197, 168, 128, 0.4);
}

.feat-card:hover::before {
  transform: scaleX(1);
}

.feat-icon {
  font-size: 2.4rem;
  color: var(--color-gold-dark);
  margin-bottom: 1.5rem;
}

.feat-card h3 {
  font-size: 1.45rem;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
}

.feat-card p {
  color: var(--color-text-muted-dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
}

/* --------------------------------------------------
   Interior Section & Gallery
   -------------------------------------------------- */

.interior-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: center;
}

.interior-intro-text h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--color-gold);
}

.interior-intro-text p {
  color: var(--color-text-muted-light);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Interior Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-dark);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  opacity: 0;
  transition: var(--transition-fast);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.gallery-info p {
  font-size: 0.8rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Grid Spanning */
.span-6 { grid-column: span 6; height: 350px; }
.span-4 { grid-column: span 4; height: 280px; }
.span-8 { grid-column: span 8; height: 280px; }
.span-12 { grid-column: span 12; height: 400px; }

/* Custom Luxury Placeholder Card for missing pictures */
.gallery-placeholder {
  background: rgba(28, 28, 30, 0.4);
  border: 1px dashed rgba(197, 168, 128, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.gallery-placeholder-icon {
  font-size: 2.2rem;
  color: var(--color-gold-dark);
  margin-bottom: 1rem;
  opacity: 0.7;
}

.gallery-placeholder h4 {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.gallery-placeholder p {
  font-size: 0.8rem;
  color: var(--color-text-muted-light);
}

.gallery-placeholder-filename {
  font-family: monospace;
  font-size: 0.75rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-top: 0.6rem;
  color: var(--color-gold);
}

@media (max-width: 900px) {
  .interior-intro-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .span-6, .span-4, .span-8, .span-12 {
    grid-column: span 12;
    height: 280px;
  }
}

/* --------------------------------------------------
   Video Tour Section
   -------------------------------------------------- */

.video-container {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  border: 1px solid var(--border-dark);
  background-color: #000;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Styled Video Placeholder before play */
.video-custom-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8)), 
              url('../images/viber_image_2026-05-08_13-55-13-989.jpg') no-repeat center center;
  background-size: cover;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.video-custom-placeholder:hover {
  opacity: 0.95;
}

.video-play-btn {
  width: 86px;
  height: 86px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #111;
  margin-bottom: 2rem;
  cursor: pointer;
  position: relative;
  transition: var(--transition-smooth);
}

.video-custom-placeholder:hover .video-play-btn {
  transform: scale(1.1);
  background-color: var(--color-gold-hover);
}

/* Play pulse animation */
.video-play-btn::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  opacity: 0.6;
  animation: pulsePlay 2s infinite;
}

@keyframes pulsePlay {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.3); opacity: 0; }
}

.video-custom-placeholder p {
  font-size: 1.15rem;
  max-width: 500px;
  color: #eee;
  font-family: var(--font-serif);
  line-height: 1.5;
}

/* Style for actual MP4 missing */
.video-missing-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(28, 28, 30, 0.6);
  backdrop-filter: blur(15px);
  color: var(--color-text-light);
  padding: 4rem 2rem;
  text-align: center;
}

/* --------------------------------------------------
   Contact & Info Section
   -------------------------------------------------- */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
}

.contact-details h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--color-gold);
}

.contact-details p.intro {
  font-size: 1.1rem;
  color: var(--color-text-muted-light);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.contact-cta-sub {
  font-size: 1.25rem;
  font-family: var(--font-serif);
  color: var(--color-gold);
  margin-bottom: 3rem;
  line-height: 1.5;
}

.contact-details p.intro + .contact-cta-sub {
  margin-top: -0.25rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-info-item {
  display: flex;
  gap: 1.5rem;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(197, 168, 128, 0.1);
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.4rem;
}

.contact-info-content span {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--color-text-muted-light);
  letter-spacing: 0.08em;
}

.contact-info-content p {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-text-light);
  font-family: var(--font-sans);
}

/* Beautiful Action Cards for Contact Buttons */
.contact-actions-card {
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-actions-card h4 {
  font-size: 1.5rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
  text-align: center;
}

.contact-actions-card .btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1rem;
  padding: 1.1rem 2rem;
}

@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

@media (max-width: 768px) {
  .contact-actions-card {
    padding: 2rem 1.5rem;
  }
}

/* --------------------------------------------------
   Footer Section
   -------------------------------------------------- */

.footer {
  background-color: #080809;
  border-top: 1px solid #1c1c1f;
  padding: 4rem 0;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.footer-address {
  font-size: 0.95rem;
  color: var(--color-text-muted-light);
  margin-bottom: 2rem;
}

.footer-copyright {
  font-size: 0.8rem;
  color: #48484a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  margin-top: 2rem;
}

/* Developer / Owner Tips Floating Panel */
.dev-tips-banner {
  background: rgba(28, 28, 30, 0.9);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  margin-top: 4rem;
  text-align: left;
  backdrop-filter: blur(10px);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.dev-tips-banner h4 {
  color: var(--color-gold);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dev-tips-banner p {
  font-size: 0.85rem;
  color: var(--color-text-muted-light);
  line-height: 1.5;
}

.dev-tips-list {
  font-size: 0.8rem;
  font-family: monospace;
  margin-top: 0.8rem;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem 1.5rem;
  color: #d1d1d6;
}

@media (max-width: 600px) {
  .dev-tips-list {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------
   Lightbox Viewer Component
   -------------------------------------------------- */

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 12, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 80%;
  box-shadow: var(--shadow-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.lightbox-caption {
  color: var(--color-text-light);
  text-align: center;
  font-size: 1rem;
  margin-top: 1.5rem;
  font-family: var(--font-serif);
  font-style: italic;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 2010;
}

.lightbox-close:hover {
  color: var(--color-gold);
}

/* --------------------------------------------------
   Interactive Reveal Animations
   -------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Language transitions */
.i18n-fade {
  transition: opacity 0.25s ease;
}

.i18n-hidden {
  opacity: 0;
}
