/* GLOBAL */
body {
    margin: 0;
    font-family: "Helvetica Neue", Arial, sans-serif;
    background: url("../Images/homepage_background.jpeg") no-repeat center center fixed;
    background-size: cover;
}

/* CENTER PAGE */
.page-container {
    width: 1131px;
    margin: 0 auto;
    background-color: #ffffff;
    box-shadow: 0 0 25px rgba(0,0,0,0.2);
}

/* HEADER */
.hero {
    position: relative;
    height: 279px;
    width: 1131px;
    background: url("../Images/PHOTO_FOR_WEB.png") center/cover no-repeat;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 50, 0.65);
    top: 0;
    left: 0;
}

.hero-text {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-text h1 {
    margin: 0;
    font-size: 48px;
    letter-spacing: 4px;
    font-weight: 700;
}

.hero-text h2 {
    margin: 15px 0;
    font-weight: 300;
    font-size: 22px;
}

.hero-text p {
    margin: 5px 0;
    font-size: 18px;
}

.date-location {
    font-weight: bold;
    margin-top: 10px;
}

/* LAYOUT */
.content-wrapper {
    display: flex;
}

/* SIDEBAR */
.sidebar {
    width: 260px;
    background-color: #f2f2f2;
    padding: 30px 20px;
    border-right: 1px solid #ddd;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar li {
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
}

.sidebar li:hover {
    color: #003366;
    padding-left: 8px;
}

/* MAIN CONTENT */
.main-content {
    flex: 1;
    padding: 50px;
    line-height: 1.7;
    color: #333;
}

.main-content h1 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #002244;
}

.main-content h2 {
    margin-top: 40px;
    font-size: 24px;
    color: #003366;
}

.lead {
    font-size: 18px;
    margin-bottom: 20px;
}

.committee ul {
    list-style: none;
    padding: 0;
}

.committee li {
    padding: 6px 0;
}
.sidebar a {
    text-decoration: none;
    color: inherit;
}

.sidebar a:hover {
    text-decoration: none;   /* keeps underline from appearing on hover */
}
/* Contact Page Styling */
.small-hero {
    height: 220px;
}

.contact-email {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 20px;
}

.contact-email a {
    color: #1e3a8a;
    text-decoration: none;
    border-bottom: 2px solid #1e3a8a;
    transition: 0.3s ease;
}

.contact-email a:hover {
    color: #0f172a;
    border-bottom: 2px solid #0f172a;
}

/* Active sidebar link */
.sidebar a.active {
    font-weight: bold;
    color: #1e3a8a;
}
/* Smaller hero for subpages */
.small-hero {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Poster download box */
.poster-box {
    margin-top: 30px;
    padding: 30px;
    background: #f4f6f9;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Download button */
.download-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background-color: #1e3c72;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s ease;
}

.download-btn:hover {
    background-color: #2a5298;
    transform: translateY(-2px);
}

/* Active sidebar link */
.sidebar a.active {
    font-weight: bold;
    color: #1e3c72;
}
/* Society Branding Block */
.society-brand {
    position: absolute;
    top: 25px;
    left: 40px;   /* moved from right to left */
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
}

.society-brand img {
    width: 80px;
    height: auto;
    opacity: 0.95;
}

.society-text {
    display: flex;
    flex-direction: column;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: left;
    line-height: 1.2;
    color: white;
}

.society-text span {
    display: block;
}

/* Make hero positioned relative so absolute works */
.hero {
    position: relative;
}
/* ============================= */
/* STYLISH SIDEBAR DROPDOWN */
/* ============================= */

.sidebar {
    overflow: visible;
}

/* Dropdown container */
.dropdown {
    position: relative;
}

/* Button */
.dropdown-btn {
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    text-align: left;
    padding: 12px 0;
    color: #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s ease;
}

/* Arrow icon */
.dropdown-btn::after {
    content: "▸";
    font-size: 14px;
    transition: transform 0.3s ease;
}

/* Rotate arrow when active */
.dropdown-btn.active::after {
    transform: rotate(90deg);
}

/* Hover effect */
.dropdown-btn:hover {
    color: #1e3c72;
    padding-left: 8px;
}

/* Dropdown content */
.dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding-left: 15px;
}

/* When open */
.dropdown-content.show {
    max-height: 200px;
}

/* Submenu links */
.dropdown-content li {
    border: none;
    padding: 8px 0;
}

.dropdown-content a {
    font-size: 14px;
    color: #555;
    transition: 0.3s ease;
}

.dropdown-content a:hover {
    color: #1e3c72;
    padding-left: 6px;
}
/* Metro Map Image Styling */
.metro-image {
    margin-top: 20px;
    text-align: center;
}

.metro-image img {
    width: 100%;
    max-width: 750px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.metro-image img:hover {
    transform: scale(1.02);
}
/* Lunch Section Grid */
.lunch-grid {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

/* Text column */
.lunch-text {
    flex: 1;
    min-width: 280px;
}

/* Image column */
.lunch-image {
    flex: 1;
    text-align: center;
    min-width: 280px;
}

.lunch-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.lunch-image img:hover {
    transform: scale(1.02);
}
/* Visa Highlight Box */
.visa-highlight {
    background: #eef3fa;
    border-left: 4px solid #1e3c72;
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px;
    font-weight: 500;
}
.committee {
    margin-top: 40px;
    padding: 30px;
    background: #f8f9fb;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.committee h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: #1d3557;
    letter-spacing: 0.5px;
}

.committee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px 30px;
    font-size: 1.05rem;
    color: #333;
}

.committee-grid div {
    padding: 8px 0;
    border-bottom: 1px solid #e2e6ea;
    text-align: center;
    transition: transform 0.2s ease, color 0.2s ease;
}

.committee-grid div:hover {
    transform: translateY(-2px);
    color: #0b3d91;
}