* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #ffffff;
    color: #000000;
    line-height: 1.7;
    overflow-x: hidden;
    padding-top: 80px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background: #ffffff;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.4s ease;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

/* Logo Image Styling */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #000000;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

/* Navigation Links */
nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav a {
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #2b9af5;
}

nav a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #2b9af5;
    display: inline-block;
    transition: width 0.3s ease;
}

nav a:hover:after {
    width: 100%;        
}

/* Header Buttons */
.nav-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #2b9af5;
    font-size: 15px;
}

.btn-primary {
    background: #2b9af5;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(43, 154, 245, 0.25);
}
    
.btn-primary:hover {
    background: rgb(4, 18, 223);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(43, 154, 245, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #2b9af5;
}

.btn-secondary:hover {
    background: rgb(4, 18, 223);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Weather Bar Styling */
.weather-bar {
    background-color: #f8fafc;
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid #e2e8f0;
    color: #000000;
}

.weather-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.weather-bar i {
    margin-right: 5px;
    color: #2b9af5;
}

/* Hero Section Container */
.hero {
    position: relative;
    padding: 110px 0 90px 0;
    background: #ffffff;
    overflow: hidden;
}

/* Background Watermark behind text */
.hero-bg-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;         /* Adjust size of watermark */
    height: 500px;
    background-image: url('logo.png'); /* Ensure this matches your logo filename */
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.12;        /* Subtle opacity so the text stays easily readable */
    pointer-events: none; /* Prevents background image from blocking clicks/text selection */
    z-index: 1;           /* Places it behind the hero content */
}

/* Hero Content (Forces text above watermark) */
.hero-wrapper.centered {
    position: relative;
    z-index: 2;           /* Forces content layer above z-index: 1 watermark */
    display: flex;
    justify-content: center;
    text-align: center;
}

.hero-wrapper.centered .hero-content {
    max-width: 800px;
}

.hero-subtitle {
    color: #2b9af5;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.25;
    margin-bottom: 20px;
    color: #000000;
}

.hero-title span {
    font-size: 1.6rem;
    color: #1a202c;
    font-weight: 500;
}

.hero-text {
    margin-bottom: 30px;
    color: #000000;
    font-size: 1.15rem;
}

.hero-button {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Graduation Section */
.graduation-section {
    padding: 70px 0;
    background: #ffffff;
}

.grad-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.grad-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.grad-card:hover {
    transform: translateY(-5px);
    border-color: #2b9af5;
    box-shadow: 0 12px 24px rgba(43, 154, 245, 0.15);
}

/* Increased height and adjusted positioning to show vertical images better */
.grad-img-wrapper {
    width: 100%;
    height: 380px; /* Increased from 200px to display more vertical height */
    overflow: hidden;
    background-color: #f1f5f9; /* Fallback background for taller frames */
}

.grad-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fits the image neatly inside the taller frame */
    object-position: center top; /* Focuses on the top portion of the photos (faces/heads) */
    transition: transform 0.4s ease;
}

.grad-card:hover .grad-img-wrapper img {
    transform: scale(1.05);
}

.grad-card-body {
    padding: 25px;
}

.grad-card-body h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #000000;
}

.grad-card-body p {
    color: #000000;
    font-size: 0.95rem;
}

/* Honors & Alumni Section */
.honors-section {
    clear: both;
    width: 100%;
    padding: 80px 0;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 45px;
    color: #000000;
}

.cards-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.card {
    display: block;          /* Added to make <a> behave like a block card */
    text-decoration: none;   /* Removes underline */
    color: inherit;          /* Keeps text color normal */
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    flex: 1;
    max-width: 500px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    background: #ffffff;
    border-color: #2b9af5;
    box-shadow: 0 12px 24px -5px rgba(43, 154, 245, 0.18);
    text-decoration: none;   /* Ensures no underline on hover */
    color: inherit;
}

.card-icon {
    font-size: 2.5rem;
    color: #2b9af5;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #000000;
}

.card p {
    color: #000000;
    font-size: 0.95rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-button {
        flex-direction: column;
        align-items: center;
    }

    .cards-grid {
        flex-direction: column;
        align-items: center;
    }

    .hero-bg-watermark {
        width: 320px;
        height: 320px;
    }
}