
:root{
  --bg:#fff9f6;
  --text:#3a2a25;
  --maroon:#6b1b1b;
  --maroon-2:#8f2a2a;
  --gold:#ffd38c;
  --card:#ffffff;
  --muted:#6e5a53;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; background:var(--bg); color:var(--text); line-height:1.6}

.container{width:min(1100px, 92%); margin:0 auto}

.site-header{position:sticky; top:0; z-index:50; background:var(--maroon); color:#fff; box-shadow:0 2px 10px rgba(0,0,0,.08)}
.site-header .nav{display:flex; align-items:center; justify-content:space-between; padding:.6rem 0}
.logo{height:40px}
.menu{display:flex; gap:1rem; align-items:center}
.menu a{color:#fff; text-decoration:none; font-weight:500; opacity:.92}
.menu a:hover{opacity:1; text-decoration:underline}
.menu .cta{background:var(--gold); color:#3d2a16; padding:.5rem .9rem; border-radius:999px; text-decoration:none; font-weight:600}
.menu .cta:hover{filter:brightness(.95)}

.hero{background:linear-gradient(180deg, #fbeee2 0%, #fff9f6 100%); padding:6rem 0 3rem}
.hero h1{font-family:'Playfair Display', serif; font-weight:700; font-size:clamp(28px, 5vw, 48px); margin:0 0 .5rem}
.hero h1 span{color:var(--maroon)}
.tagline{color:var(--muted); margin:.25rem 0 1rem}
.cta-row{display:flex; gap:.8rem}
.btn{display:inline-block; padding:.7rem 1.1rem; border-radius:10px; text-decoration:none; font-weight:600}
.btn.primary{background:var(--maroon); color:#fff}
.btn.primary:hover{background:var(--maroon-2)}
.btn.ghost{border:2px solid var(--maroon); color:var(--maroon)}
.btn.ghost:hover{background:#f5e6e1}

.highlights{display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; margin:2rem auto 3rem}
.card{background:var(--card); border:1px solid #eee3dd; border-radius:14px; padding:1rem 1.1rem; box-shadow:0 4px 12px rgba(0,0,0,.04)}
.card h3{margin:.2rem 0 .4rem; font-family:'Playfair Display', serif}
.list{padding-left:1.2rem; margin:.4rem 0}
.list li{margin:.15rem 0}

.page h1{font-family:'Playfair Display', serif}
.page{padding:2rem 0}

.table{width:100%; border-collapse:collapse; background:#fff; border-radius:12px; overflow:hidden; box-shadow:0 4px 12px rgba(0,0,0,.04)}
.table th,.table td{padding:.8rem .9rem; border-bottom:1px solid #f0e8e4; text-align:left}
.table thead th{background:#f6ece6}

.form-wrap{background:#fff; border:1px solid #f0e8e4; border-radius:14px; padding:1.2rem; margin:1.6rem auto 3rem; box-shadow:0 8px 20px rgba(0,0,0,.05)}
.form-wrap h2{font-family:'Playfair Display', serif; margin:.2rem 0 1rem}
.grid{display:grid; grid-template-columns:1fr 1fr; gap:1rem}
.field{display:flex; flex-direction:column; gap:.35rem}
.field.full{grid-column:1 / -1}
.field input,.field select,.field textarea{padding:.7rem .8rem; border:1px solid #e7d9d3; border-radius:10px; font:inherit; background:#fff}
.field input:focus,.field select:focus,.field textarea:focus{outline:2px solid #f2cfa5}
.actions{display:flex; justify-content:flex-end}
.response{text-align:center; margin-top:.5rem; min-height:1.4rem}

.site-footer{background:#130b0a; color:#e9e2de; padding:1.2rem 0 1.8rem; margin-top:2rem}
.footer-grid{display:flex; align-items:flex-start; justify-content:space-between; gap:1rem}
.socials{display:flex; gap:.8rem}
.tiny{opacity:.8; font-size:.92rem; margin-top:.6rem}

@media (max-width: 820px){
  .highlights{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr}
  .menu{gap:.7rem}
}
.about-section {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 3rem 1.5rem;
  background: #fafafa;
  border-radius: 12px;
  margin: 2rem auto 1.5rem; /* 👈 reduced bottom margin */
  max-width: 1200px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.about-section h2 {
  margin-top: -2em;
  margin-bottom: 0.2rem;
  font-size: 2rem;
  font-weight: bold;
  margin-left: 1.5em;
}

.about-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 1.8rem; /* Slightly wider gap for better breathing space */
  margin-top: 0;
}

.about-text {
  flex: 1;
  max-width: 56%; /* Slightly narrower so text and image bottom align */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  line-height: 1.8;
  text-align: justify;
  margin-top: -3em;
  margin-left: 3em;
}

.about-image {
  max-width: 300px;
  flex-shrink: 0;
  display: flex;
  align-self: flex-start;
  position: relative;
  top: -2em;  /* Moved further up for perfect top alignment */
  left: 6rem;   /* Moved more to the right for visual balance */
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
  clip-path: inset(0 0 0 0); /* Crops top 10% */
  border-radius: 12px;
}

.achievements-section {
  max-width: 1100px;
  margin: 1rem auto 3rem; /* 👈 positive margin, pulls section closer but not too much */
  padding: 1rem 1.5rem 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.achievements-section h2 {
  margin-top: 4em; /* Ensure heading starts right away */
  font-size: 1.8rem;
  font-weight: bold;
  margin-left: 0em;
}
.achievements-section h3 {
  margin-top: 0em; /* Ensure heading starts right away */
  font-size: 1.8rem;
  font-weight: bold;
  margin-left: 0em;
 
}
.socials {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: flex-start;
}

.social-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-btn.youtube { background: #FF0000; }
.social-btn.instagram {
  background: radial-gradient(circle at 30% 30%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-btn.facebook { background: #1877F2; }

.social-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}
.video-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.video {
  flex: 1 1 45%;
  max-width: 560px;
}

.video iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px; /* Optional: gives a nice rounded look */
}

/* ✅ Responsive: Stack videos on smaller screens */
@media (max-width: 768px) {
  .video {
    flex: 1 1 100%; /* Full width on mobile */
    max-width: 100%;
  }
}
.video-title {
  text-align: center;
  font-weight: 600; /* optional, makes it stand out */
  margin-bottom: 8px; /* small gap above video */
}
.videofb {
  flex: 1 1 45%;
  max-width: 300px;
}

.videofb iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px; /* Optional: gives a nice rounded look */
}
/* ✅ Responsive: Stack videos on smaller screens */
@media (max-width: 768px) {
  .videofb {
    flex: 1 1 100%; /* Full width on mobile */
    max-width: 100%;
  }
}

/* inline error messages */
.error-message {
  color: #b00020;
  font-size: 0.95rem;
  margin-top: 6px;
}
input.error, select.error, textarea.error {
  border-color: #b00020;
  background: #fff6f6;
}
/* site-level submission messages */
.submission-message {
  border-radius: 8px;
  padding: 12px 16px;
  margin: 1rem auto;
  max-width: 900px;
  font-weight: 600;
}
.submission-message.success { background: #e6ffef; color: #064e2a; border: 1px solid #9be6be; }
.submission-message.error { background: #fff3f2; color: #7a1f1f; border: 1px solid #f5c2c2; }

.contact-form {
  padding: 4rem 1rem;
  display: flex;
  justify-content: center;
}

.form-container {
  background: #fff;
  padding: 2rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  max-width: 800px;
  width: 100%;
}

.form-container h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.form-intro {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #666;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

label {
  font-weight: 600;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

input, select, textarea {
  padding: 0.7rem 0.9rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus, select:focus, textarea:focus {
  border-color: #a83279;
  box-shadow: 0 0 0 2px rgba(168,50,121,0.2);
  outline: none;
}

.btn.primary {
  background: #a83279;
  color: #fff;
  font-size: 1rem;
  padding: 0.9rem;
  border-radius: 10px;
  border: none;
  margin-top: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn.primary:hover {
  background: #8e2b68;
}

.btn.full-width {
  width: 100%;
}

.error-message {
  font-size: 0.8rem;
  color: #d9534f;
  margin-top: 0.3rem;
}

#notifyForm {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

#notify_email {
  flex: 1;
  max-width: 300px;
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

#notifyForm button {
  background: #a83279;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

#notifyForm button:hover {
  background: #861f5f;
}

/* ===== DESKTOP CONCERTS TABLE ===== */
.concerts-container {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 1rem;
  text-align: center;
}

.concerts-container h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  margin-bottom: 1rem;
  color: #222;
}

.concerts-container p.intro {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
}

/* Table Styling */
.concerts-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  overflow: hidden;
  font-size: 0.95rem;
}

.concerts-table th, 
.concerts-table td {
  padding: 1rem;
  text-align: left;
}

.concerts-table thead {
  background: #f4f4f4;
}

.concerts-table th {
  font-weight: 600;
  font-size: 1rem;
  color: #333;
  cursor: pointer;
  user-select: none;
  position: relative;
}

/* Sorting arrows */
.concerts-table th::after {
  content: "⇅";
  font-size: 0.7rem;
  opacity: 0.4;
  margin-left: 0.3rem;
  position: absolute;
}

.concerts-table th.sorted-asc::after {
  content: "↑";
  opacity: 0.8;
}

.concerts-table th.sorted-desc::after {
  content: "↓";
  opacity: 0.8;
}

/* Row colors */
.concerts-table tbody tr:nth-child(5n+1) { background: #fef6f6; } 
.concerts-table tbody tr:nth-child(5n+2) { background: #f6fef9; } 
.concerts-table tbody tr:nth-child(5n+3) { background: #f6f9fe; } 
.concerts-table tbody tr:nth-child(5n+4) { background: #fff8e6; } 
.concerts-table tbody tr:nth-child(5n+5) { background: #f5f5ff; }

.concerts-table tbody tr:hover {
  background: #f1f1f1;
}

