
/* ===== DỊCH VỤ ===== */
/* ===== TITLE ===== */
.title {
    text-align: center;
    color: #b89b47;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 5px;
}

.subtitle {
    text-align: center;
    color: #777;
    font-size: 13px;
    margin-bottom: 35px;
}



/* ===== DỊCH VỤ NỔI BẬT ===== */
.services {
    width: 85%;
    margin: auto;
    padding: 40px 0;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 25px;
    margin-top: 20px;
}

.service-item {
    text-align: center;
}

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
}

.service-item h3 {
    margin-top: 12px;
    color: #b89b47;
    font-size: 20px;
    font-weight: 600;
}

.service-item p {
    color: #777;
    font-size: 13px;
    margin: 8px 0 12px;
    line-height: 1.4;
}

.service-item a {
    font-size: 13px;
    color: #b89b47;
    text-decoration: none;
}



/* ====== BRAND SECTION ====== */
.brand-section {
    width: 80%;
    margin: 50px auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.brand-image img {
    width: 95%;
    border-radius: 6px;
  
}

.brand-text h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* ===== QUOTE ===== */
.quote {
    text-align: center;
    margin: 40px 0;
    font-size: 15px;
    color: #333;
    font-style: italic;
    line-height: 1.5;
}

:root {
  --bg: #F6EFE9;
  --main: #2C2C2C;
  --text: #555;
  --accent: #B08B6F;
  --radius: 14px;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--main);
}

/* ===== KHUNG TRANG ===== */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px 80px;
  background: #FFF;
}

/* ===== ẢNH ===== */
/* img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
} */
/* Thay thế rule img toàn cục bằng các selector cụ thể */
.image-container img,
.brand-image img,
.service-item img,
.gallery img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}


/* ===== TIÊU ĐỀ ===== */
.title {
  text-align: center;
  margin-top: 40px;
  font-size: 20px;
  font-weight: bold;
}

.title2 {
  text-align: left;
  margin-top: 40px;
  font-size: 17px;
  font-weight: bold;
}

/* ===== VĂN BẢN ===== */
.content {
  max-width: 820px;
  margin: 30px auto;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
  text-align: justify;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery {
    grid-template-columns: 1fr;
  }

  .title {
    font-size: 18px;
  }
}

/* FIX: tách style .container của footer khỏi .container chung */
.site-footer .container {
  background: transparent !important;    /* không lấy background trắng của .container chung */
  padding: 56px 0 48px !important;       /* padding gốc của footer (nếu muốn) */
  max-width: 1150px !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
  width: 100%;
}

/* Reset style cho logo header + footer */
#logo_Shop,
#footer-logo {
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  display: block;
}
#logo_Shop { height: 40px; width: auto; }
#footer-logo { width: 200px; height: auto; }

/* FIX footer không bị ảnh hưởng bởi .container trên trang dịch vụ */
.site-footer .container {
  background: transparent !important;
  padding: 56px 0 48px !important;
  max-width: 1150px !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
  width: 100%;
}
