:root {
  --html-bg: #f5f5f5;
  --background-color: #ffffff;
  --text-color: #333333;
  --header-text: #0077cc;
  --glass: rgba(22, 89, 177, 0.8);
  --banner: rgba(20, 100, 204, 0.7);
  --border: rgba(150, 150, 150, 0.5);
  --link: #003C7A;
  --link-hover: #006bb3;
  --alt-link: #ffffff;
  --alt-link-hover: #bef3fe;
  --logo-bg: #457ac1;
}


html {
  background-color: var(--html-bg);
}

/* Body Styles */
body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  margin: 0 auto;

}

/* Header Styles */
header {
  background-color: var(--banner);
  color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  border-bottom: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  padding: 20px;
  justify-content: center;
}

.content {
  display: inline-block;
  vertical-align: top;
  max-width: 1500px;
  margin: 0 auto;
}

.logo {
  display: inline-block;
  border: 1px solid var(--border);
  height: 150px;
  width: 150px;
  border-radius: 50%;
  margin-right: 30px;
  background-color: var(--logo-bg);
}

@media screen and (max-width: 768px) {
  header {
    flex-direction: column;
    /* Stack items vertically */
    text-align: center;
    align-items: center;
  }

  .logo {
    margin-right: 0px;
    /* Restore margin for larger screens */
  }
}

/* Navigation Styles */
nav {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background: var(--glass);
  z-index: 1000;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  /* Add shadow */
}

@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
  nav {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
}

/* Adjustments to the rest of the navigation styling */
nav ul {
  list-style-type: none;
  padding: 5px;
  margin: 0;
  display: flex;
  justify-content: center;
}

nav ul li {
  margin: 0 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #ecf0f1;
}

@media screen and (max-width: 768px) {
  nav h1 {
    font-size: 28px;
  }

  nav ul li {
    margin: 0 5px;
  }
}

#contact {
  background-color: var(--glass);
  color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
}

#contact h2 {
  margin-bottom: 10px;
  color: #fff;
}

.contact-info {
  font-size: 18px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.contact-item i {
  margin-right: 30px;
}

.contact-item a,
span {
  color: #fff;
  margin-left: 10px;
  text-wrap: wrap;
}

.contact-item a {
  color: var(--alt-link);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--alt-link-hover);
}

@media (max-width: 768px) {
  .contact-item i {
    width: 50px;
    /* Set a fixed width for the icon */
  }
}






/* Main Content Styles */
main {
  padding: 20px;
  margin: 0 auto;
  max-width: 1500px;
}

section {
  margin-bottom: 30px;
}

h2 {
  color: var(--header-text);
  text-align: left;
}

/* Footer Styles */
footer {
  background-color: var(--glass);
  color: #fff;
  padding: 20px;
  text-align: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  /* Add shadow */
}

footer a {
  color: var(--alt-link);
}

footer a:hover {
  color: var(--alt-link-hover);
}

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

.social-media {
  display: flex;
  flex-direction: column;
  justify-content: center;

  h3 {
    text-align: center;
  }
}

.social-icons li {
  display: inline;
  margin-right: 10px;
  margin-left: 10px;
}

ul {
  padding: 10px;
  /* Reset padding to 0 */
}

.social-icons ul {
  padding: 0;
  text-align: center;
  /* Center the list items */
}

@media screen and (max-width: 780px) {
  .social-media {
    width: 100%;
    /* Set width to 100% */
    order: 1;
    /* Change the order to display it below */
  }

  .contact-info {
    width: 100%;
    /* Set width to 100% */
    order: 2;
    /* Change the order to display it above */
  }
}




/* Links Styling */
a {
  color: var(--link);
  text-decoration: underline;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--link-hover);
}

/* Brands Section Styles */
.brands {
  text-align: center;
}

.brand-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  /* Centered by default */
}

@media screen and (max-width: 600px) {
  .brand-grid {
    justify-content: center;
    /* Justify to the left for smaller screens */
  }
}


.brand-wrapper {
  margin: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand {
  width: 100px;
  height: 100px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  border: 1px solid var(--border);
}

/* Brands Section Styles */
.brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
  /* Add transition for smooth animation */
}

.brand:hover {
  transform: scale(1.1);
  /* Increase size on hover */
}

/* For WebKit browsers like Chrome and Safari */
::-webkit-scrollbar {
  width: 5px;
  /* Adjust the width as needed */
}

/* For Firefox */
::-moz-scrollbar {
  width: 5px;
  /* Adjust the width as needed */
}

/* For Internet Explorer and Edge */
::-ms-scrollbar {
  width: 5px;
  /* Adjust the width as needed */
}

/* For all browsers including IE, Edge, Firefox, Chrome, Safari */
::-webkit-scrollbar {
  width: 5px;
  /* Adjust the width as needed */
}

/* For WebKit browsers like Chrome and Safari */
::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  /* Adjust the color as needed */
  border-radius: 5px;
  /* Adjust the border radius as needed */
}

/* For Firefox */
::-moz-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  /* Adjust the color as needed */
  border-radius: 5px;
  /* Adjust the border radius as needed */
}

/* For Internet Explorer and Edge */
::-ms-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  /* Adjust the color as needed */
  border-radius: 5px;
  /* Adjust the border radius as needed */
}

/* For all browsers including IE, Edge, Firefox, Chrome, Safari */
::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  /* Adjust the color as needed */
  border-radius: 5px;
  /* Adjust the border radius as needed */
}

#ooshirts {
  display: flex;
  justify-content: space-between;
  /* Ensures even spacing between images */
  align-items: center;
  /* Aligns images vertically */
}

#ooshirts img {
  width: 48%;
  /* Ensures both images take up equal space */
  height: auto;
  /* Maintains aspect ratio */
  border-radius: 5%;
  /* Makes the images rounded */
  object-fit: cover;
  /* Ensures images fill the container as squares */
}