/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #fff;
}

/* Banner */
.banner {
    background: url('./assets/kombat-bg.png') no-repeat center;
    background-size: cover;
    width: 50%;
    height: 200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 1rem;
}

.logo {
  margin:  1rem;
  margin-top: 0rem;
}

.banner .logo img {
    width: 20%;
    
}

/* Header */
.navbar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: #000;
    margin: 0 25%;
    padding: 10px 20px;
    height: 3rem;
    gap: 4rem;
}

.navbar .logo {
    position: relative;
    width: 30%;
    display: flex;
    justify-content: flex-start;
}

/* Hamburger Menu */
.hamburger-menu {
    margin-top: 2rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    gap: 5px;
    width: 30px;
    height: 25px;
    cursor: pointer;
}

.hamburger-menu span {
    width: 100%;
    height: 5px;
    background: white;
    transition: all 0.3s ease-in-out;
}

/* Navigation Links */
.nav-links {
    margin-top: 1.5rem;
    list-style-type: none;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
}

.nav-links a:hover {
    background-color: #444;
    border-radius: 5px;
}

/* Content Section */
.content {
    background-color: #000;
    margin: 0 25%;
    padding: 20px;
    box-sizing: border-box;
}

.intro {
    margin: 2rem 5rem;
}
.intro p {
    margin-bottom: 2rem;
}

h1 {
    color: #fc0000;
    margin-bottom: 2rem;
}

.logo_alirat {
    margin: 4rem 5rem;
}

.logo_alirat p {
    margin-bottom: 2rem; 
}

/* Footer acting as second navigation */
footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    margin: 0 25%;
    padding: 15px 0;
    margin-bottom: 2rem;
}

.footer-links {
    list-style-type: none;
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 12px;
}

.footer-links li {
    display: inline;
}

.footer-links a {
    color: #979797;
    text-decoration: none;
    font-weight: bold;
    padding: 0 10px;
}

.footer-links a:hover {
    background-color: #444;
    border-radius: 5px;
}

.footer-links li:not(:last-child)::after {
    content: '|';
    color: #fff;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

footer p {
    font-size: 14px;
    color: #979797;
}

/*Table style*/
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #161616;
}
table, th, td {
    border: 1px solid #444444;
}
th, td {
    padding: 10px;
    text-align: center;
}

.master {
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center; 
    font-size: 12px;
    text-align: center; 
    line-height: 1.5; 
    word-wrap: break-word; 
}

.row_logos{
    display: flex;
    justify-content: space-around;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: #1a1a1a;
    border: 1px solid #1a1a1a;
    text-align: center;
}

.png_medium {
    display: flex;
    justify-content: center; 
    align-items: center; 
    margin: 1rem 0; 
}

.png_medium img {
    width: 80%;
    height: 80%; 
}



