body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fb;
    color: #333;
}
a{
    text-decoration: none !important;
}

button[type="submit"] {
  background-color: #8c57ff; /* new background */
  color: white; /* text color */
  border: none;
  padding: 6px 12px;
  font-size: 0.85rem;
  border-radius: 4px;
  cursor: pointer;
}

button[type="submit"]:hover {
  background-color: #45a049; /* hover shade */
}

h1, h2, h3 {
  color: #8c57ff; /* bright blue headings */
}

.btn-primary {
  background-color: #8c57ff !important;
  border-color: #8c57ffc7 !important;
}

.btn-primary:hover {
  background-color: #8c57ff !important;
  border-color: #8c57ffc7 !important;
}
.album-grid, .image-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.album-card, .image-card {
    width: calc(33% - 10px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 10px;
    text-align: center;
}

.album-thumbnail, .image-thumbnail {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.no-image {
    width: 100%;
    height: 150px;
    background: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.carousel-item img {
  max-height: 400px;
  object-fit: contain;
}

.album-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.album-list li {
    width: 140px;
    text-align: center;
    font-family: Arial, sans-serif;
}

  #randomCarousel .carousel-inner {
    height: 500px;  /* adjust this value as you like */
  }

  /* Make images fit inside the carousel height without distortion */
  #randomCarousel .carousel-item img {
    height: 500px;
    width: 100%;
    object-fit: contain; /* or cover if you want cropping */
    margin: 0 auto; /* center the image */
  }

.site-name {
    padding: 0;
    margin: 0;
    margin-inline-end: 20px;
    font-weight: 300 !important;
    font-size: 1.5rem;
    color: #fff;
}
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #222;
  padding: 10px 20px;
}

.logo-title {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo {
  height: 40px;
  margin-right: 10px;
}

.site-title {
  font-weight: 300 !important;
  font-size: 1.5em;
  color: white;
}

.site-header a {
  color: white !important;
  text-decoration: none;
  margin-left: 15px;
}

.site-header a:hover {
  text-decoration: none;
}

/* Navbar */
.navbar {
    background-color: #8c57ff;
    color: white !important;
    padding: 0.8rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1024px;
    margin: auto;
    padding: 0 1rem;
}

.nav-link {
    color: white !important;
}
.nav-links a {
    color: white !important;
    text-decoration: none;
    margin-left: 1.5rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #a5b4fc;
}

.logo {
    height: 40px;
}

/* Main container */
.container {
    max-width: 1024px;
    margin: 2rem auto;
    padding: 1rem;
}

/* Footer */
.footer {
    background-color: #8c57ff;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 3rem;
}

/* Forms */
form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0,0,0,0.05);
}

input, select, textarea, button {
    display: block;
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    border: 1px solid #ccc;
}

button {
    background-color: #1e3a8a;
    color: white;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #3b82f6;
}

.album-grid, .image-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.album-card, .image-thumb {
    border: 1px solid #ddd;
    padding: 10px;
    width: 200px;
    background-color: #fafafa;
}
.album-card h3 {
    margin-top: 0;
}

.album-container {
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.image-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  padding: 10px;
  transition: transform 0.2s ease;
}

.image-card:hover {
  transform: scale(1.02);
}

.image-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 200px;
}

.image-info {
  padding: 10px 0;
}

.download-btn {
  display: inline-block;
  padding: 6px 12px;
  background-color: #008CBA;
  color: white;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  margin-top: 5px;
}

.download-btn:hover {
  background-color: #006f99;
}


/* Responsive */
@media (max-width: 768px) {
    .navbar-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links a {
        margin: 0.5rem 0;
    }

    .container {
        padding: 1rem;
    }
}
