/* Existing styles... */

/* Global styles */
html, body {
    height: 100%;
    margin: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
    padding: 20px;
    background-image: url('../images/mian_background.jpeg'); /* Replace with the actual image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* This makes the background image fixed */
    position: relative; /* For overlay positioning */
}

main::before {
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(5, 5, 5, 0.3); /* Dark overlay, you can change the opacity as needed */
    position: relative;
    z-index: 2; /* Higher than the z-index of main::before */
}

/* Header styles */
header {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 254, 253);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.nav-brand {
    font-size: 1.8em;
    font-weight: bold;
}

/* Navigation styles */
nav ul {
    list-style-type: none;
    display: flex;
    margin-left: auto;
    margin-right: 20px;
}

nav ul li {
    margin-left: 20px;
}

nav a {
    text-decoration: none;
    color: rgba(251, 137, 55, 0.955);
    position: relative;
}

nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    right: 0;
    background: white;
    transition: width .3s;
}

nav a:hover:after,
nav a.active:after {
    width: 100%;
    left: 0;
    background: white;
}

/* Logo styles */
.header-logo {
    height: 50px; /* Adjust as needed */
    /* margin-left: auto; Push the logo to the right */
}

/* Description block styles */
.discribe {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 60px);
    text-align: center;
    padding: 0 20px;
    color: #333;
}

blockquote {
    font-size: 1.5em;
    line-height: 1.8;
    color: rgba(231, 94, 2, 0.94);
    background-color: black; /* Solid black background */
    border-left: 5px solid #FFA07A; /* Adds an accent line, use your brand color */
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    max-width: 800px; /* Or the max-width you prefer */
    border-radius: 8px; /* Optional: rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: adds subtle shadow */
    position: relative; /* For layered positioning */
    z-index: 2; /* Ensures it's above the background overlay */
}

/* If you have an overlay, ensure the blockquote is above it */
main::before {
    /* ... existing styles ... */
    z-index: 1; /* Lower z-index than the blockquote */
}

/* Footer styles */
footer {
    flex-shrink: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgb(0, 0, 0);
    color: white;
    padding: 20px;
    text-align: center;
}

.footer-section {
    margin: 0 10px;
}

.footer-section h3 {
    margin-bottom: 10px;
}

.social-links {
    text-align: right;
}

.social-links a {
    color: white;
    margin: 0 5px;
    font-size: 24px;
}

.social-links a:hover {
    color: #f90;
}

.contact-detail {
    color: rgba(251, 137, 55, 0.955);
}

a.contact-detail {
    color: #FFA07A; /* Light pale orange color */
    text-decoration: none; /* Optional: removes underline from links */
}
a.contact-detail:hover {
    color: #ff4500; /* Slightly darker orange color for hover effect */
}

/* Animation styles */
@keyframes fadeInAnimation {
    0% {
        opacity: 0
        opacity: 0; /* Fully transparent */
        transform: translateX(-50px); /* Optional: starts from the left */
    }
    100% {
        opacity: 1; /* Fully visible */
        transform: translateX(0px); /* Aligns to the normal position */
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.discribe blockquote {
    animation: fadeIn 2s ease-in forwards;
}

/* About Page Content Section Styles */
.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* creates two columns */
    grid-gap: 20px; /* adds gap between grid items */
}

/* Styles for content blocks */
.content-block {
    background-color: white; /* Bright white background */
    color: #333333; /* Dark text for contrast */
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    filter: brightness(1.1); /* Increase brightness; values >1 will lighten the content */
    opacity: 1; /* Ensure full opacity */
    /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
}

/* Full-width block style if needed */
.full-width {
    grid-column: 1 / -1; /* spans full width */
}