body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

/* Main Content */
.page-title {
  font-size: 28px;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 30px;
  text-align: left;
}

.page-title-contact {
  font-size: 28px;
  font-weight: bold;
  color: black;
  margin-bottom: 30px;
  text-align: left;
}

.intro-text {
  font-size: 16px !important;
  line-height: 1.8;
  color: #555;
  text-align: left !important;
  margin-bottom: 20px;
  height: auto !important;
  overflow: visible !important;
}

/* Service Cards with Images */
.service-image {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 2px solid var(--light-coffee);
  background-color: var(--bg-light);
}

.service-title {
  font-size: 16px;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.3;
  text-align: center !important;
}

.service-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0;
  overflow: unset !important;
  height: auto !important;
}

/* Loyalty Section */
.loyalty-section {
  background: var(--bg-light);
  margin: 50px 0;
  border-radius: 8px;
  text-align: left;
}

.section-title {
  font-size: 18px;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 25px;
}

.loyalty-text {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
  text-align: justify;
  text-align: left !important;
}

.loyalty-item {
  margin: 15px 0;
  font-size: 14px;
  color: #555;
  padding-left: 30px;
  position: relative;
}

.loyalty-item::before {
  content: "☕";
  position: absolute;
  left: 0;
  color: var(--coffee-brown);
  font-size: 16px;
}

.coffee-amount {
  color: var(--coffee-brown);
  font-weight: bold;
}

/* Catalog Section */
.catalog-section {
  position: relative;
  height: 300px;
  background: url("/templates/serenity/images/kurumsal/katalog.jpg");
  background-size: cover;
  background-position: center;
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.catalog-btn {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  transition: background 0.3s;
}

.catalog-btn:hover {
  background: var(--coffee-brown);
  color: white;
}

/* Advantages */

.advantages-section {
  text-align: left !important;
}

.advantages-list {
  list-style: none;
  padding: 0;
}

.advantages-list li {
  font-size: 14px;
  color: #555;
  margin: 12px 0;
  padding-left: 20px;
  position: relative;
}

.advantages-list li::before {
  content: "•";
  color: var(--coffee-brown);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Workshop Section */
.workshop-image {
  width: 100%;
  height: 200px;
  background: #ddd;
  margin-bottom: 20px;
  border-radius: 8px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 200"><rect width="300" height="200" fill="%23ddd"/></svg>');
  background-size: cover;
  background-position: center;
}

.workshop-text {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  text-align: left !important;
  margin-bottom: 15px;
}

/* Gift Section */
.gift-section {
  background: var(--bg-light);
  margin: 50px 0;
  border-radius: 8px;
  text-align: left !important;
}

.gift-text {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  text-align: left !important;
  margin-bottom: 15px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* default: 2 */
  gap: 15px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr); /* tablet */
  }
}

@media (min-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr); /* desktop */
  }
}

/* Contact Section */
.contact-form-section {
  background: var(--text-dark);
  color: white;
  padding: 60px 0;
  margin-top: 50px;
}

.contact-form {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-title {
  color: var(--text-dark);
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 25px;
}

.form-control {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 20px;
}

.form-control:focus {
  border-color: var(--coffee-brown);
  box-shadow: 0 0 0 0.2rem rgba(139, 69, 19, 0.25);
}

.submit-btn {
  background: var(--coffee-brown);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #a0522d;
}

.contact-info-title {
  color: var(--light-coffee);
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 25px;
}

.contact-item {
  margin-bottom: 25px;
}

.contact-item h5 {
  color: var(--light-coffee);
  font-size: 16px;
  margin-bottom: 10px;
}

.contact-item p {
  font-size: 14px;
  line-height: 1.5;
  margin: 5px 0;
}

/* Coffee Beans Decoration */
.coffee-beans {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.coffee-bean {
  width: 12px;
  height: 16px;
  background: var(--coffee-brown);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  margin-bottom: 8px;
  position: relative;
}

.coffee-bean::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 15px;
  }

  .nav-menu {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .page-title {
    font-size: 24px;
    text-align: center;
  }
  .page-title-contact{
    font-size: 24px;
    text-align: center;
    color: black;
  }
}


/* Satırlar arası boşluk */
.photo-row { margin-bottom: 15px; }

/* İstersen: tüm resimler aynı yüksekte görünsün (kırparak) */
.img-cover {
  width: 100%;
  height: 260px;         /* ihtiyacına göre değiştir */
  object-fit: cover;     /* modern tarayıcılar */
  display: block;
}

/* Üstte kullandığın g-5/mb-5 yerine genel bölüm boşluğu istersen: */
.advantages-section { margin-bottom: 30px; }


.sf-form-info {
  color: black !important;
}



.contact-card { 
  display:block; 
  text-decoration:none; 
  color:inherit; 
  text-align:center;
}

.contact-card .thumb {
  position: relative;
  width: 100%;
  padding-top: 100%;   /* kare görünüm */
  background: #111;    /* ikon kontrastı için */
  border-radius: 10px;
  overflow: hidden;
}

.contact-card .thumb img {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  max-width: 70%;
  max-height: 70%;
}

.contact-card .caption {
  margin-top: 12px;
  font-weight: bold;
  font-size: 16px;
}
