:root {
  --cream: #FDF6F0;
  --gold: #CBB28B;
  --pink: #F5D4D0;
  --dark: #4A3F3F;
  --body: #dfdde8;
  --lavender: #c9c5e0;
  --lavender_white: #ece9ff;
  --lavendet_new: #f6f5ff;
  --titan: #f3eeff;
  --magnolia: #f9f7ff;
  --pudra:#cca296;
}

/* Базови стилове */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Helvetica Neue', sans-serif;
  background-color: var(--cream);
  color: var(--dark);
  line-height: 1.6;
}

/* ===== ХЕДЪР ===== */
header {
  background-color: var(--magnolia);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.logo img {
  width: 124px;
  height:auto;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  line-height: 1.05;
  font-size: 22px;
  letter-spacing: 2px;
  background: linear-gradient(120deg, #c9b38c, #f5e7c5, #bfa67a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-text span {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 8px;
  text-transform: uppercase;
  display: block;
  margin-top: 6px;
  color: #bfa67a;
  -webkit-text-fill-color: unset;
  background: none;
  text-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
 /* ===== NAV ===== */
        nav {
            display: flex;
            gap: 30px;
        }

        nav a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #c9a227;
        }
        
/* Навигация */
nav {
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width 0.3s;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: var(--pink);
}


/* Хамбургер меню */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle div {
  width: 25px;
  height: 3px;
  background-color: var(--dark);
  transition: all 0.3s;
}

/* Анимация на чертичките */
.menu-toggle.open div:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open div:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open div:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 80vh;
  background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url(../images/first_new.png) center/cover no-repeat;
  color: var(--dark);
  padding: 0 20px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.hero p {
  font-size: 1.3rem;
  color: var(--pink);
}

.hero a {
  font-size: 2.3rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-decoration: none;
  color: var(--gold);
  -webkit-text-stroke: 1px var(--lavender_white);
  text-shadow:
    0 0 6px var(--lavender_white),
    0 0 14px rgba(201,197,224,0.7),
    0 2px 6px rgba(201,197,224,0.5);
  transition: 0.3s ease;
}

.hero a:hover {
  color: var(--lavender_white);
  text-shadow:
    0 0 10px var(--lavender_white),
    0 0 22px var(--lavender),
    0 0 40px var(--lavender);
}

/* Бутон */
.btn {
  background-color:none;
  color: var(--cream);
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  margin-top: 20px;
  cursor: pointer;
  transition: transform 0.3s, background 0.3s;
}

.btn:hover {
  background-color: none;
  transform: scale(1.05);
}

/* ===== СЕКЦИИ ===== */
section {
  padding: 80px 50px;
}

section h2 {
  color: var(--gold);
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
}

section p {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Галерия */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery img {
  width: 100%;
  border-radius: 15px;
  border: 3px solid var(--pink);
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: var(--gold);
  color: var(--cream);
  text-align: center;
  padding: 30px;
}

/* ===== Анимации за луксозен текст ===== */
.lux-title {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
  animation: float 4s ease-in-out infinite;
}

.lux-title span {
  background: linear-gradient(
    120deg,
    #8f7a58 0%,
    #f5e7c5 25%,
    #c9b38c 45%,
    #fff5dc 55%,
    #c9b38c 70%,
    #8f7a58 100%
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShine 6s ease-in-out infinite;
  -webkit-text-stroke: 1px rgba(140,120,90,0.4);
  text-shadow:
    0 2px 4px rgba(0,0,0,0.15),
    0 8px 20px rgba(201,179,140,0.25);
}

.top {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  letter-spacing: 3px;
}

.bottom {
  font-family: 'Cinzel', serif;
  font-size: 40px;
  letter-spacing: 10px;
  margin-top: 8px;
}

@keyframes goldShine {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  header {
    padding: 15px 20px;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    flex-direction: column;
    gap: 30px;
    padding: 100px 20px;
    background-color: var(--cream);
    transition: right 0.3s ease-in-out;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    z-index: 999;
  }

  nav.active {
    right: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero a {
    font-size: 1.6rem;
  }

  section {
    padding: 60px 20px;
  }

  section h2 {
    font-size: 2rem;
  }

  section p {
    font-size: 1rem;
  }

  .gallery {
    gap: 15px;
  }
}


/* ===== SERVICES SECTION ===== */

.services-section {
  padding: 100px 20px;
  background: var(--lavendet_new);
  text-align: center;
}

/* заглавие */
.services-title {
  font-size: 2.8rem;
  margin-bottom: 60px;
  color: var(--dark);
  letter-spacing: 2px;
}

.services-title strong {
  color: var(--gold);
}

/* grid */
.services-grid {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
/* grid */
#contacts {
  max-width: 1200px;
  margin: auto;
  padding: 40px 5%;
}

#contacts .container {
  width: 100%;
}

#contacts .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

#contacts iframe {
  width: 100%;
  height: 350px;
  border-radius: 12px;
}

@media (max-width: 768px) {
  #contacts .row {
    grid-template-columns: 1fr;
  }
  
  #contacts iframe {
    height: 300px;
  }
}


.social-icons {
  display: flex;
  justify-content: center;  /* Хоризонтално центриране */
  align-items: center;      /* Вертикално центриране */
  gap: 15px;
  margin: 20px 0;
}

.social-icons a {
  color:#CBB28B;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #c9a227;
  transform: translateY(-3px);
}

.social-icons svg {
  width: 38px;
  height: 38px;
}
/* card */
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  text-decoration: none;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.35s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

/* image */
.service-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* overlay текст */
.service-card span {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);

  padding: 10px 26px;

  background: transparent;
  color: #fff;

  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;

  border: 2px solid rgba(255,255,255,0.8);
  border-radius: 30px;

  backdrop-filter: blur(3px);

  transition: 0.35s ease;

  white-space: nowrap;
}

.service-card:hover span {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);

  transform: translateX(-50%) scale(1.05);
}
.service-card:hover {
  box-shadow: 0 15px 45px rgba(201,179,140,0.35);
}



/* hover ефект */
.service-card:hover span {
  background: linear-gradient(
    to top,
    rgba(201,179,140,0.95),
    rgba(201,179,140,0.2)
  );
}

/* ===== RESPONSIVE ===== */

/* таблет */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* мобилен */
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card img {
    height: 320px;
  }

  .services-title {
    font-size: 2rem;
  }
}


/* ===== ABOUT SECTION ===== */

.about {
  padding: 110px 20px;
  background: var(--cream);
}

.about-container {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-image {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.about-image img {
  width: 100%;
  aspect-ratio: 1/1;      /* Квадрат */
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

@media (max-width: 768px) {
  .about-image {
    max-width: 350px;
  }
  .about-image img {
    border-radius: 16px;
  }
}

/* ===== TEXT ===== */
.about-content h2 {
  font-size: 2.8rem;
  margin-bottom: 25px;
 /* color: var(--lavender);*/
}

.about-content h2 strong {
  color: var(--gold);
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 20px;
  color: #5a4f4f;
}

/* ===== BUTTON ===== */
.about-btn {
  display: inline-block;
  margin-top: 15px;

  padding: 12px 28px;

  border-radius: 30px;
  border: 2px solid var(--gold);

  text-decoration: none;
  color: var(--gold);
  font-weight: 600;

  transition: 0.3s ease;
}

.about-btn:hover {
  background: var(--gold);
  color: white;
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */

/* таблет */
@media (max-width: 992px) {
  .about-container {
    gap: 40px;
  }
}

/* мобилен */
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image img {
    height: 350px;
  }

  .about-content h2 {
    font-size: 2.1rem;
  }
}
.about-text {
font-size: 1.1rem;
color: var(--text);
margin-bottom: 20px;
line-height: 1.8;
}

.about-text.highlight {
font-size: 1.2rem;
color: var(--dark);
font-weight: 500;
border-left: 3px solid var(--primary);
padding-left: 20px;
margin: 30px 0;
}
 .about-content {
    max-width: 650px;
}

.about-title {
    font-size: 34px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 25px;
}

.about-title span {
    color: #C6A75E;
    font-weight: 700;
}

.about-text {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
    font-size: 16px;
}

.about-signature {
    margin-top: 30px;
    font-weight: 600;
    color: #C6A75E;
    font-size: 18px;
}

.about-signature span {
    display: block;
    font-size: 14px;
    color: #888;
    font-weight: 400;
    margin-top: 5px;
}
