@font-face {
  font-family: 'Cubano';
  src: url('assets/fonts/Cubano.ttf') format('woff2');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #DCCAF8; /* matches screenshot background */
  color: #021580;
  line-height: 1.6;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
}

.logo img {
  height: 60px;
}

.btn-contact {
  background: #021580;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s;
}

.btn-contact:hover {
  background: #000;
}

/* Hero */
.hero {
  text-align: center;
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1rem; /* ✅ add side padding for mobile */
}

@media (min-width: 768px) {
  .hero {
    padding: 0; /* remove padding on larger screens */
  }
}


.hero h1 {
  font-family: 'Cubano', sans-serif;
  font-size: clamp(2.5rem, 6vw, 88px);
  line-height: 1.1;
  margin-bottom: 3rem;
}

.hero p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Business grid */
.businesses {
  padding: 3rem 1.5rem;   /* space above/below + left/right */
  display: flex;
  justify-content: center;
}

.businesses .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  column-gap: 2rem; /* space between cards left/right */
  row-gap: 3rem;    /* bigger space between rows */
}

@media (min-width: 1024px) {
  .businesses .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}



.grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

@media (min-width: 1024px) {
  .grid {
    grid-template-columns: repeat(3, 1fr); /* max 3 per row */
  }
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

/* Hover effect */
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Image always square */
.card img {
  width: 100%;
  aspect-ratio: 1 / 1;        /* modern browsers keep it square */
  object-fit: cover;          /* crops nicely */
  border-radius: 10px;
  margin-bottom: 0.5rem;      /* less gap */
}

/* Title styling */
.card h3 {
  font-family: 'Cubano', sans-serif; /* same as hero */
  font-size: 1.2rem;
  margin: 0.4rem 0 0.3rem 0; /* reduce padding between img/title/text */
  color: #021580;
}

/* New button */
.card-btn {
  display: inline-block;
  text-align: center;
  padding: 0.6rem 1rem;
  border-radius: 20px;
  background: #021580;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
  margin-top: auto; /* pushes button to bottom */
}

.card-btn:hover {
  background: #000;
}

/* Body text */
.card p {
  font-size: 0.9rem;
  color: #333;
  margin: 0; /* remove default spacing */
  flex-grow: 1;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact {
  background: #DCCAF8; /* purple background */
  padding: 10rem 2rem 3rem;
}

.contact-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;   /* ✅ vertical centering */
  gap: 2rem;
  max-width: 1410px;
  margin: 0 auto;
  flex-wrap: wrap; /* keeps it responsive */
}

/* Doodle */
.doodle {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.doodle img {
  max-width: 260px;
  height: auto;
}
.contact-box {
  background: #021580;
  color: #fff;
  border-radius: 20px;
  padding: 2rem;
  flex: 1;
  min-width: 320px;
}

.contact-box h2 {
  color: #F3FF33;
  margin-bottom: 0.5rem;
}

/* Split into 2 columns */
.contact-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* Left column text */
.contact-text {
  font-size: 0.95rem;
}

.contact-text a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.contact-text a:hover {
  text-decoration: underline;
}

/* Right column form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-form input,
.contact-form textarea {
  width: 92%;
  padding: 0.75rem 1rem;
  border-radius: 20px;
  border: none;
  font-family: inherit;
}

.contact-form textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-form button {
  align-self: flex-end;
  padding: 0.6rem 1.2rem;
  background: #F3FF33;
  color: #021580;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
}

.contact-form button:hover {
  background: #fff74d;
}

/* Mobile: stack columns */
@media (max-width: 768px) {
  .contact-columns {
    grid-template-columns: 1fr;
  }
}


