/* style.css */

.team-head-text {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    font-size: 3rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #4f46e5, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    text-align: center;
    user-select: none;
    transition: transform 0.3s ease;
    cursor: default;
  }
  
  .team-head-text:hover {
    transform: scale(1.05);
    background-position: 100% 0;
  }
  
  /* Add any other custom styles for your site here */
  
  /* Calendar mini pop up style for homepage */
/* Align container right, full width */
.calendar-align-right {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 2rem 1rem;
  box-sizing: border-box;
}

/* Main calendar card */
.event-calendar-container {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
  border-left: 5px solid #007bff;
}

/* Slight scale on hover */
.event-calendar-container:hover {
  transform: scale(1.02);
}

/* Header with gradient background */
.event-calendar-header {
  background: linear-gradient(90deg, #007bff, #6610f2);
  color: #ffffff;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Header title styling */
.event-calendar-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

/* Icon margin */
.event-calendar-header i {
  margin-right: 0.5rem;
}

/* Calendar iframe wrapper */
.calendar-widget {
  width: 100%;
  height: 320px;
  background: #f8f9fa;
}

/* Make iframe fill its container */
.calendar-widget iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer styling */
.calendar-footer {
  padding: 0.75rem 1.25rem;
  background: #f1f3f5;
  text-align: right;
}

/* Link/button styles */
.calendar-footer a {
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 8px;
  transition: background 0.3s ease;
  padding: 0.3rem 0.75rem;
  border: 1px solid #007bff;
  color: #007bff;
  text-decoration: none;
}

/* Hover effect on the link */
.calendar-footer a:hover {
  background: rgba(0, 123, 255, 0.1);
  text-decoration: none;
}

  
  

/*President's speech style*/

/* Add this globally or around your tile container */
body {
  background: #f9f8f6; /* light warm paper tone */
  background-image:
    url('https://www.transparenttextures.com/patterns/paper-fibers.png'); /* subtle paper fibers pattern */
  background-repeat: repeat;
  background-size: auto;
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem;
}

/* The existing neon tile container */
.president-speech-supercool {
  /* Keep all existing styles... */
  
  /* Add a subtle frosted paper overlay inside the glass tile */
  background: 
    linear-gradient(
      135deg, 
      rgba(255 255 255 / 0.25), 
      rgba(245 245 245 / 0.15)
    ),
    var(--glass-bg);
  border: 2px solid var(--glass-border);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  
  /* Add subtle noise overlay using a pseudo element */
  position: relative;
  overflow: hidden;
}

.president-speech-supercool::before {
  /* keep existing neon radial glow */
}

.president-speech-supercool::after {
  /* keep existing neon radial glow */
}

/* Add a new noise grain overlay for subtle paper texture inside the tile */
.president-speech-supercool .noise-overlay {
  pointer-events: none;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('https://www.transparenttextures.com/patterns/asfalt-light.png');
  opacity: 0.05;
  mix-blend-mode: overlay;
  z-index: 2;
  border-radius: 30px;
}

