
/* Base */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  position: relative;
  color: #333;
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('https://preview.redd.it/jc4xbmgzz6661.png?width=1080&crop=smart&auto=webp&s=b3037c0318841730f74e26f78ea6f46dbcc44248');
  background-size: cover;
  background-position: center;
  filter: blur(3px) brightness(0.4);
  z-index: -1;
}


/* Container & layout */
.container {
  display: flex;
  padding: 20px;
  gap: 20px;
  align-items: flex-start; /* Make children only as tall as their content */
  /* Remove min-height or set to auto */
  min-height: auto;
}


/* Sidebars */
.sidebar {
  width: 200px;
  background: rgba(255, 255, 255, 0.30);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.6);
  color: #333;
  font-weight: 600;
  padding: 2px 20px 20px 20px; /* top right bottom left */
}


.left-sidebar {
  border-right: 2px solid #ccc;
}

.right-sidebar {
  border-left: 2px solid #ccc;
}

/* Sidebar title */
.directory-title {
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-weight: bold;
  margin-bottom: 15px;
  padding: px 15px;
  text-align: center;
  color: #222;
}


/* Sidebar links */
.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar li {
  margin-bottom: 12px;
}

.sidebar a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.sidebar a:hover {
  color: #3a7bd5;
  text-shadow: 0 0 8px #3a7bd5;
}

/* Main Content */
.main-content {
  border: 1px solid rgba(255, 255, 255, 0.6);
  /* Keep your existing styles */
  flex: 1;
  padding-left: 80px; /* adds left spacing to push content right */
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 30px;
  box-sizing: border-box;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #222;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  padding-right: 40px; /* adjust as needed */
}




/* Header */
.site-header {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #4a90e2, #357ABD);
  color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(53, 122, 189, 0.6);
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  margin-bottom: 20px;
}

/* Typography inside main content */
.centered-text p {
  line-height: 1.5;
  font-size: 1.1rem;
  margin: 0;
  color: #222;
}

/* Buttons / links styled as buttons */
a.button, button {
  background: linear-gradient(to bottom, #6fb1fc 0%, #3a7bd5 100%);
  border-radius: 12px;
  border: 1px solid #2a5dab;
  color: white;
  padding: 10px 20px;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
  cursor: pointer;
  display: inline-block;
  transition: background 0.3s ease;
  text-decoration: none;
  font-weight: 600;
}


/* Text shadows for content on darker backgrounds */
.content {
  position: relative;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  padding: 20px;
}

.site-header {
  width: 90%;               /* 90% of the page width */
  max-width: 1400px;        /* Optional max width for very large screens */
  margin: 20px auto;        /* Center horizontally with vertical margin */
  background-image: url('https://cdn.wallpapersafari.com/3/16/9SAoZL.jpg');
  background-size: cover;
  background-position: center 4%;
  background-repeat: no-repeat;
  height: 150px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(53, 122, 189, 0.6);
  position: relative;
  color: white;
  text-align: right;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-family: 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 1.9rem;
  text-shadow:
    0 0 6px #4a90e2,
    0 0 12px #357ABD,
    0 0 24px rgba(53, 122, 189, 0.6);
  z-index: 1;
}

/* Optional: Dark overlay for contrast */
.site-header::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);  
  border-radius: 10px;
  z-index: 0;
}

.site-header a, .site-header img {
  position: relative;
  z-index: 1;
  display: inline-block;
  vertical-align: middle;
  max-height: 100px;
  width: auto;
}


/* Paragraph text */
p {
  color: #000;
}

/* List items */
li {
  color: #000;
}

/* Links (not hovered) */
a {
  color: #000;
}

/* Sidebar links specifically */
.sidebar a {
  color: #000;
}

.sidebar a:hover {
  color: #3a7bd5;
  text-shadow: 0 0 8px #3a7bd5;
}

.image-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;  /* Space items evenly in a row */
  row-gap: 20px;
  column-gap: 120px;
  margin-top: 20px;
  width: 100%;
}





.main-content img {
  max-width: 300px;    /* ensures it doesn’t overflow */
  width: 20px;       /* shrink image to a specific width */
  height: auto;       /* maintain aspect ratio */
  display: block;
  margin: 20px auto;  /* centers the image */
}


.gallery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #222;
  transition: transform 0.2s ease;
  width: 90px;
}

.gallery-item img {
  height: auto;      /* keep correct proportions */
  object-fit: contain;  /* or cover, depending on your goal */
  margin-bottom: 4px;
  width: 80px;              /* Let images define the size */
  background: none;         /* Remove background */
  padding: 0;               /* Remove any padding */
  border: none;             /* Remove border if any */
  box-shadow: none;   

}/* Remove any shadow */

.main-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #222;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* ⬅ Push content to top & bottom */
  align-items: flex-end;          /* ⬅ Align items to the right */
  text-align: right;
  padding: 20px 40px;
  box-sizing: border-box;
  height: 100%;                   /* Make sure it can stretch */
}

.gallery-item span {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 6px;
  text-align: center;
  width: 100%;              /* Ensures it stretches within its container */
  display: block;           /* Makes text-align: center work properly */
  color: #000;              /* Optional: ensures readability */
}


.gallery-item img[alt="Discord icon"] {
  width: 80px;
}


.gallery-item span {
  margin-top: 2px;    /* reduce space below label */
}



img[alt="YouTube icon"] {
  width: 175px;
}

img[alt="Twitter icon"] {
  width: 190px;
}

img[alt="Instagram icon"] {
  width: 90px;
}

img[alt="WLM icon"] {
  width: 190px;
}

img[alt="AIM icon"] {
  width: 90px;
}




