* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #24252a;
  color: #fff;
  font-family: Arial, sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(100% - 30px, 1280px);
  margin: 0 auto;
}

/* HEADER */

.site-header {
  border-bottom: 1px solid #999;
  background: #24252a;
}

.header-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 40px;
  font-weight: 800;
}

.nav {
  display: flex;
  gap: 40px;
}

.nav a {
  font-size: 20px;
}

.whatsapp {
  width: 38px;
  height: 38px;
  background: #22c55e url("images/whatsapp.png") center / 100% no-repeat;
  border-radius: 6px;
}

/* HERO */

.hero {
  padding: 40px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
  gap: 30px;
}

.hero-content h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

.line {
  width: 180px;
  height: 2px;
  background: #9a6b32;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.btn {
  width: 180px;
  height: 45px;
  background: #95662f;
  border-radius: 6px;
  text-align: center;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.6s;
}

.btn:hover {
  background: #3f2607;
}

.hero-image {
  height: 500px;
  background: url("images/1.jpg") center / cover no-repeat;
  border-radius: 6px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* SECTIONS */

.section {
  padding: 50px 0;
}

.light {
  background: #ffffff;
  color: #24252a;
}

.dark {
  background: #24252a;
}

.wood {
  background:
    linear-gradient(
      rgba(50, 30, 10, 0.35),
      rgba(50, 30, 10, 0.35)
    ),
    url("images/sorrento.jpg") center / cover no-repeat;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 26px;
  margin-bottom: 30px;
  text-align: center;
}

.section-title::before,
.section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #999;
  opacity: 1;
}

/* FURNITURE */

.cards {
  display: grid;
  gap: 30px;
}

.three {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  position: relative;
  height: 260px;
  border-radius: 6px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* თუ img არ გამოჩნდა, background ფოტოებიც იმუშავებს */
.cards .card:nth-child(1) {
  background-image: url("images/  .jpg");
}

.cards .card:nth-child(2) {
  background-image: url("images/  .jpg");
}

.cards .card:nth-child(3) {
  background-image: url("images/  .jpg");
}

.small-btn {
  width: 170px;
  height: 35px;
  background: #95662f;
  border-radius: 6px;
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 15px;
  font-weight: 700;

  transition: 0.6s;
}

.small-btn:hover {
  background: #3f2607;
}

/* SERVICES / ADVANTAGES */

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 180px;
}

.feature {
  min-height: 180px;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}

.feature:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}

/* SERVICES CARDS */

.service-card {
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  text-align: center;
  transition: 0.5s;
}

.service-card h3 {
  font-size: 24px;
  color: #95662f;
}

.service-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #ddd;
}

.service-card:hover {
  background: rgba(149, 102, 47, 0.15);
}

/* ADVANTAGES */

.advantages {
  gap: 24px;
}

.advantage-card {
  min-height: 210px;
  padding: 30px 24px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background: rgba(36, 37, 42, 0.55);
  backdrop-filter: blur(3px);
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;

  transition: 0.5s;
}

.advantage-card h3 {
  font-size: 24px;
  color: #d39a55;
}

.advantage-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #f1f1f1;
}

.advantage-card:hover {
  background: rgba(149, 102, 47, 0.35);
  transform: translateY(-6px);
}

/* RECOMMENDATIONS */

.recommendations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.recommend-card {
  min-height: 230px;
  padding: 30px 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;

  transition: 0.5s;
}

.recommend-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #ddd;
}

.recommend-card h3 {
  font-size: 22px;
  color: #d39a55;
  margin-top: 10px;
}

.recommend-card span {
  font-size: 14px;
  color: #aaa;
}

.recommend-card:hover {
  background: rgba(149, 102, 47, 0.18);
  transform: translateY(-6px);
}

/* REVIEW FORM */

.review-form {
  max-width: 520px;
  margin: 45px auto 0;
  padding: 28px 24px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);

  display: grid;
  gap: 14px;
}

.review-form h3 {
  text-align: center;
  font-size: 24px;
  color: #d39a55;
  margin-bottom: 8px;
}

.review-form input,
.review-form textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: 6px;
  border: 1px solid #777;
  background: transparent;
  color: #fff;
  font-size: 15px;
  outline: none;
}

.review-form input::placeholder,
.review-form textarea::placeholder {
  color: #aaa;
}

.review-form input:focus,
.review-form textarea:focus {
  border-color: #d39a55;
}

.review-form button {
  width: 180px;
  height: 42px;
  margin: 0 auto;
  border: none;
  border-radius: 6px;
  background: #95662f;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.5s;
}

.review-form button:hover {
  background: #3f2607;
}

/* CONTACT */

.contact-form {
  width: 420px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

input,
textarea {
  width: 100%;
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 6px;
  color: #fff;
  padding: 12px;
  font-size: 15px;
}

.form-btn {
  width: 220px;
  height: 38px;
  background: #95662f;
  border: none;
  border-radius: 6px;
  margin: 0 auto;
  cursor: pointer;

  color: #fff;
  font-size: 16px;


  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.6s;
}

.form-btn:hover {
  background: #3f2607;
}

/* FOOTER */

.site-footer {
  border-top: 1px solid #999;
  padding: 20px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.phones {
  font-style: normal;
  font-size: 16px;
  font-weight: 700;
}

.socials {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: block;
  background: #3b82f6 url("images/facebook.png") center / 100% no-repeat;
}

.socials a:nth-child(2) {
  background: #ec4899 url("images/instagram.png") center / 100% no-repeat;
}

.socials a:nth-child(3) {
  background: #22c55e url("images/whatsapp.png") center / 100% no-repeat;
}

/* MOBILE */

@media (max-width: 768px) {
  .logo {
    font-size: 28px;
  }

  .nav {
    display: none;
  }

  .hero {
    padding: 30px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-image {
    height: 280px;
  }

  .three {
    grid-template-columns: 1fr;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature {
    min-height: 100px;
    border: 1px solid rgba(255, 255, 255, 0.95);
  }

  .feature:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.95);
  }

  .service-card {
    min-height: 150px;
  }

  .advantage-card {
    min-height: 160px;
  }

  .advantage-card:hover {
    transform: none;
  }

  .recommendations {
    grid-template-columns: 1fr;
  }

  .recommend-card {
    min-height: 190px;
  }

  .recommend-card:hover {
    transform: none;
  }

  .review-form {
    max-width: 100%;
    padding: 24px 18px;
  }

  .review-form button {
    width: 100%;
  }

  .contact-form {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .socials {
    justify-content: center;
  }

  
}








/* ACTIVE NAV LINK */

.active-link {
  color: #d39a55;
}

/* PRODUCTS PAGE */

.products-hero {
  padding: 80px 0;
  background: #24252a;
  text-align: center;
}

.products-hero h1 {
  font-size: 46px;
  margin-bottom: 18px;
  color: #fff;
}

.products-hero p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
  color: #ddd;
}

.products-section {
  background: #24252a;
  color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: #1b1c20;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(149, 102, 47, 0.35);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transition: 0.5s;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: #95662f;
  background: #202126;
}

.product-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.product-info {
  padding: 24px 20px;
  color: #fff;
  text-align: center;
}

.product-info h3 {
  font-size: 24px;
  color: #d39a55;
  margin-bottom: 12px;
}

.product-info p {
  font-size: 15px;
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 20px;
}

.product-btn {
  width: 150px;
  height: 38px;
  background: #95662f;
  border-radius: 6px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 15px;
  font-weight: 700;
  transition: 0.5s;
}

.product-btn:hover {
  background: #3f2607;
}


/* ACTIVE NAV LINK */

.nav a.active-link {
  color: #d39a55;
  font-weight: 700;
}

/* INNER PAGES */

.page-hero {
  padding: 80px 0 50px;
  background: #24252a;
  text-align: center;
}

.page-hero h1 {
  font-size: 46px;
  margin-bottom: 18px;
  color: #fff;
}

.page-hero p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
  color: #ddd;
}

/* MATERIALS PAGE */

.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.material-card {
  background: #1b1c20;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(149, 102, 47, 0.35);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transition: 0.5s;
}

.material-card:hover {
  transform: translateY(-8px);
  border-color: #95662f;
  background: #202126;
}

.material-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.material-info {
  padding: 24px 20px;
  text-align: center;
}

.material-info h3 {
  font-size: 24px;
  color: #d39a55;
  margin-bottom: 12px;
}

.material-info p {
  font-size: 15px;
  line-height: 1.6;
  color: #ddd;
}

/* ABOUT PAGE */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 45px;
}

.about-content h2 {
  font-size: 34px;
  color: #d39a55;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #ddd;
  margin-bottom: 18px;
}

.about-btn {
  width: 180px;
  height: 42px;
  background: #95662f;
  border-radius: 6px;
  margin-top: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 16px;
  font-weight: 700;
  transition: 0.5s;
}

.about-btn:hover {
  background: #3f2607;
}

.about-image {
  height: 420px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(149, 102, 47, 0.35);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-logo-box {
  height: 420px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(149, 102, 47, 0.35);
  background: #f5efe6;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.about-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.value-card {
  min-height: 210px;
  padding: 30px 24px;
  background: #1b1c20;
  border: 1px solid rgba(149, 102, 47, 0.35);
  border-radius: 10px;
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;

  transition: 0.5s;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: #95662f;
  background: #202126;
}

.value-card h3 {
  font-size: 24px;
  color: #d39a55;
}

.value-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #ddd;
}


/* INNER PAGES MOBILE */

@media (max-width: 768px) {
  .page-hero {
    padding: 55px 0 35px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .materials-grid {
    grid-template-columns: 1fr;
  }

  .material-card img {
    height: 230px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-content h2 {
    font-size: 28px;
    text-align: center;
  }

  .about-content p {
    text-align: center;
  }

  .about-btn {
    margin: 10px auto 0;
  }

  .about-image {
    height: 280px;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .value-card:hover {
    transform: none;
  }

  .material-card:hover {
    transform: none;
  }
}