/* --- General & Body Styles --- */
body {
    font-family: 'Gotham', sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 10px;
}

h1, h2, h3, h4 {
    font-weight: 700;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: #0558a6;
    text-transform: uppercase;
}
h3 {
  
    text-transform: uppercase;
    color: #0558a6;
}

.page-section {
    padding: 60px 0;
}

.page-section-dark {
    padding: 30px 0;
    background-color: #f0f2f5;
}

/* --- Header & Navigation --- */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: #0558a6;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    
}

.logo {
    text-decoration: none;
    font-weight: 100;
    font-size: 1.5rem;
    color: #2c3e50;
}
.logo img {
    height: 70px; /* Adjust this value to make your logo bigger or smaller */
    width: auto;
    vertical-align: middle; /* Helps align the logo nicely with the navigation links */
  
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    padding: 10px 15px;
    transition: color 0.3s;
}

nav a:hover {
    color: #e67e22;
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/grbs.jpg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    margin-top: 70px; /* Offset for fixed header */
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 5px;
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 60px;
}

.cta-button {
    background-color: #e67e22;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
        transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #d35400;
}

/* --- About Us & Team Section --- */
.about-story {
  /*  max-width: 800px;*/
  width: 100%;
   /* margin: 0 auto 10px auto;*/
   margin: 5px;
    text-align: left;
    font-size: 1.1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    text-align: center;
    text-transform: uppercase;
}

.team-member img {
    width: 250px;
    height: 300px;
   /* border-radius: 50%;*/
    object-fit: cover;
 /*   margin-bottom: 2px;*/
    box-shadow: 0 2px 2px rgba(0,0,0,0.1);
}

.team-member h4 {
    margin-bottom: 5px;
    margin-top: 0;
    font-size: 1.2rem;
    color: #0558a6;
}

.team-member p {
    color: #9a9a9a;
    margin-top: 0;
}

.banners-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}
.banner {
 /*   background-color: #0558a6; /* Bootstrap primary blue */
 background-color: #0558a6;
    color: white;
    padding: 32px;
    border-radius: 2px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    width: 48%;
    box-sizing: border-box;
}

.banner-2 {
 /*   background-color: #0558a6; /* Bootstrap primary blue */
 background-color: #d35400;
    color: white;
    padding: 32px;
    border-radius: 2px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    width: 48%;
    box-sizing: border-box;
}

.banner-icon {
    margin-right: 12px;
    flex-shrink: 0;
}
.banner-icon svg {
    width: 64px;
    height: 64px;
}
.banner-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    color: #fff;
}
.banner-text p {
    margin: 0;
    font-size: 1rem;
}






/* --- Products Section --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.product-category {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 5px 5px rgba(0,0,0,0.1);
}

.product-category img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.product-category:hover img {
    transform: scale(1.1);
}

.category-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  /*  background-color: rgba(83, 86, 90, 0.7);*/
    background-color: rgba(211, 84, 0, 1);
    color: #fff;
    padding: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
}

/* --- Contact Section --- */
.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-info, .contact-map {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    color: #e67e22;
   /* border-bottom: 2px solid #f0f2f5;
    padding-bottom: 10px;
    margin-bottom: 15px;*/
}

.contact-map iframe {
    border-radius: 8px;
}

/* --- Footer --- */
footer {
    background-color: #0558a6;
    color: #ecf0f1;
    text-align: center;
    padding: 20px 0;
}

footer p {
    margin: 0;
    font-weight: 50;
}
/* Styles for Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #a2aaad; /* Dark background */
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    flex-wrap: wrap;
    gap: 20px;
}
#cookie-banner p {
    margin: 0;
    flex-grow: 1;
}
#accept-cookies {
    background-color: #e67e22;
    color: white;
    border: none;
    margin-right: 50px;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

/* Styles for Social Media in Footer */
.social-media {
    text-align: center;
    margin-top: 20px;
}
.social-media a {
    margin: 0 10px;
    display: inline-block;
}
.social-media svg {
    width: 24px;
    height: 24px;
    fill: white;
    transition: fill 0.3s;
}
.social-media a:hover svg {
    fill: #e67e22;
}
footer {
    background-color: #0558a6;
    color: white;
    padding: 40px 0;
}
footer .container {
    text-align: center;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }

    header .container {
        flex-direction: column;
        height: auto;
        padding: 15px;
    }

    nav ul {
        margin-top: 10px;
    }
    
    .hero {
        height: 50vh;
        margin-top: 105px; /* Adjust for taller mobile header */
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .contact-details {
        flex-direction: column;
    }
    
    .banners-container {
        flex-direction: column; /* Stack the banners vertically */
    }

    .banner, .banner-2 {
        width: 100%; /* Make banners take up the full container width */
    }
}