/* FILOSOFI LOGO SPECIFIC STYLES */
.filosofi-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 120px 20px 80px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.filosofi-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/background-pattern.png') repeat;
  opacity: 0.05;
}

.filosofi-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.filosofi-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  position: relative;
  z-index: 2;
  font-weight: 300;
}

.filosofi-content {
  padding: 60px 0;
  background-color: #f5f8fb;
  min-height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blue-container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.blue-frame-portrait {
  background-color: var(--primary-color);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 900px;
  position: relative;
  overflow: hidden;
}

.blue-frame-portrait::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  pointer-events: none;
}

.blue-frame-portrait::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  pointer-events: none;
}

.filosofi-image-portrait {
  max-width: 95%;
  max-height: 800px;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 2;
  position: relative;
}

.navigation-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
  width: 100%;
  padding: 0 20px;
}

.nav-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.nav-button:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Lightbox styles for image zoom */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.close-lightbox {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2001;
}

.close-lightbox:hover {
  color: var(--accent-color);
}

/* RESPONSIVE STYLES */
@media (max-width: 1200px) {
  .blue-frame-portrait {
    max-width: 750px;
    min-height: 850px;
  }
  
  .filosofi-image-portrait {
    max-height: 750px;
  }
}

@media (max-width: 992px) {
  .blue-frame-portrait {
    max-width: 700px;
    min-height: 800px;
  }
  
  .filosofi-image-portrait {
    max-height: 700px;
  }
}

@media (max-width: 868px) {
  .blue-frame-portrait {
    max-width: 650px;
    min-height: 750px;
  }
  
  .filosofi-image-portrait {
    max-height: 650px;
  }
}

@media (max-width: 768px) {
  .filosofi-hero {
    padding: 100px 20px 60px;
  }
  
  .filosofi-hero h1 {
    font-size: 2rem;
  }
  
  .filosofi-hero p {
    font-size: 1rem;
  }
  
  .blue-frame-portrait {
    max-width: 600px;
    min-height: 700px;
    padding: 30px 25px;
  }
  
  .filosofi-image-portrait {
    max-height: 600px;
    max-width: 92%;
  }
  
  .navigation-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .nav-button {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 668px) {
  .blue-frame-portrait {
    max-width: 550px;
    min-height: 650px;
    padding: 25px 20px;
  }
  
  .filosofi-image-portrait {
    max-height: 550px;
  }
}

@media (max-width: 576px) {
  .filosofi-hero h1 {
    font-size: 1.8rem;
  }
  
  .blue-container {
    padding: 0 15px;
  }
  
  .blue-frame-portrait {
    max-width: 100%;
    min-height: 600px;
    padding: 20px 15px;
    border-radius: 12px;
  }
  
  .filosofi-image-portrait {
    max-height: 500px;
    max-width: 90%;
  }
  
  .blue-frame-portrait::before {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  
  .nav-button {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .blue-frame-portrait {
    min-height: 550px;
    padding: 18px 12px;
  }
  
  .filosofi-image-portrait {
    max-height: 450px;
  }
  
  .nav-button {
    max-width: 250px;
  }
}

@media (max-width: 400px) {
  .blue-frame-portrait {
    min-height: 500px;
    padding: 15px 10px;
  }
  
  .filosofi-image-portrait {
    max-height: 400px;
  }
  
  .nav-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 360px) {
  .blue-frame-portrait {
    min-height: 450px;
  }
  
  .filosofi-image-portrait {
    max-height: 350px;
  }
}