/* =========================================
   1. Base & Layout Variables
   ========================================= */
:root {
  --primary-color: #000080; /* Dark text for headers */
  --text-muted: #4a5568;    /* Softer gray for paragraphs */
  --bg-light:  #EBF4FA;      /* Very light background */
  --border-radius: 12px;
}

/* =========================================
   2. Main Sections & Containers
   ========================================= */
.media-section {
  padding: 4rem 1.5rem;
  background-color: var(--bg-light);
  font-family: system-ui, -apple-system, sans-serif;
}

.media-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================================
   3. Typography & Headers
   ========================================= */
.media-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.media-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.3;
  letter-spacing: 0.05em;
}

.media-header p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.media-header p:first-of-type {
  font-weight: 600;
  color: var(--primary-color);
}

/* =========================================
   4. Video Component
   ========================================= */
.media-card--featured {
  max-width: 900px;
  margin: 0 auto 4rem auto; /* Centers the video and adds bottom space */
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: #000;
}

.media-thumb video {
  width: 100%;
  height: auto;
  display: block; /* Removes bottom spacing ghost elements */
}

/* =========================================
   5. The Image Gallery Grid
   ========================================= */
.Inauguration-main {
  width: 100%;
}

.Inauguration-grid {
  display: grid;
  /* Automatically adjusts columns based on screen size */
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.Inauguration-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1 / 1; /* Forces perfect squares */
  background-color: #e2e8f0; /* Placeholder color while loading */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.Inauguration-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures images fill the square without stretching */
  transition: transform 0.4s ease;
}

/* Subtle zoom effect on hover */
.Inauguration-item:hover img {
  transform: scale(1.05);
  
  /* =========================================
   Footer Base Styling
   ========================================= */
.footer {
  background-color: #1a202c; /* A dark, modern background */
  color: #f8fafc;            /* Light text for contrast */
  padding: 4rem 1.5rem 2rem; /* Ample breathing room */
  display: flex;
  flex-direction: column;
  align-items: center;       /* Centers everything horizontally */
  text-align: center;
}

/* =========================================
   Contact Section
   ========================================= */
.Quick {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;              /* Consistent spacing between lines */
  max-width: 600px;
  margin-bottom: 2rem;       /* Space before the copyright */
}

.Quick h2 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.Quick p {
  margin: 0;
  color: #cbd5e1;            /* Slightly muted gray for readability */
  line-height: 1.5;
  font-size: 1rem;
}

.Quick h4 {
  margin-top: 0.5rem;
}

.Quick h4 a {
  color: #38bdf8;            /* A modern blue for the email link */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.Quick h4 a:hover {
  color: #7dd3fc;            /* Lighter blue on hover */
  text-decoration: underline;
}

/* =========================================
   Copyright Section
   ========================================= */
.copyright {
  font-size: 0.875rem;       /* Keeps the copyright text subtle */
  color: #94a3b8;
  font-weight: normal;
  width: 100%;
  max-width: 800px;
  padding-top: 1.5rem;
  border-top: 1px solid #334155; /* Adds a clean separator line */
  margin: 0;
}

.copyright a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.copyright a:hover {
  color: #ffffff;
}

