/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* Header including Logo and Nav */
header {
    background-color: white; /* Header clear white for logo */
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: fixed; /* Header remains at top */
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px; /* Adjust logo size */
    width: auto;
    margin-right: 15px;
}

.site-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a237e; /* Dark Blue */
    text-transform: uppercase;
}

/* Navigation inside header */
nav {
    display: flex;
}

nav a {
    color: #333;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 400;
    transition: 0.3s;
    font-size: 1rem;
}

nav a:hover {
    color: #1a237e;
    font-weight: 600;
}

/* Home Page Specific (Hero Section) */
.home-hero {
    height: 100vh; /* Full screen height */
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('home-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 80px; /* offset for fixed header */
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

/* Common Container for other pages */
.container {
    max-width: 1000px;
    margin: 100px auto 50px auto; /* More top margin due to fixed nav */
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}