/* ============================================
   IONA AGENCY - MAIN STYLESHEET
   90-DEGREE CORNERS, CLEAN PROFESSIONAL STYLE
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-radius: 0px !important;
}

body {
  font-family: 'Inter', sans-serif;
  background: #F1F5F9;
  color: #1E293B;
  line-height: 1.5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* Header */
.header {
  text-align: center;
  margin-bottom: 3rem;
}

.header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #0F3B5C 0%, #1A6D8F 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}

.tagline {
  font-size: 1.25rem;
  color: #475569;
  max-width: 700px;
  margin: 0 auto;
}

/* Section Titles */
.section-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #0F3B5C;
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 3rem;
}

.section-subtitle {
  text-align: center;
  color: #64748B;
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* Grid Layouts */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

/* Cards */
.card {
  background: white;
  padding: 1.75rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  border: 1px solid #E2E8F0;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #0F3B5C;
  margin-bottom: 0.75rem;
}

.card p {
  color: #475569;
  font-size: 0.95rem;
}

.icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Artist Cards */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.artist-card {
  background: white;
  text-align: center;
  padding: 1.5rem;
  border: 1px solid #E2E8F0;
  transition: transform 0.3s ease;
  cursor: pointer;
}

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

.artist-card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.artist-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0F3B5C;
  margin-bottom: 0.5rem;
}

.artist-card p {
  font-size: 0.85rem;
  color: #64748B;
  margin-bottom: 1rem;
}

.book-btn {
  display: inline-block;
  background: #2C9B9B;
  color: white;
  text-decoration: none;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

.book-btn:hover {
  background: #1E7A7A;
}

/* Call to Action */
.cta-section {
  background: #0F3B5C;
  color: white;
  text-align: center;
  padding: 3rem;
  margin: 3rem 0;
}

.cta-section h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background: #2C9B9B;
  color: white;
  text-decoration: none;
  padding: 12px 32px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #1E7A7A;
}

/* Contact Panel */
.contact-panel {
  background: white;
  border: 1px solid #E2E8F0;
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
}

.contact-panel a {
  color: #2C9B9B;
  text-decoration: none;
  font-weight: 500;
}

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

/* Footer */
footer {
  text-align: center;
  font-size: 0.75rem;
  color: #94A3B8;
  padding: 2rem 0;
  border-top: 1px solid #E2E8F0;
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .container { padding: 1rem; }
  .header h1 { font-size: 1.75rem; }
  .section-title { font-size: 1.5rem; }
  .cta-section { padding: 2rem; }
  .artist-card img { width: 100px; height: 100px; }
}
