/* Global Styles for Uniform Layout */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Header Styling */
.main-header {
    position: absolute;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Transparent black overlay */
    color: white;
    text-align: center;
    padding: 10px 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: 100%;
    margin: auto;
}

.header-top .logo {
    max-width: 350px; /* Increase logo size further for better alignment */
    height: auto;
    margin-left: 1cm; /* Ensures logo moves to far left */
}

nav {
    margin-right: 1cm; /* Ensures navigation moves to far right */
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

nav ul li {
    display: inline-block;
    padding: 10px 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Banner Image Styling */
.banner {
    width: 100%;
    height: 300px;
    background-image: url('assets/header-cchannel.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Main Product Info */
.product-info {
    text-align: center;
    padding: 20px;
    max-width: 800px;
    margin: auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    top: 250px;
}

.product-info h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.product-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 10px 0;
}

/* Footer Styling */
footer {
    background-color: #001f4d;
    color: white;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    top: 300px;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.footer-column img {
    max-width: 150px;
    margin-bottom: 10px;
    display: block;
}

.footer-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.footer-icons a {
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s;
}

.footer-icons a:hover {
    color: #ffd700;
} 

/* Remove unintended before/after bars */
.site-header::before,
.site-header::after,
.main-navigation::before,
.main-navigation::after {
    content: none !important;
    display: none !important;
}
/*aaaa----*/