:root{
--primary:#0e49c0;     
--secondary:#d62828;   
--accent:#0dd2e4;      
--highlight:#f4c430;   
--text:#111111;
--bg:#f5f5f5;
--white:#ffffff;
--max-width:1180px;
}


*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial, sans-serif;
background:var(--bg);
color:var(--text);
line-height:1.6;
}



a{
text-decoration:none;
color:inherit;
}

/* CONTAINER */

.container{
width:min(var(--max-width),92%);
margin:auto;
}

/* HEADER */

.site-header{
background:#0f2e52;
color:white;
position:sticky;
top:0;
z-index:1000;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:16px 0;
}

/* LOGO */

.logo{
display:flex;
align-items:center;
gap:10px;
font-size:20px;
font-weight:700;
color:white;
}

.logo span{
color:var(--accent);
}

.logo img{
height:70px;
}

/* NAV LINKS */

.nav-links{
display:flex;
gap:28px;
list-style:none;
}

.nav-links a{
color:white;
font-weight:500;
}

.nav-links a:hover{
color:var(--accent);
}

/* HERO */

.hero{
height:70vh;
display:flex;
align-items:center;
padding-left:10%;
background-image:linear-gradient(
rgba(11,31,58,0.75),
rgba(11,31,58,0.6)
),
url("images/building.png");
background-size:cover;
background-position:center;
color:white;
}

/* HERO TEXT */

.hero-content{
max-width:600px;
margin:auto;
}
.hero h1{
font-size:52px;
margin-bottom:15px;
}

.hero p{
margin-bottom:24px;
}

/* BUTTONS */

.btn{
padding:14px 24px;
border-radius:30px;
font-weight:600;
}

.btn-primary{
background:var(--accent);
color:#1b1b1b;
}

.btn-secondary{
border:1px solid white;
color:white;
}

/* STATS */

.school-stats{
display:flex;
justify-content:center;
margin-top:-60px;
}

.stat-card{
background:white;
padding:30px 50px;
border-radius:14px;
box-shadow:0 10px 25px rgba(0,0,0,.2);
}

.highlight{
background:var(--accent);
}

.stat-card h3{
font-size:36px;
}

/* SECTIONS */

.section{
padding:80px 0;
}

.alt-bg{
background:#eef3f9;
}

.intro-section{
background:white;
}

.intro-text h2{
font-size:36px;
margin-bottom:15px;
}

.intro-text p{
margin-bottom:15px;
color:#444;
}

.intro-image img{
width:100%;
border-radius:16px;
box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

/* PRINCIPAL SECTION */

.principal-section{
padding:80px 0;
background:var(--bg);
}

.principal-grid{
display:grid;
grid-template-columns:1fr 1.2fr;
gap:50px;
align-items:center;
}

.principal-image img{
width:100%;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,0.15);
object-fit:cover;
}

.principal-content h2{
color:var(--primary);
margin-bottom:20px;
}

.principal-content p{
line-height:1.8;
margin-bottom:16px;
color:var(--text);
}

.principal-signoff{
margin-top:25px;
padding-top:20px;
border-top:3px solid var(--highlight);
font-size:1rem;
}

@media (max-width:768px){

.principal-grid{
grid-template-columns:1fr;
}

}
/* HIGHLIGHT STRIP */

.highlight-strip h2{
font-size:32px;
letter-spacing:2px;
display:flex;
justify-content:center;
align-items:center;
gap:12px;
flex-wrap:wrap;
}

/* WORD BASE */
.highlight-strip .word{
font-weight:700;
transition:0.3s ease;
}

/* SUBTLE BRAND COLORS */
.word-1{ color:#ea0505; }          
.word-2{ color:#0dd2e4; }          
.word-3{ color:#f4c430; }          
/* DOT STYLE */
.highlight-strip .dot{
opacity:0.6;
}

/* HOVER EFFECT  */
.highlight-strip .word:hover{
transform:translateY(-3px);
opacity:0.9;
}
/* GRID */

.grid-2{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.portfolio-video{
width:100%;
max-width:100%;
border-radius:16px;
box-shadow:0 15px 35px rgba(0,0,0,0.15);
display:block;
}

/* CARDS */

.card-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:24px;
}

.card{
background:white;
padding:30px;
border-radius:14px;
box-shadow:0 10px 25px rgba(0,0,0,.1);
}

.album-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
padding:60px 20px;
max-width:1200px;
margin:auto;
}

.album-card{
position:relative;
border-radius:16px;
overflow:hidden;
cursor:pointer;
box-shadow:0 15px 35px rgba(0,0,0,0.2);
transition:transform 0.3s ease;
}

.album-card:hover{
transform:translateY(-8px);
}

.album-card img{
width:100%;
height:260px;
object-fit:cover;
object-position:top;
border-radius:8px;
margin-bottom:15px;
transition:transform 0.4s ease;
}

.album-card:hover img{
transform:scale(1.1);
}

/* overlay */
.album-overlay{
position:absolute;
bottom:0;
left:0;
width:100%;
padding:20px;
background:linear-gradient(transparent, rgba(0,0,0,0.7));
color:white;
}

.album-overlay h3{
margin:0;
font-size:20px;
}

.photo-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:15px;
margin-top:30px;
}

.photo-grid img{
width:100%;
height:220px;
object-fit:cover;
border-radius:12px;
transition:0.3s;
}

.photo-grid img:hover{
transform:scale(1.05);
}

/* ======================================================
   FEATURE CARDS (ACADEMICS / SPORTS / STUDENT LIFE)
   ====================================================== */

.card:hover,
.news-card:hover{
transform:translateY(-6px);
transition:0.3s;
box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
margin-top:40px;
}

.card{
background:white;
padding: 20px;
border-radius:10px;
box-shadow:0 6px 15px rgba(0,0,0,0.1);
text-align:center;
}

.card img{
width:100%;
height:260px;
object-fit:cover;
object-position:top;
border-radius:8px;
margin-bottom:15px;
}

.card h3{
margin-bottom:10px;
color:#0b1f3a;
}

/* FILTER BUTTONS */
.gallery-controls{
display:flex;
justify-content:center;
gap:15px;
margin:40px 0;
}

.gallery-controls button{
padding:10px 20px;
border:none;
border-radius:25px;
background:#eee;
cursor:pointer;
font-weight:600;
}

.gallery-controls button.active{
background:var(--accent);
color:white;
}

/* ACTIVITIES FIX  */

.activities-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:20px;
margin-top:40px;
}

.activity-card{
background:white;
border-radius:14px;
overflow:hidden;
box-shadow:0 8px 20px rgba(0,0,0,0.1);
}

/* THIS IS THE KEY FIX */
.activity-card img{
width:100%;
height:180px;
object-fit:cover;
display:block;
}

.activity-content{
padding:15px;
}

.activity-content h3{
margin-bottom:8px;
color:#0b1f3a;
}

/* GRID */
.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
padding:20px;
max-width:1200px;
margin:auto;
}

.gallery-item{
overflow:hidden;
border-radius:15px;
cursor:pointer;
}

.gallery-item img{
width:100%;
height:250px;
object-fit:cover;
transition:0.3s;
}

.gallery-item:hover img{
transform:scale(1.1);
}

/* LIGHTBOX  */
.lightbox{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
display:none;
justify-content:center;
align-items:center;
z-index:2000;
}

.lightbox img{
max-width:90%;
max-height:90%;
border-radius:10px;
}

.lightbox .close{
position:absolute;
top:20px;
right:30px;
font-size:40px;
color:white;
cursor:pointer;
}

/* MOBILE */

@media(max-width:900px){

.nav{
flex-direction:column;
gap:10px;
}

.grid-2{
grid-template-columns:1fr;
}

.card-grid{
grid-template-columns:1fr;
}

}

/* HAMBURGER */
.hamburger{
display:none;
font-size:28px;
cursor:pointer;
color:white;
}

/* MOBILE NAV */
@media(max-width:900px){

.hamburger{
display:block;
}

.nav{
flex-direction:row;
justify-content:space-between;
}

/* 🔥 GLASS EFFECT MENU */
.nav-links{
position:absolute;
top:70px;
left:0;
width:100%;

/* CHANGE STARTS HERE */
background:rgba(15, 46, 82, 0.92);
-webkit-backdrop-filter:blur(12px);
backdrop-filter:blur(12px);
/* CHANGE ENDS HERE */

flex-direction:column;
align-items:center;
gap:15px;
padding:20px 0;

display:none;
}

.nav-links.active{
display:flex;
}
}

/* Applications FORM */

.Applications-form{
display:flex;
flex-direction:column;
gap:12px;
}

.Applications-form h3{
margin-top:20px;
margin-bottom:5px;
color:#0b1f3a;
font-size:18px;
}

.Applications-form input,
.Applications-form select,
.Applications-form textarea{
padding:12px;
border-radius:8px;
border:1px solid #ccc;
font-size:14px;
}

.Applications-form input:focus,
.Applications-form select:focus,
.Applications-form textarea:focus{
outline:none;
border-color:var(--accent);
}

.Applications-form textarea{
min-height:100px;
resize:none;
}

.privacy-notice{
  margin-top:15px; 
  font-size:13px; 
  color:#555;
}

/* THANK YOU PAGE IMPROVEMENT */

.thankyou-container{
text-align:center;
max-width:650px;
margin:auto;
}

.thankyou-title{
color:white; /* 👈 change from accent to white for hero contrast */
margin-bottom:20px;
font-size:48px;
}

.thankyou-text{
margin-bottom:15px;
color:#f1f1f1;
line-height:1.6;
}

.thankyou-container .btn{
margin-top:25px;
}

.thankyou-note{
margin-top:20px;
font-size:13px;
color:#ddd;
opacity:0.9;
}

/*  PREMIUM FOOTER */

.site-footer{
    background: linear-gradient(180deg, #0b1f3a, #071423);
    color: #cfd8e3;
    padding: 60px 0 30px;
}

/* GRID */
.footer-grid{
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* LOGO */
.footer-logo img{
    width: 160px;
    border-radius: 12px;
}

/* HEADINGS */
.site-footer h4{
    margin-bottom: 15px;
    color: white;
}

/* LINKS */
.site-footer ul{
    list-style: none;
}

.site-footer ul li{
    margin-bottom: 8px;
}

.site-footer a{
    color: #9fb3c8;
    font-size: 14px;
    transition: 0.3s;
}

/* REMOVE PURPLE VISITED */
.site-footer a:visited{
    color: #9fb3c8;
}

/* HOVER */
.site-footer a:hover{
    color: var(--accent);
    transform: translateX(4px);
}

/* CONTACT */
.site-footer p{
    font-size: 14px;
    margin-bottom: 6px;
}

/* SOCIAL ICONS */
.social-icons{
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a{
    font-size: 18px;
    color: #9fb3c8;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    transition: 0.3s;
}

/* HOVER */
.social-icons a:hover{
    color: white;
    background: var(--accent);
    transform: translateY(-5px);
}

.contact-info{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* make links look like text but clickable */
.contact-link{
    display: flex;
    align-items: center;
    gap: 10px;

    color: #cfd8e3;
    font-size: 14px;

    transition: 0.3s;
}

/* icon style */
.contact-link i,
.contact-info i{
    color: var(--secondary);
    min-width: 18px;
}

/* hover */
.contact-link:hover{
    color: var(--secondary);
    transform: translateX(3px);
}

@media(max-width:900px){
  .contact-info{
    align-items: center;
  }
}

/*  WEBGEN BADGE */
.footer-bottom{
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 25px;

    display: flex;
    justify-content: center;  
    align-items: center;

    text-align: center;
}

/* CONTAINER */
    .webgen-badge{
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* BUTTON */
.webgen-badge a{
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 10px 18px;
    border-radius: 30px;

    background: rgba(255,255,255,0.08);
    color: #cfd8e3;

    text-decoration: none;
    white-space: nowrap;

    transition: 0.3s;
}

/* TEXT COLORS */
.webgen-badge strong{
    color: var(--accent);
}

/* HOVER EFFECT */
.webgen-badge a:hover{
    background: var(--accent);
    color: #1b1b1b;
    transform: translateY(-2px);
}

.webgen-badge a:hover strong{
    color: #1b1b1b;
}

/* SMALL TEXT */
.webgen-badge small{
    display: block;
    margin-top: 6px;
    font-size: 12px;
    opacity: 0.7;
}

@media(max-width:900px){

.footer-grid{
    grid-template-columns: 1fr; 
    text-align: center;
    gap: 30px;
}

.footer-logo img{
  width: 160px;
  border-radius: 12px;
}

@media(max-width:900px){
  .footer-logo img{
    width: 100px;  
  }
}

.site-footer ul{
    padding: 0;
}

@media(max-width:900px){
  .footer-grid > div:nth-child(2){
    display:none;
  }
}

.site-footer p{
    word-break: break-word; 
}

.social-icons{
    justify-content: center;
}
}

/* CONTACT PAGE */

.contact-section{
padding:80px 0;
}

.contact-card{
background:white;
padding:40px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,0.10);

max-width:900px;
margin:auto;
text-align:center;
}

.contact-card h3{
color:var(--primary);
margin-bottom:25px;
font-size:32px;
}

.contact-card p{
margin-bottom:14px;
font-size:16px;
line-height:1.7;
}

/* MAP */

.map-iframe{
width:100%;
height:450px;

border:0;
border-radius:16px;

margin-top:25px;
box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

figure{
margin-top:25px;
}

figcaption{
margin-top:12px;
font-size:14px;
color:#666;
}

/* MOBILE */

@media(max-width:768px){

.contact-card{
padding:25px 20px;
}

.contact-card h3{
font-size:26px;
}

.map-iframe{
height:320px;
}

}