/* GLOBAL RESET AND FONT */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #fff; /* Default text color is white */
}

/* HERO SECTION - BACKGROUND AND LAYOUT */
.hero-container {
    height: 100vh;
    width: 100%;
    /* Replace with your actual image path/filename */
    background-image: url('pexels-thomas-balabaud-735585-3404361.jpg'); 
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    /* Optional: A subtle dark overlay for better text readability */
    position: relative; 
}

/* Add a dark overlay */
.hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2); /* Adjust opacity for desired darkness */
    z-index: 1; /* Keep the overlay below the content */
}

/* Make sure all content is above the overlay */
header, .hero-content {
    z-index: 2;
}

/* NAVIGATION SECTION STYLES */
header {
    background-color: white; /* Solid white background as requested */
    padding: 20px 0 15px 0; /* Padding to adjust spacing */
    display: flex;
    flex-direction: column; /* Stack logo and nav vertically */
    align-items: center; /* Center them horizontally */
    width: 100%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* LOGO STYLING */
.header-logo {
    width: 100px; /* Size for the logo */
    height: 100px;
    margin-bottom: 10px; /* Space between logo and navigation */
}

.navbar {
    display: flex;
    gap: 25px;
}

.nav-item {
    text-decoration: none;
    color: #000; /* Black text as requested */
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-item:hover {
    color: #555; /* Dark gray on hover */
}

/* NEW: Style for indicating the active page */
.nav-item.nav-active {
    font-weight: 700;
    text-decoration: underline;
}

/* MAIN HERO CONTENT (Used for centering on both pages) */
.hero-content {
    flex-grow: 1; /* Take up remaining space */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center the content */
    align-items: center; /* Horizontally center the content */
    text-align: center;
    padding-bottom: 50px; 
}

/* INDEX PAGE SPECIFIC STYLES */
.logo {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
}

.tagline {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* SOCIAL ICONS */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: #fff;
    font-size: 20px;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #ccc;
}

/* NEW: ABOUT PAGE CONTENT BOX STYLES */
.content-box {
    width: 90%;
    max-width: 700px; /* Constrain the size to define the 'square' section */
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
    color: #333; /* Dark text for readability on a white box */
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Lifted appearance */
    text-align: left;
    max-height: 80vh; 
    overflow-y: auto; 
}

.content-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
}

.content-box h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.content-box p, .about-box ul {
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1rem;
}

.content-box ul {
    list-style: disc inside;
    padding-left: 20px;
}

/* MEDIA QUERY FOR RESPONSIVENESS */
@media (max-width: 768px) {
    .logo {
        font-size: 3.5rem;
    }
    .tagline {
        font-size: 1rem;
    }
    .navbar {
        gap: 15px;
    }
    .nav-item {
        font-size: 12px;
    }
    .header-logo {
        width: 70px;
        height: 70px;
    }
    .content-box {
        padding: 20px;
    }
    .content-box h2 {
        font-size: 2rem;
    }
}