﻿/* Top navigation bar with links lowkey don't need ts no more*/
.home-nav-bar {
    background-color: #dee2c7; 
    padding: 20px 0; 
    text-align: center; 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
}

/* Container for navigation links */
.home-nav-links {
    display: flex; 
    justify-content: flex-end; 
    gap: 40px; 
    flex-wrap: wrap; 
    padding-right: 40px; 
}

/* Individual navigation links */
.home-nav-links a {
    color: #617955; 
    text-decoration: none; 
    font-size: 1.1rem; 
    font-weight: 600; 
    font-family: 'Georgia', serif; 
    transition: opacity 0.3s ease; 
}

/* Navigation link hover effect */
.home-nav-links a:hover {
    opacity: 0.7; 
}

/* Dropdown container */
.dropdown {
    display: inline-block;
    position: relative;
    cursor: pointer;
}

/* Dropdown button */
.dropdown-toggle {
    color: #617955;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Georgia', serif;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.3s ease;
}

    .dropdown-toggle:hover {
        opacity: 0.7;
    }

    .dropdown-toggle::after {
        content: " ▼";
        font-size: 0.8rem;
        margin-left: 5px;
    }

/* Dropdown menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #dee2c7;
    min-width: 250px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 10px;
    z-index: 1000;
    border: 2px solid #617955;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #617955;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
    text-align: left;
}

    .dropdown-menu a:hover {
        background-color: rgba(97, 121, 85, 0.1);
        opacity: 1;
    }

/*Logo Image!*/
.hero-image-section {
    text-align: center; /* Center the image */
    margin: 0; /* Space below the image */
    padding: 20px 0;
    background-color: transparent; 
}

.index-logo-img {
    max-width: 100%; 
    height: auto; 
    width: auto; 
    max-height: 1080px;
    display: block;
    margin: 0 auto; 
}

.page-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px; /* Two columns: main content and sidebar */
    gap: 0;
    max-width: 100%; /*never more than screen width!*/
    margin: 0 auto; 
    min-height: 100vh; 
}

/*Main Coontent Newer*/
.main-content {
    padding: 0 40px; 
    width: 100%; /* Full width */
}

/* Main title area */
.home-hero {
    padding: 80px 40px; 
    text-align: center; 
}

/* Main title "Linux Learning" */
.hero-title {
    font-family: 'Georgia', serif; 
    font-size: 5rem; 
    color: #dee2c7; 
    text-align: center; 
    margin: 0; 
    font-weight: normal; 
    letter-spacing: 2px;
}

/* "WITH NO GUI" subtitle */
.subtitle {
    display: block; /* Takes full width */
    font-size: 1.2rem;
    text-align: center; 
    color: #dee2c7; 
    margin-top: 15px; /* Space above subtitle */
    text-transform: uppercase; /* ALL CAPS */
    letter-spacing: 4px; 
    font-weight: 300; 
    opacity: 0.9; 
}



.section-header {
    text-align: center; 
    margin: 60px 0 40px; 
}

/* Section title (h2) */
.section-header h2 {
    font-family: 'Georgia', serif; 
    font-size: 2.5rem; 
    color: #dee2c7; 
    margin: 0; 
    font-weight: normal;
    letter-spacing: 1px; 
}

.section-header p {
    font-family: 'Georgia', serif; 
    font-size: 1.1rem; 
    color: #dee2c7; 
    margin: 10px 0 0; 
    opacity: 0.9; /* Slightly transparent */
    line-height: 1.6; 
}
/* Container for topic links */
.topic-list {
    list-style: none; 
    padding: 0; 
    margin: 0 auto; 
    max-width: 600px; 
    text-align: center; /* Center all content */
}


/* Sets background color for entire homepage */
body {
    background-color: #122B10; 
    margin: 0; /* Remove default margins */
    padding: 0; /* Remove default padding */
}

/* Each list item */
.topic-list li {
    margin-bottom: 20px; /* Space between items */
}


.topic-list a {
    display: inline-block; 
    color: #dee2c7; 
    text-decoration: none; /* Remove underline */
    font-size: 1.3rem;
    font-family: 'Georgia', serif;
    font-weight: normal; 
    transition: all 0.3s ease; 
    letter-spacing: 1px;
}

  
.topic-list a:hover {
    opacity: 0.7; 
    transform: scale(1.05); 
}

/* Right column */
.sidebar {
    background-color: rgba(0, 0, 0, 0.15); 
    padding: 50px 30px; 
    border-left: 1px solid rgba(222, 226, 199, 0.2); /* Subtle border */
    display: flex; 
    flex-direction: column; 
    gap: 40px; /* Space between sections */
    overflow-y: auto; /* Scroll if content overflows */
    overflow-x: hidden; 
}

.sidebar-section {
padding: 0; /* No extra padding */
}

/* Sidebar title */
.sidebar h3 {
    font-family: 'Georgia', serif; 
    font-size: 1.8rem;
    color: #dee2c7; 
    margin: 0 0 25px 0; 
    font-weight: normal; 
    letter-spacing: 1px; 
    text-align: left; 
}

/* Sidebar paragraph text */
.sidebar p {
    font-family: 'Georgia', serif; 
    font-size: 1.05rem; 
    color: #dee2c7; 
    line-height: 1.8; 
    margin: 0 0 20px 0; 
    opacity: 0.95; 
    text-align: left; 
}

/* no bottom margin */
.sidebar p:last-child {
    margin-bottom: 0; 
}

/*The suggestion section!*/
.suggestion-section-bottom {
    background-color: #dee2c7;
    padding: 40px 20px;
    margin: 0;
    width: 100%; /* Full width */
    box-sizing: border-box; /*Include padding in width*/
    border-top: 2px solid #122B10;
}

.suggestion-container {
    max-width: auto;
    margin: 0 auto;
    width: 100%; /* Full width */
    box-sizing: border-box; /*Include padding in width*/
}

.suggestion-container h2 {
    text-align: center;
    margin-bottom: 10px;
    color: #122B10;
    font-family: 'Georgia', serif;
    font-size: 2rem;
}

.contact-intro {
    text-align: center; 
    margin-bottom: 25px; /* Space below intro */
    color: #122b10;
}

.contact-form {
    display: flex; /* Flexbox for layout */
    flex-direction: column; 
    gap: 15px; 
}
.form-group {
    display: flex; 
    flex-direction: column; 
    gap: 5px; /* Space between label and input */
}

.form-group label {
    font-family: 'Georgia', serif; 
    font-weight: 600; /* Normal size */
    color: #122B10; 
}


.form-group input,
.form-group textarea {
    padding: 10px; 
    background-color: #ffffff; 
    border: 1px solid #122b10; 
    border-radius: 4px; 
    color: #122b10; 
    font-family: 'Georgia', serif; 
    font-size: 1rem; /* Normal size */
    transition: border-color 0.3s ease; 
    width: 100%; 
    box-sizing: border-box; /* Include padding in width */
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #617955; 
    outline: none; /* Remove default outline */
    background-color: #f5f5f5; 
}

.form-group input::placeholder, /* Bottom padding for page */
.form-group textarea::placeholder {
    color: rgba(18, 43, 16, 0.5); 
}

.form-group textarea {
    resize: vertical; /* Allow vertical resizing */
    min-height: 100px; 
}

/*Submit button*/
.submit-btn {
    padding: 12px 20px; 
    color: #dee2c7; 
    background-color: #617955; 
    border: none; 
    border-radius: 4px; 
    font-family: 'Georgia', serif; 
    font-size: 1rem; 
    font-weight: 600;
    cursor: pointer; 
    transition: all 0.3s ease; 
}

.submit-btn:hover {
    background-color: #9cc97f; 
    color: #122B10; 
    transform: translateY(-2px);
}

/*Success Message*/
.success-message {
    margin-top: 15px; 
    padding: 12px; 
    background-color: rgba(156, 201, 127, 0.2); 
    border: 1px solid #9cc97f; 
    border-radius: 4px; 
    color: #9cc97f; 
    font-family: 'Georgia', serif;
    font-size: 1rem; 
    text-align: center;
}
 
/* Bottom padding for page */
.home-container {
    padding-bottom: 80px; /* Space at bottom of page */
}




