@media (max-width: 768px) {
  .page-header {
    padding: 40px 0;
    margin-bottom: 40px;
  }
  .page-header h1 {
    font-size: 1.5rem;
    line-height: 1.2;
    word-break: break-word;
    white-space: normal;
    padding: 0 10px;
  }
}
/* ===================================
   BASIN KÜPÜRLERİ - ALBUM GRID STYLES
   =================================== */




.press-archive-section {
  padding: 60px 0;
  background-color: #f4f6f9;
  min-height: 80vh;
}

/* ALBUM GRID */
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.album-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid #f0f0f0;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
}

.album-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(20, 33, 61, 0.15); /* Navy shadow */
  border-color: var(--secondary-color); /* Gold border */
}

.album-cover {
  height: 180px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e0e0e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Pattern overlay for cover */
.album-cover::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(var(--primary-color) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.1;
}

.album-icon {
  font-size: 4rem;
  color: var(--secondary-color); /* Gold icon */
  text-shadow: 0 5px 15px rgba(0,0,0,0.1);
  z-index: 1;
  transition: transform 0.4s ease;
}

.album-card:hover .album-icon {
  transform: scale(1.1) rotate(-5deg);
}

.album-details {
  padding: 25px;
  text-align: center;
}

.album-year {
  /* ===================================
     BASIN KÜPÜRLERİ - ALBUM GRID STYLES
     =================================== */
  font-size: 1.8rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 5px;
  letter-spacing: -0.5px;
}

.album-title {
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.album-action {
  display: inline-block;
  padding: 10px 25px;
  background-color: #f7f3e8; /* Light gold tint */
  color: var(--primary-color); /* Navy text */
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.album-card:hover .album-action {
  background-color: var(--secondary-color); /* Gold BG */
  color: white;
}

/* MODAL / LIGHTBOX STYLES */
.archive-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.archive-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-header {
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.modal-title {
  /* ===================================
     BASINLA FOTOĞRAFLAR - GRID GALLERY
     =================================== */
  font-size: 1.5rem;
  font-weight: 600;
}

.modal-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #e53935;
}

.modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 40px;
}

.modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.modal-image-placeholder {
  background-color: #222;
  border-radius: 8px;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  border: 1px solid #333;
}

.modal-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* SCROLLBAR FOR MODAL */
.modal-body::-webkit-scrollbar {
  width: 8px;
}
.modal-body::-webkit-scrollbar-track {
  /* ===================================
     BLOG LIST PAGE STYLES
     =================================== */
  background: #111;
}
.modal-body::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 4px;
}

/* Added for Link-based Structure */
.album-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.album-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* PAGE HEADER (Sade Banner) */
.page-header {
  position: relative;
  background-color: var(--primary-color);
  background-image: 
    linear-gradient(135deg, rgba(20, 33, 61, 0.95) 0%, rgba(20, 33, 61, 0.8) 100%),
    repeating-linear-gradient(45deg, rgba(212, 175, 55, 0.03) 0px, rgba(212, 175, 55, 0.03) 1px, transparent 1px, transparent 10px),
    repeating-linear-gradient(-45deg, rgba(212, 175, 55, 0.03) 0px, rgba(212, 175, 55, 0.03) 1px, transparent 1px, transparent 10px);
  padding: 80px 0;
  margin-bottom: 0;
  text-align: center;
  border-bottom: 4px solid var(--secondary-color);
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border: 2px solid rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.page-header h1 {
  color: white;
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  text-align: center;
  position: relative;
  z-index: 1;
  text-shadow: 0 4px 10px rgba(0,0,0,0.3);
  letter-spacing: 2px;
  line-height: 1.3;
  text-transform: none;
}

@media (max-width: 768px) {
  .page-header {
    padding: 40px 0;
    margin-bottom: 40px;
  }
  .page-header h1 {
    font-size: 1.75rem;
  }
}
