:root {
    --gold: #D4AF37;
    --dark-bg: #0b0e14;
    --card-bg: #161a23;
    --text-main: #ffffff;
    --text-dim: #a0a0a0;
}

body {
    background: var(--dark-bg);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    margin: 0;
}

/* Эффектный Hero */
.hero-v2 {
    height: 90vh;
    background: url('photos/hero/1.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(11,14,20,0.95), rgba(11,14,20,0.2));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.tag {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-content h1 span {
    background: linear-gradient(to right, #fff, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-gold {
    background: var(--gold);
    color: #000;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: 0.3s;
}

.btn-gold:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

/* Сетка карточек */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.s-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.4s;
}

.s-card:hover {
    border-color: var(--gold);
    background: #1c212c;
}

.s-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

/* Галерея */
.gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-wrapper img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    transition: 0.5s;
    filter: grayscale(30%);
}

.gallery-wrapper img:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
}

/* Адаптив */
@media (max-width: 768px) {
    .navbar { padding: 15px 5%; }
    .nav-menu { display: none; } /* Скрываем меню на мобилках для чистоты */
}


/* FAQ СТИЛИ */
.faq { 
  max-width: 800px; 
  margin: 40px auto; 
}

.faq-item {
  margin-bottom: 15px;
}

.faq .q { 
  padding: 20px 30px; 
  background: var(--glass); /* Прозрачный фон из прошлых настроек */
  border: 1px solid var(--glass-border);
  cursor: pointer; 
  border-radius: 12px; 
  font-weight: bold;
  display: flex; 
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}

.faq .q:hover { 
  border-color: var(--accent); 
  background: rgba(255,255,255,0.05);
}

/* Символ стрелочки или плюса */
.faq .q::after {
  content: '+';
  color: var(--accent);
  font-size: 20px;
}

.faq .a { 
  display: none; /* Скрыто по умолчанию */
  padding: 20px 30px; 
  color: #aaa; 
  line-height: 1.6;
  border-left: 2px solid var(--accent);
  margin: 5px 10px 0;
}

.faq .a.show { 
  display: block; 
}


.footer {
  background: #080a0e;
  padding: 80px 20px 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 50px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 50px;
}

.footer-logo {
  font-family: 'Unbounded', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 20px;
}

.footer-brand p {
  color: #888;
  font-size: 15px;
  max-width: 300px;
}

.footer h3 {
  font-size: 18px;
  margin-bottom: 25px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  color: #888;
  margin-bottom: 12px;
  font-size: 15px;
  transition: 0.3s;
}

.footer-links li:hover {
  color: var(--accent);
  padding-left: 5px;
}

.contact-item {
  display: block;
  color: #888;
  text-decoration: none;
  margin-bottom: 15px;
  font-size: 16px;
  transition: 0.3s;
}

.contact-item:hover {
  color: #fff;
}

.footer-bottom {
  max-width: 1100px;
  margin: 60px auto 0;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  color: #555;
  font-size: 14px;
}

/* Адаптивность для мобилок */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .footer-brand p {
    margin: 0 auto;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.7); /* Полупрозрачный фон */
  backdrop-filter: blur(15px); /* Эффект размытия */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Unbounded', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
}

.logo span {
  color: var(--accent); /* Золотистый акцент */
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
}

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

/* Маленькая кнопка в шапке */
.btn-sm {
  background: #25D366;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
  transition: 0.3s;
}

.btn-sm:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

/* Скрываем навигацию на мобилках для красоты (или можно оставить) */
@media (max-width: 768px) {
  .nav { display: none; } /* На мобильных лучше оставить только лого и кнопку */
}

