/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Calibri', 'Segoe UI', sans-serif;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}

/* Container for centered content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Logo */
header {
    background: #fff;
    padding: 20px 0;
    text-align: center;
}

.logo {
    max-width: 250px; /* Adjust based on actual logo size needs */
    height: auto;
}

/* Navigation */
nav {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
    text-align: center;
    font-family: 'Calibri Light', 'Segoe UI', sans-serif;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #8e44ad; /* Purple color from screenshot */
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
}

nav ul li a:hover,
nav ul li a.active {
    color: #5e2a84; /* Darker purple on hover */
    font-weight: 700;
}

/* Hero Section (Background Image) */
.hero {
    background-image: url('COC.jpg');
    background-size: cover;
    background-position: center;
    height: 500px; /* Adjust height to fit your design */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Optional: Dark overlay to make text pop if image is bright */
.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.3); /* Slight dark tint */
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    font-family: 'Calibri Light', 'Segoe UI', sans-serif;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Tagline Section */
.tagline {
    background: #fff;
    padding: 40px 0;
    text-align: center;
    font-size: 16px;
    color: #555;
}

.tagline p {
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    nav ul li {
        display: block;
        margin: 10px 0;
    }
}

/* About Hero Section */
.about-hero {
    background-image: url('Metro.jpg');
    background-size: cover;
    background-position: center;
    min-height: 600px; /* Adjust height as needed */
    display: flex;
    align-items: flex-start; /* Align content to top left */
    justify-content: flex-start;
    padding: 60px;
    position: relative;
}

/* Dark Overlay Block */
.about-content {
    background: rgba(0, 0, 0, 0.75); /* Dark semi-transparent block */
    padding: 30px;
    max-width: 600px;
    border-radius: 4px;
    color: #fff;
    font-family: 'Calibri Light', 'Segoe UI', sans-serif;
}

.about-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 300;
}

.about-content p {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}

/* Mobile adjustment for About section */
@media (max-width: 768px) {
    .about-hero {
        padding: 30px;
        min-height: 400px;
    }
    .about-content h2 {
        font-size: 32px;
    }
}

/* About Hero Section */
.about-hero {
    background-image: url('Metro.jpg');
    background-size: cover;
    background-position: center;
    min-height: 600px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 60px;
    position: relative;
}

.about-content {
    background: rgba(0, 0, 0, 0.75);
    padding: 30px;
    max-width: 600px;
    border-radius: 4px;
    color: #fff;
    font-family: 'Calibri Light', 'Segoe UI', sans-serif;
    z-index: 2; /* Ensures text stays on top */
}

.about-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 300;
}

.about-content p {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}

@media (max-width: 768px) {
    .about-hero {
        padding: 30px;
        min-height: 400px;
    }
    .about-content h2 {
        font-size: 32px;
    }
}