﻿:root {
  --primary: #9E452C;
  --primary-hover: #823620;
  --secondary: #E29E7D;
  --dark: #26211F;
  --body-text: #38302D;
  --muted: #594E4A;
  --bg-body: #FDFBF7;
  --bg-light: #F5EFEB;
  --white: #FFFFFF;
  --border: #E8DED6;
  --whatsapp: #075e54;
  --shadow: 0 4px 14px rgba(38, 33, 31, 0.07);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--body-text);
  background-color: var(--bg-body);
  padding-bottom: 60px;
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Navigatie */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(38, 33, 31, 0.04);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.brand span {
  color: var(--primary);
}

.brand-logo img {
  max-height: 48px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--dark);
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 4.5rem 0 3.5rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-body) 100%);
  border-bottom: 1px solid var(--border);
}

.hero h1 {
  font-size: 2.25rem;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.hero p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Butoane */
.btn {
  display: inline-block;
  padding: 0.75rem 1.6rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  color: var(--white);
}

.btn-outline {
  border-color: var(--primary);
  color: var(--primary);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* Sectiuni si Layout */
.section {
  padding: 4rem 0;
}

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

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 1.9rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.section-title p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* Grile & Carduri */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 2rem;
  flex-grow: 1;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.card p {
  color: var(--muted);
  line-height: 1.6;
}

/* Galerie */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

/* Sticky Bar Mobil */
.mobile-sticky-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -2px 10px rgba(38, 33, 31, 0.08);
  z-index: 999;
}

.mobile-sticky-bar .btn-full {
  flex: 1;
  padding: 0.85rem;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
}

.btn-call {
  background: var(--primary);
  color: var(--white);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}

/* Footer */
footer {
  background: #1F1A19;
  color: #D6CCC7;
  padding: 3rem 0;
  font-size: 0.9rem;
}

footer a {
  color: var(--secondary);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Media Queries */
@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 16px rgba(38, 33, 31, 0.08);
  }

  .nav-links.active {
    display: flex;
  }
}

@media (min-width: 769px) {
  .mobile-sticky-bar {
    display: none;
  }
}