/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 

STUDENT CUSTOMIZATION FILE
This is where you make your design changes!
Experiment with colors, typography, spacing, and component styles.

 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

/* ===============================================================
  🤖 **COPILOT INSTRUCTIONS FOR custom.css** 🤖
  ================================================================
  
  - **🚫 CRITICAL RULE: DO NOT EDIT `framework.css`.** - **✅ ALL new CSS styles, overrides, and design customizations go HERE in this file.**
  
  ---
  
  **KEY ASSETS:**
  
  1.  **Colors:** Use CSS Variables like `var(--primary-100)`, `var(--white)`, and `var(--grey)`.
  2.  **Spacing:** Use CSS Variables like `var(--spacing8x3)` or `var(--spacing8x8)` for consistent measurements.
  3.  **Layout:** Build upon the existing `grid` system classes (e.g., `.mobi1`, `.tab3`, `.desk4`).
  
  Always ask user for preferences instead of making assumptions!
  
*/

 
/* ==========================================================================
   DESIGN SYSTEM - CUSTOMIZE YOUR COLORS & BRAND
   ========================================================================== */

:root {
  --primary-100: #3A4E6A;
  --primary-80: #486284;
  --primary-50: #9CB0C9;
  --primary-25: #CED7E4;
  --grey: #EBEFF4;
  --white: #fff;
  
  /* You can add more custom colors here */
--white: #FFFFFF;
--dark-grey: #6F8295;
--black: #113152;
--orange: #FF9B36;
--light-orange: #FFB54E;
--blue: #3788DF;
--light-blue: #C7DEF6;



}

.white {color: var(--white);}

.centered-text {
  text-align: center;
}




/* ==========================================================================
   TYPOGRAPHY - CUSTOMIZE FONTS & TEXT STYLES
   ========================================================================== */

body {
  color: var(--primary-80);
  background-color: var(--white);
  font-family: 'Saira', sans-serif;
  /* font-family is set in framework.css but you can override it here if needed */
}

/* Heading Styles - Customize sizes, colors, spacing */
h1, h2, h3, h4, h5, h6 { 
  line-height: 1.1;
  color: var(--primary-80);
  /* Add your custom heading styles here */
}

h1 { 
  font-size: 90px;
  /* Try adding: font-weight, color, text-transform, etc. */
}

h2 { 
  font-size: 42px;
}



h3 { 
  font-size: 30px;
}

h4 { 
  font-size: 24px;
}

h5 { 
  font-size: 20px;
}

h6 { 
  font-size: 18px;
}

/* Paragraph Styles */
p {
  font-size: 18px;
  line-height: 1.5;
  color: var(--primary-80);
  /* Try adjusting: line-height, letter-spacing, margin-bottom */
}

img + h4,
picture + p {
  margin-top: var(--spacing8x2);
}



section div+div {
  margin-top: var(--spacing8x1);
}

.gugi-text * {
  font-family: 'Gugi', sans-serif;
}

/* Mobile Typography Adjustments */
@media only screen and (max-width: 799px) {
  h1 { 
    font-size: 75px;
  }
  
  /* Add more mobile typography adjustments here */
}

/* ==========================================================================
   LINKS & BUTTONS - CUSTOMIZE INTERACTIVE ELEMENTS
   ========================================================================== */

/* Basic Link Styles */
a {
  text-decoration: none;
  color: var(--primary-80);
  transition: all 300ms;
  /* Try adding: border-bottom, font-weight changes, etc. */
}

a:hover {
  opacity: 0.5;
  /* Try different hover effects: color changes, transforms, etc. */
}

/* Button Styles - Customize your call-to-action buttons */
a.button {
  border-radius: 50px;
  border: 2px solid var(--primary-80);
  padding: 10px 20px 8px;
  display: inline-block;
  margin-top: var(--spacing8x2);
  /* Try adding: background-color, box-shadow, transform on hover, etc. */
}

a.button:hover {
  background: var(--dark)
}

/* Example: Secondary Button Style */
a.button-secondary {
  background-color: var(--accent-color);
  border: 1.5px solid var(--accent-color);
  color: var(--primary-80);
}

/* Example: Highlight Button Style */
a.button-highlight {
  background-color: var(--highlight-color);
  border: 1.5px solid var(--highlight-color);
  color: white;
}

/* ==========================================================================
   LAYOUT SECTIONS - CUSTOMIZE PAGE STRUCTURE
   ========================================================================== */


/* Header styles */
header img {
  width: 240px;
  /* Try adjusting: width, border-radius for logo styling */
}

header nav {
  text-align: right;
  font-size: 15px;
}

header nav a {
  margin-left: 40px;
  /* Try adding: text-transform, font-weight, padding for button-style nav */
}

header nav a.active {
  border-bottom: 2px solid var(--primary-80);
  padding-bottom: 2px;
}


/* Hero section */
#hero-image {
  background: url('../img/placeholder_bg.png') no-repeat center center/cover;
  height: 95vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--spacing8x3);
}

#hero-image h1 {
  text-align: center;
  color: var(--white);
  margin: 0; 

}

#hero-image p {
  color: var(--white);
  margin: 0; 
}

#hero-image span i {
  background: var(--white);
  font-size: 1.625rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--spacing8x12);
}

.hero-section {
  display: flex; 
  align-items: center;
  justify-content: center;
}

.hero-section img {
  width: 100%;
  border-radius: 0px;
  height: auto;
  max-height: 500px;
  display: block;
  object-fit: cover;
}

/* Light background wrapper - extends to viewport edges */
.light-bg-wrapper {
  background: var(--);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: var(--spacing8x3) calc(50vw - 50%);
  box-sizing: border-box;
}

/* Callout */

.callout {
  background: var(--grey);
}

.callout div {
  padding: var(--spacing8x8);
}

.callout-image {
  background: url('../img/placeholder_bg.png') no-repeat center center/cover;
  width: 100%;
  height: 100%;
  min-height: 300px;
}







/*  Content section */

section p + a.button {
  margin-top: var(--spacing8x12);
}

.testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mobi1.tab3.desk8 {
  color: var(--black)
}

.mobi1.tab8.desk3 {
  color: var(--black)
}

.mobi1.tab1.desk1 *{
  color: var(--white)
}

.mobi1.tab2.desk4.card {
  background-color: var(--white);
}

/* FAQ Grid - Center the three cards */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: var(--spacing8x3);
}

/* Title section spans full width */
.faq-grid > .mobi1.tab1.desk1 {
  grid-column: 1 / -1;
}

/* Center the three cards on desktop */
@media only screen and (min-width: 800px) {
  .faq-grid > .mobi1.tab2.desk4.card {
    grid-column: span 4;
  }
  
  /* Add empty column at start to center cards */
  .faq-grid > .mobi1.tab2.desk4.card:first-of-type {
    grid-column: 2 / span 4;
  }
}

/* Tablet: Stack to 2 columns, centered */
@media only screen and (max-width: 799px) and (min-width: 600px) {
  .faq-grid > .mobi1.tab2.desk4.card {
    grid-column: span 6;
  }
  
  .faq-grid > .mobi1.tab2.desk4.card:nth-of-type(3) {
    grid-column: 3 / span 6;
  }
}

.join-us-text * {
  color: var(--white)
}



/* Footer Styles */
footer {
  background: var(--black);
  color: var(--white);
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto auto;
  column-gap: var(--spacing8x3);
  row-gap: var(--spacing8x2);
  padding: var(--spacing8x3) var(--spacing8x3);
  align-items: center;
}

.footer-logo {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.footer-logo img {
  width: 200px;
  height: auto;
  display: block;
}

.footer-nav {
  grid-column: 1 / -1;
  grid-row: 1;
  display: flex;
  justify-content: center;
  gap: var(--spacing8x2);
  flex-wrap: nowrap;
  align-items: center;
}

.footer-nav a {
  color: var(--white);
  font-size: 13px;
  text-decoration: none;
  transition: all 300ms;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.footer-nav a:hover {
  color: var(--blue);
}

.footer-nav a.active {
  border-bottom: 2px solid var(--white);
}

.footer-email {
  grid-column: 3;
  grid-row: 1;
  color: var(--white);
  font-size: 12px;
  text-decoration: none;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  white-space: nowrap;
}

.footer-email:hover {
  color: var(--blue);
  text-decoration: underline;
}

.footer-divider {
  grid-column: 1 / -1;
  grid-row: 2;
  width: 100%;
  height: 1px;
  background: var(--primary-25);
  margin-top: var(--spacing8x2);
  margin-bottom: var(--spacing8x2);
}

.footer-copyright {
  grid-column: 1 / -1;
  grid-row: 3;
  width: 100%;
  color: var(--white);
  font-size: 11px;
  text-align: center;
  margin: 0;
  line-height: 1.5;
  padding: var(--spacing8x1) 0;
}

/* Mobile Footer Adjustments */
@media only screen and (max-width: 799px) {
  .footer-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto;
    gap: var(--spacing8x2);
    padding: var(--spacing8x2) var(--spacing8x2);
  }

  .footer-logo {
    grid-column: 1;
    grid-row: 1;
    justify-content: center;
  }

  .footer-logo img {
    width: 180px;
  }

  .footer-nav {
    grid-column: 1;
    grid-row: 2;
    justify-content: center;
    gap: var(--spacing8x2);
    flex-wrap: wrap;
  }

  .footer-nav a {
    font-size: 12px;
  }

  .footer-email {
    grid-column: 1;
    grid-row: 3;
    justify-content: center;
    text-align: center;
    font-size: 11px;
  }

  .footer-divider {
    grid-column: 1;
    grid-row: 4;
  }

  .footer-copyright {
    grid-column: 1;
    grid-row: 5;
    font-size: 10px;
  }
}

/* ==========================================================================
   COMPONENTS - CUSTOMIZE REUSABLE ELEMENTS
   ========================================================================== */

.dark-bg-wrapper h2,
.dark-bg-wrapper h3,
.dark-bg-wrapper h4,
.dark-bg-wrapper p {
  color: var(--white);
}

.dark-bg-wrapper a.button {
  border: 2px solid var(--white);
  color: var(--white);
} 

.light-orange-bg-wrapper {
  background-color: var(--light-orange);
  padding: 2rem 1rem;
}

.orange-bg-wrapper {
  background-color: var(--orange);
  padding: 1rem 1rem;
}

.black-bg-wrapper {
  background-color: var(--black);
  padding: 1rem 1rem;
}

   /* Divider Lines */
hr {
  border: none;
  border-bottom: 1.5px solid var(--primary-25);
  /* Try adding: margin, different border styles, gradients */
}

/* Icon with Text Component */
.icon-with-text i {
  background: var(--grey);
  padding: 17px 16px 23px;
  border-radius: 200px;
  font-size: 30px;
  color: var(--primary-80);
  /* Try customizing: colors, sizing, border-radius, box-shadow */
}







/* ==========================================================================
   RESPONSIVE CUSTOMIZATIONS
   ========================================================================== */

/* Mobile-specific customizations */
@media only screen and (max-width: 799px) {
  /* Add mobile-specific styling here */
  
  /* Example: Larger touch targets for mobile */
  a.button {
    padding: 18px 24px 14px;
    font-size: 16px;
  }

  
  .callout-image {
    height: 33vh;
  }

 
}

/* Tablet-specific customizations */
@media only screen and (min-width: 800px) and (max-width: 1279px) {
  /* Add tablet-specific styling here */
}

/* Desktop-specific customizations */
@media only screen and (min-width: 1280px) {
  /* Add desktop-specific styling here */
}

/* Quote Section */
.quote-section blockquote {
  margin: 0;
  padding: 0;
}

.quote-section blockquote p {
  font-size: 24px;
  font-style: italic;
  color: var(--white);
  margin-bottom: var(--spacing8x2);
  line-height: 1.4;
}

.quote-section cite {
  font-size: 16px;
  color: var(--primary-25);
  font-style: normal;
  font-weight: 500;
}


#homepage-hero-background {
  background: url(../img/home2.jpg) no-repeat center center/cover;
}

#color-overlay-bg {
  background: rgba(55,136,223,0.81);
  max-width: 90vw;
  min-height: 60vh;
}

/* ========================================================================== 
   EVENTS PAGE STYLES
   ========================================================================== */

/* Background Wrappers */
.light-blue-bg-wrapper {
  background-color: var(--light-blue);
  padding: var(--spacing8x2) 0;
}

.white-bg-wrapper {
  background-color: var(--white);
  padding: var(--spacing8x2) 0;
}

/* Event Cards */
.event-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 300ms ease;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.event-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.event-content {
  padding: var(--spacing8x2);
}

.event-content h3 {
  margin: 0 0 var(--spacing8x1) 0;
  font-size: 20px;
  color: var(--primary-80);
  display: flex;
  flex-direction: column;
}

.event-location {
  font-weight: normal;
  font-size: 14px;
  color: var(--dark-grey);
  display: inline;
}

.event-date {
  font-size: 16px;
  color: var(--primary-80);
  font-weight: 600;
  margin: 0 0 var(--spacing8x1) 0;
}

.event-time {
  font-size: 16px;
  color: var(--dark-grey);
  margin: 0;
}

/* Mobile Adjustments */
@media only screen and (max-width: 799px) {
  .event-card {
    margin-bottom: var(--spacing8x2);
  }

  .event-image {
    height: 180px;
  }

  .event-content {
    padding: var(--spacing8x1);
  }

  .event-content h3 {
    font-size: 18px;
  }

  .event-date,
  .event-time {
    font-size: 14px;
  }
}

/* Tablet Adjustments */
@media only screen and (min-width: 800px) and (max-width: 1279px) {
  .event-image {
    height: 220px;
  }
}

/* Desktop Adjustments */
@media only screen and (min-width: 1280px) {
  .event-image {
    height: 240px;
  }

  .event-content h3 {
    font-size: 22px;
  }
}

/* ========================================================================== 
   CONTACT US PAGE STYLES
   ========================================================================== */

/* Background Wrappers */
.dark-blue-bg-wrapper {
  background-color: var(--black);
  padding: var(--spacing8x3) 0;
}

.white-bg-wrapper {
  background-color: var(--white);
  padding: var(--spacing8x3) 0;
}

/* Contact Hero Section */
.contact-hero-bg-wrapper {
  background: url(../img/contact.jpg) no-repeat center center/cover;
  padding: var(--spacing8x8) 0;
  position: relative;
}

.contact-hero-bg-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(17, 49, 82, 0.6);
  z-index: 1;
}

.contact-hero {
  position: relative;
  z-index: 2;
}

.contact-hero h1 {
  font-size: 48px;
  margin-bottom: var(--spacing8x2);
}

.contact-hero p {
  color: var(--white);
  font-size: 18px;
  line-height: 1.6;
}


/* Contact Information Items */
.contact-info {
  gap: var(--spacing8x2);
}

.contact-item {
  text-align: center;
  padding: var(--spacing8x2);
}

.contact-icon {
  font-size: 48px;
  color: var(--white);
  margin-bottom: var(--spacing8x2);
}

.contact-item h3 {
  color: var(--white);
  font-size: 24px;
  margin-bottom: var(--spacing8x1);
}

.contact-item p {
  color: var(--white);
  font-size: 16px;
  margin: 0;
}

.contact-item a {
  color: var(--white);
  text-decoration: none;
  transition: all 300ms;
}

.contact-item a:hover {
  color: var(--light-orange);
  text-decoration: underline;
}

/* Organizers Section */
.organizers-section {
  gap: var(--spacing8x2);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
}

.organizers-section > h2 {
  grid-column: 1 / -1;
}

.organizer-card {
  text-align: center;
  padding: var(--spacing8x2);
  grid-column: span 1;
}

.organizer-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--spacing8x2);
  display: block;
  border: 4px solid var(--primary-25);
}

.organizer-name {
  font-size: 24px;
  color: var(--primary-80);
  margin: var(--spacing8x1) 0 var(--spacing8x1) 0;
}

.organizer-role {
  font-weight: 600;
  color: var(--primary-80);
  font-size: 16px;
  margin: 0 0 var(--spacing8x1) 0;
}

.organizer-year {
  color: var(--dark-grey);
  font-size: 16px;
  margin: 0 0 var(--spacing8x1) 0;
}

.organizer-email {
  margin: 0;
}

.organizer-email a {
  color: var(--primary-80);
  text-decoration: none;
  font-size: 14px;
  transition: all 300ms;
}

.organizer-email a:hover {
  color: var(--blue);
  text-decoration: underline;
}

/* Horizontal dividers */
.organizer-card::before,
.organizer-card::after {
  content: '';
  display: block;
  width: 100px;
  height: 2px;
  background: var(--primary-25);
  margin: var(--spacing8x2) auto;
}

.organizer-card::after {
  display: none;
}

/* Mobile Adjustments */
@media only screen and (max-width: 799px) {
  .organizers-section {
    grid-template-columns: 1fr;
  }

  .organizers-section > h2 {
    grid-column: 1;
  }

  .organizer-card {
    grid-column: span 1;
  }

  .contact-hero h1 {
    font-size: 36px;
  }

  .contact-hero p {
    font-size: 16px;
  }

  .contact-item {
    margin-bottom: var(--spacing8x2);
  }

  .contact-icon {
    font-size: 36px;
  }

  .contact-item h3 {
    font-size: 20px;
  }

  .organizer-image {
    width: 150px;
    height: 150px;
  }

  .organizer-name {
    font-size: 20px;
  }

  .organizer-card::before {
    display: none;
  }
}

/* Tablet Adjustments */
@media only screen and (min-width: 800px) and (max-width: 1279px) {
  .organizers-section {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-hero h1 {
    font-size: 42px;
  }
}

/* Desktop Adjustments */
@media only screen and (min-width: 1280px) {
  .organizers-section {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========================================================================== 
   ABOUT PAGE STYLES
   ========================================================================== */

.white-bg-wrapper {
  background-color: var(--white);
  padding: var(--spacing8x3) 0;
}

.orange-bg-wrapper {
  background-color: var(--orange);
  padding: var(--spacing8x3) 0;
}

/* About Us Section */
.about-section {
  gap: var(--spacing8x2);
  align-items: center;
}

.about-text h1 {
  color: var(--black);
  font-size: 42px;
  margin-bottom: var(--spacing8x2);
}

.about-text p {
  color: var(--black);
  font-size: 16px;
  line-height: 1.6;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* Our Goal Section */
.goal-section {
  gap: var(--spacing8x2);
  align-items: center;
}

.goal-text h2 {
  color: var(--black);
  font-size: 36px;
  margin-bottom: var(--spacing8x2);
}

.goal-text p {
  color: var(--black);
  font-size: 16px;
  line-height: 1.6;
}

.goal-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.goal-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  display: block;
}
/* Photo Gallery Section */
.gallery-section {
  gap: var(--spacing8x1);
}

.gallery-section h2 {
  grid-column: 1 / -1;
  color: var(--white);
  font-size: 36px;
  margin-bottom: var(--spacing8x1);
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
}

.gallery-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 300ms ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

/* Mobile Adjustments */
@media only screen and (max-width: 799px) {
  .about-text h1 {
    font-size: 32px;
  }

  .about-text p {
    font-size: 14px;
  }

  .goal-text h2 {
    font-size: 28px;
  }

  .goal-text p {
    font-size: 14px;
  }

  .goal-section {
    flex-direction: column-reverse;
  }

  .gallery-section h2 {
    font-size: 28px;
  }

  .gallery-image {
    height: 150px;
  }

  .white-bg-wrapper,
  .orange-bg-wrapper {
    padding: var(--spacing8x2) 0;
  }
}

/* Tablet Adjustments */
@media only screen and (min-width: 800px) and (max-width: 1279px) {
  .about-text h1 {
    font-size: 36px;
  }

  .goal-text h2 {
    font-size: 32px;
  }

  .gallery-image {
    height: 220px;
  }
}

/* Desktop Adjustments */
@media only screen and (min-width: 1280px) {
  .about-text h1 {
    font-size: 42px;
  }

  .goal-text h2 {
    font-size: 36px;
  }

  .gallery-image {
    height: 240px;
  }
}