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

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

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

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Katibeh&family=Instrument+Sans:wght@400;500;600;700&display=swap');

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

:root {
  --dark-purple: #413256;
  --light-purple: #B1A1C8;
  --medium-purple: #9b88ad;
  --teal: #9EAAD1;
  --white: #D3DBDD;
  --light-gray: #f5f5f5;
  --text-dark: #2d2d2d;
  --font-family: 'Katibeh', serif;
  --font-sans: 'Instrument Sans', sans-serif;
  
  /* Legacy color variables for compatibility */
  --primary-100: #4a3d5e;
  --primary-80: #2d2d2d;
  --primary-50: #9b88ad;
  --primary-25: #c4b5d4;
  --grey: #f5f5f5;

}

/* Reusable styles */

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




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

body {
  color: var(--text-dark);
  font-family: var(--font-sans);
  line-height: 1.6;
  /* 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(--dark-purple);
  font-family: var(--font-family);
  /* Add your custom heading styles here */
}

h1 { 
  font-size: 8.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing8x2);
}

h2 { 
  font-size: 5rem;
  font-weight: 600;
  margin-bottom: var(--spacing8x3);
}



h3 { 
  font-size: 4.5rem;
  font-weight: 600;
}

h4 { 
  font-size: 2.75rem;
  font-weight: 600;
}

h5 { 
  font-size: 1rem;
}

h6 { 
  font-size: 0.95rem;
}

/* Paragraph Styles */
p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: var(--spacing8x3);
}

/* Image and text alternating layout */
section.grid img + p,
section.grid img + h4 {
  margin-top: var(--spacing8x4);
}

@media only screen and (min-width: 800px) {
  section.grid > img {
    width: 100%;
    margin-bottom: var(--spacing8x4);
    margin-top: var(--spacing8x3);
  }
}



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

section + section,
section + div,
.dark-bg-wrapper + section {
  margin-top: var(--spacing8x5);
}

section {
  padding: var(--spacing8x4) 0;
}

.dark-bg-wrapper {
  margin-top: var(--spacing8x5);
  margin-bottom: var(--spacing8x5);
}


/* 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(--text-dark);
  transition: all 300ms;
  /* Try adding: border-bottom, font-weight changes, etc. */
}

a:hover {
  color: var(--dark-purple);
  /* Try different hover effects: color changes, transforms, etc. */
}

/* Button Styles - Customize your call-to-action buttons */
a.button,
a.learn-more {
  border-radius: 25px;
  border: 2px solid var(--dark-purple);
  padding: 12px 24px;
  display: inline-block;
  margin-top: var(--spacing8x2);
  color: var(--dark-purple);
  font-weight: 600;
  background-color: transparent;
  transition: all 0.3s ease;
}

a.button:hover,
a.learn-more:hover {
  background-color: var(--dark-purple);
  color: var(--white);
}

/* 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 {
  background: #413256;
  padding: 20px;
  margin: 0;
}

header a {
  color: #d3dbdd;
}

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

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

header nav a {
  margin-left: 40px;
  color: var(--white);
  transition: color 0.3s ease;
  /* Try adding: text-transform, font-weight, padding for button-style nav */
}

header nav a:hover,
header nav a.active {
  color: var(--light-purple);
  border-bottom: 2px solid var(--light-purple);
  padding-bottom: 2px;
}


/* Hero section */
#hero-image {
  background: var(--light-purple);
  min-height: 60vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: var(--spacing8x3);
}

#hero-image h1 {
  text-align: left;
  color: var(--dark-purple);
  margin: 0;
}

#hero-image p {
  color: var(--dark-purple);
  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);
}


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

/* Dark background wrapper */
.dark-bg-wrapper {
  background: var(--dark-purple);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: var(--spacing8x6) calc(50vw - 50%);
  box-sizing: border-box;
}

/* Callout */

.callout {
  background: var(--light-purple);
}

.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);
}


/* Footer Styles */
footer {
  width: 100%;
  background: var(--dark-purple);
  color: var(--white);
  padding: 40px 20px 20px;
  /* Try customizing: background gradients, text alignment, etc. */
}

footer img {
  width: 160px;
}

footer hr {
  margin: 10px 0 20px;
  border: none;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.2);
}

footer a, footer p {
  color: var(--white);
  font-size: 12px;
}

footer nav a { 
  font-size: 14px;
}

footer nav a + a {
  margin-left: 40px;
}

footer nav, footer p {
  text-align: right;
}

footer a:hover {
  color: var(--teal);
  text-decoration: underline;
}

/* Mobile Footer Adjustments */
@media only screen and (max-width: 799px) {
  footer nav {
    text-align: center;
  }

  footer img {
    margin: 0 auto;
  }
}

/* ==========================================================================
   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);
}

.dark-bg-wrapper a.button:hover {
  background-color: var(--white);
  color: var(--dark-purple);
}

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

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

/* Benefits Column - stacks benefit items vertically */
.benefits-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: start;
}







/* ==========================================================================
   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 {
  padding: 30px;
  background: var(--dark-purple);
}

.quote-section blockquote {
  margin: 0;
  padding: 0;
}

.quote-section blockquote p {
  font-size: 1.3rem;
  font-style: italic;
  color: #d3dbdd;
  margin-bottom: var(--spacing8x2);
  line-height: 1.8;
  font-weight: 600;
}

.quote-section cite {
  font-size: 1rem;
  color: #d3dbdd;
  font-style: normal;
  font-weight: 500;
}

/* ==========================================================================
   MOBILE NAVIGATION
   ========================================================================== */

/* Mobile Navigation Styles */
.mobile-nav {
  background-color: var(--dark-purple);
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  transition: left 0.3s ease;
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.mobile-nav a {
  color: var(--white);
  font-size: 1.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--teal);
}

#mobile-nav-toggle:checked ~ .mobile-nav {
  left: 0;
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 100;
}

.hamburger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #d3dbdd;
  margin: 6px 0;
  transition: 0.3s;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 799px) {
  .hamburger-menu {
    display: block;
  }
}

/* Image Cropping for Membership */
.crop-image {
  width: 100%;
  height: auto;
  aspect-ratio: 2005 / 1126;
  object-fit: cover;
  object-position: center;
  display: block;
}