
 
 


body {
  margin: 0;
  padding: 20px;
  background: #f5f5f5;
  font-family: Arial, sans-serif;
}

h2.title {
  text-align: center;
  color: #400083;
  margin-bottom: 30px;
  font-size: 28px;
}

/* Gallery Grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Desktop: 3 columns */
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
}

/* Tablet: 2 columns */
@media (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Phone: 2 columns */
@media (max-width: 600px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .gallery img {
    height: 160px; /* shorter on phone */
  }
  body {
    padding: 10px;
  }
  h2.title {
    font-size: 22px;
  }
}

/* Very small phone: 1 column */
@media (max-width: 400px) {
  .gallery {
    grid-template-columns: reapet(3, 1fr);
  }
  .gallery img {
    height: 200px;
    width :100%;
  }
}
  

.contact-grid,
.contact-cards {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;    
  padding: 0 20px;
  box-sizing: border-box;
}

.contact-card {
  display: flex;
  align-items: center;
  background: #1a1d23; 
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 14px;
  text-decoration: none;
  color: white;
  gap: 12px;
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.phone-icon { background: #00aaff; }
.whatsapp-icon { background: #25D366; }
.email-icon { background: #7b61ff; }

.contact-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  margin: 0 4px;
}

.contact-card .info {
  flex: 1;
}
.contact-card .info h3 {
  font-size: 11px;
  margin: 0 0 4px 0;
  letter-spacing: 1px;
  font-weight: 600;
}
.contact-card .info p {
  font-size: 15px;
  margin: 0;
  font-weight: 500;
}
.phone-icon + .contact-divider + .info h3 { color: #00aaff; }
.whatsapp-icon + .contact-divider + .info h3 { color: #25D366; }
.email-icon + .contact-divider + .info h3 { color: #7b61ff; }

.arrow-btn {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* MEDIA QUERY FOR DESKTOP SITE TOGGLE */
@media (min-width: 601px) {
  .contact-grid,
  .contact-cards {
    max-width: 450px; 
  }

  .contact-card {
    padding: 16px 18px; 
  }

  .icon {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }

  .contact-card .info h3 {
    font-size: 12px;
  }
  .contact-card .info p {
    font-size: 16px;
  }
}
  