/* Santo Films - main styles */
:root {
  --bg: #0a0a0a;
  --bg-soft: #131313;
  --text: #f0e6d6;
  --text-dim: #b0a48f;
  --copper: #c98b5e;
  --copper-light: #d4a576;
  --copper-glow: rgba(201, 139, 94, .5);
  --red: #ff3030;
  --red-glow: rgba(255, 48, 48, .5);
  --overlay: rgba(0, 0, 0, .5);
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html, body { width: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'DM Sans', -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }

/* ───── HERO ───── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: var(--overlay);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  width: 100%;
}

.title {
  font-family: 'Syne', 'Josefin Sans', serif;
  font-weight: 600;
  font-size: clamp(2.4rem, 8vw, 4.5rem);
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.tagline {
  font-family: 'Syne', 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(.85rem, 2vw, 1.05rem);
  letter-spacing: 8px;
  color: var(--text-dim);
  margin-bottom: 36px;
}

/* Nav buttons row */
.hero-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px 28px;
  margin-bottom: 36px;
}
.hero-nav .logo {
  width: 110px; height: 110px;
  flex-shrink: 0;
}
.hero-nav .logo img { width: 100%; height: 100%; object-fit: contain; }

.btn-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: .92rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  padding: 8px 4px;
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
  transition: color .25s, text-shadow .25s;
}
.btn-link::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 1px;
  background: var(--copper-light);
  transition: width .3s, left .3s;
}
.btn-link:hover {
  color: var(--copper-light);
  text-shadow: 0 0 12px var(--copper-glow);
}
.btn-link:hover::after { width: 100%; left: 0; }

/* Dropdown for Portofoliu */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(10, 10, 10, .95);
  border: 1px solid rgba(201, 139, 94, .3);
  border-radius: 6px;
  padding: 8px 0;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transition: all .25s;
  backdrop-filter: blur(8px);
  z-index: 10;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 22px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: .85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background .2s, color .2s;
}
.dropdown-menu a:hover {
  background: rgba(201, 139, 94, .15);
  color: var(--copper-light);
}

/* WhatsApp button */
.btn-whatsapp {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: .92rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  padding: 10px 18px;
  border: 1.5px solid var(--red);
  border-radius: 4px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all .3s;
  box-shadow: 0 0 12px rgba(255, 48, 48, .15);
}
.btn-whatsapp:hover {
  color: #fff;
  background: rgba(255, 48, 48, .12);
  box-shadow: 0 0 24px var(--red-glow);
  text-shadow: 0 0 6px var(--red-glow);
}
.btn-whatsapp svg {
  width: 18px; height: 18px;
  fill: var(--red);
  transition: fill .3s;
}
.btn-whatsapp:hover svg { fill: #ff5050; }

/* Intro section */
.intro {
  padding: 80px 24px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.intro p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 22px;
  color: var(--text);
}
.intro strong { color: var(--copper-light); font-weight: 500; }

/* Sections */
.section {
  padding: 60px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.section h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -.5px;
}

/* Portfolio grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 22px;
}
.project-card {
  background: var(--bg-soft);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(201, 139, 94, .15);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.project-card:hover {
  transform: translateY(-4px);
  border-color: var(--copper);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
}
.project-card .thumb {
  aspect-ratio: 16/9;
  background: #000 center/cover no-repeat;
  position: relative;
}
.project-card .thumb::after {
  content: '▶';
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 3rem;
  opacity: 0; transition: opacity .3s;
}
.project-card:hover .thumb::after { opacity: 1; }
.project-card .info { padding: 18px 20px; }
.project-card .info h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.project-card .info p {
  color: var(--text-dim);
  font-size: .88rem;
  line-height: 1.5;
}

/* About */
.about-content { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 720px) {
  .about-content { grid-template-columns: 1fr 1fr; align-items: start; }
}
.about-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.about-photos img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 6px;
}
.about-bio p { margin-bottom: 18px; }

/* Footer */
.footer {
  border-top: 1px solid rgba(201, 139, 94, .15);
  padding: 30px 24px;
  text-align: center;
  color: var(--text-dim);
  font-size: .82rem;
}
.footer .socials {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 14px;
}
.footer .socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201, 139, 94, .3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color .3s, color .3s;
}
.footer .socials a:hover {
  border-color: var(--copper);
  color: var(--copper-light);
}

/* Mobile */
@media (max-width: 600px) {
  .hero { padding: 30px 20px; min-height: auto; }
  .hero-inner { padding-bottom: 0; }
  .hero-nav {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 16px;
  }
  .hero-nav > * { width: 100%; display: flex; justify-content: center; }
  .hero-nav .logo { width: 90px; height: 90px; order: -1; margin-bottom: 4px; }
  .btn-link { font-size: .82rem; letter-spacing: 1.5px; }
  .btn-whatsapp {
    font-size: .82rem; padding: 11px 16px; letter-spacing: 1.5px;
    margin: 0 auto;
  }
  .tagline { letter-spacing: 5px; margin-bottom: 24px; }
  .dropdown-menu { left: 50%; }
  .intro { padding: 36px 20px; }
}
