/* CSS Variables */
:root {
  --color-primary: #0b0b0b;
  --color-secondary: #ffffff;
  --color-border: #000000;
  
  --spacing-xs: 10px;
  --spacing-sm: 20px;
  --spacing-md: 30px;
  --spacing-lg: 50px;
  --spacing-xl: 80px;
  
  --container-max-width: 1200px;
  --transition-speed: 0.5s;
  
  --border-radius-button: 20px;
  --border-width: 5px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Base Layout */
.everything {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--color-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Navigation */
.navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-xs) var(--spacing-sm);
  width: 100%;
  background-color: var(--color-secondary);
  position: relative;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  padding: var(--spacing-xs);
}

.logo-BRKN {
  width: 60px;
  height: auto;
  object-fit: contain;
}

.menu-and-contact {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.menu a {
  font-family: var(--h4-font-family);
  font-weight: var(--h4-font-weight);
  color: var(--color-primary);
  font-size: var(--h4-font-size);
  text-decoration: none;
  transition: transform var(--transition-speed) ease;
  white-space: nowrap;
}

.menu a:hover {
  transform: scale(0.95);
}

.contact-us {
  display: flex;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: var(--border-radius-button);
  border: var(--border-width) solid var(--color-border);
  background-color: transparent;
  font-family: var(--h4-font-family);
  font-weight: var(--h4-font-weight);
  color: var(--color-primary);
  font-size: var(--h4-font-size);
  text-decoration: none;
  transition: transform var(--transition-speed) ease;
  cursor: pointer;
}

.primary-button:hover {
  transform: scale(0.95);
}

/* Hero Section */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: var(--container-max-width);
  padding: 150px var(--spacing-sm);
  background-size: cover;
  background-position: center;
  min-height: 500px;
  opacity: 0;
  animation: fadeIn 0.5s ease-in-out forwards;
}

.hero-title {
  font-family: var(--h0-font-family);
  font-weight: var(--h0-font-weight);
  color: var(--color-secondary);
  font-size: var(--h0-font-size);
  text-align: center;
  letter-spacing: var(--h0-letter-spacing);
  line-height: var(--h0-line-height);
}

/* Section Divider */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: var(--container-max-width);
  padding: var(--spacing-md) 0;
  overflow: visible;
}

.section-divider img {
  width: 100%;
  height: auto;
  max-height: 2px;
  display: block;
}

/* Event Section */
.event-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: var(--container-max-width);
  padding: var(--spacing-xl) var(--spacing-sm);
  background-size: cover;
  background-position: center;
  position: relative;
  opacity: 0;
  animation: fadeInUp 0.5s ease-in-out forwards;
  gap: var(--spacing-md);
}

.event-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.event-section > * {
  position: relative;
  z-index: 2;
}

.event-title {
  font-family: var(--h1-font-family);
  font-weight: var(--h1-font-weight);
  color: var(--color-secondary);
  font-size: 32px;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--spacing-xs);
}

.event-poster {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  margin: var(--spacing-xs) 0;
}

.event-info-box {
  position: relative;
  width: 100%;
  max-width: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-sm);
  border: var(--border-width) solid var(--color-secondary);
}

.event-info-text {
  font-family: var(--h3-font-family);
  font-weight: var(--h3-font-weight);
  color: var(--color-secondary);
  font-size: var(--h3-font-size);
  letter-spacing: var(--h3-letter-spacing);
  line-height: var(--h3-line-height);
  text-align: center;
  margin: 0;
}

/* Featured Image Section */
.featured-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: var(--container-max-width);
  padding: var(--spacing-xl) var(--spacing-sm);
  opacity: 0;
  animation: fadeInUp 0.5s ease-in-out forwards;
}

.featured-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

/* Summer Collection Section */
.summer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: var(--container-max-width);
  padding: var(--spacing-xl) var(--spacing-sm);
  gap: var(--spacing-md);
  opacity: 0;
  animation: fadeInUp 0.5s ease-in-out forwards;
}

.summer-section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  width: 100%;
}

.summer-title {
  font-family: var(--h1-font-family);
  font-weight: var(--h1-font-weight);
  color: var(--color-secondary);
  font-size: var(--h1-font-size);
  text-align: center;
  letter-spacing: var(--h1-letter-spacing);
  line-height: var(--h1-line-height);
}

.summer-gallery-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: var(--spacing-sm);
}

.summer-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-xl);
  padding: var(--spacing-lg);
  border: var(--border-width) solid var(--color-secondary);
  flex-wrap: wrap;
}

.summer-product-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Past Event Section */
.past-event-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: var(--container-max-width);
  padding: var(--spacing-xl) var(--spacing-sm) 100px var(--spacing-sm);
  gap: var(--spacing-lg);
  margin: 0 auto;
  opacity: 0;
  animation: fadeInUp 0.5s ease-in-out forwards;
}

.past-event-title {
  font-family: var(--h1-font-family);
  font-weight: var(--h1-font-weight);
  color: var(--color-secondary);
  font-size: var(--h1-font-size);
  text-align: center;
  letter-spacing: var(--h1-letter-spacing);
  line-height: var(--h1-line-height);
  font-style: var(--h1-font-style);
  margin: 0 0 var(--spacing-lg) 0;
  width: 100%;
}

.past-event-posters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: var(--spacing-md);
}

.past-event-poster {
  width: 100%;
  max-width: 320px;
  height: auto;
  aspect-ratio: 0.81;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.past-event-poster:hover {
  transform: scale(1.05);
}

.past-event-details {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  width: 100%;
  max-width: 800px;
}

.event-card {
  position: relative;
  flex: 1;
  min-width: 280px;
  max-width: 380px;
  min-height: 160px;
  padding: var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--border-width) solid var(--color-secondary);
  border-radius: 4px;
  box-sizing: border-box;
}

.event-description {
  font-family: var(--h3-font-family);
  font-weight: var(--h3-font-weight);
  color: var(--color-secondary);
  font-size: var(--h3-font-size);
  letter-spacing: var(--h3-letter-spacing);
  line-height: var(--h3-line-height);
  font-style: var(--h3-font-style);
  text-align: center;
  margin: 0;
}

.event-card-divider {
  display: none;
}

/* Footer */
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: var(--spacing-sm);
  padding: var(--spacing-xl) var(--spacing-sm);
  background-color: var(--color-secondary);
}

.footer-copyright {
  font-family: var(--h3-font-family);
  font-weight: var(--h3-font-weight);
  color: var(--color-primary);
  font-size: var(--h3-font-size);
  text-align: center;
  letter-spacing: var(--h3-letter-spacing);
  line-height: var(--h3-line-height);
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-xs);
  flex-wrap: wrap;
  justify-content: center;
}

.footer-social-links a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.footer-social-links a:hover {
  transform: scale(1.1);
}

.footer-social-links a:focus {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
}

.social-icon {
  width: 37px;
  height: 37px;
  object-fit: cover;
  aspect-ratio: 1;
}

.footer-logo-wrapper {
  display: flex;
  padding: var(--spacing-xs);
}

.footer-logo {
  width: 266px;
  height: auto;
  max-height: 73px;
  aspect-ratio: 3.62;
  object-fit: cover;
}

/* Responsive Design - Tablet */
@media (max-width: 768px) {
  .navigation {
    padding: var(--spacing-xs);
  }
  
  .menu {
    gap: var(--spacing-sm);
  }
  
  .menu a {
    font-size: 16px;
  }
  
  .primary-button {
    padding: 12px 24px;
    font-size: 16px;
  }
  
  .hero-section {
    padding: 100px var(--spacing-sm);
    min-height: 400px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .event-title {
    font-size: 28px;
  }
  
  .event-poster {
    max-width: 320px;
  }
  
  .event-info-box {
    max-width: 320px;
  }
  
  .summer-title {
    font-size: 28px;
  }
  
  .summer-gallery {
    gap: var(--spacing-md);
    padding: var(--spacing-md);
  }
  
  .summer-product-image {
    max-width: 300px;
  }
  
  .past-event-section {
    padding: var(--spacing-lg) var(--spacing-sm);
  }
  
  .past-event-title {
    font-size: 28px;
  }
  
  .past-event-posters {
    gap: var(--spacing-sm);
  }
  
  .past-event-poster {
    max-width: 280px;
  }
  
  .past-event-details {
    gap: var(--spacing-sm);
  }
  
  .event-card {
    min-width: 250px;
  }
}

/* Responsive Design - Mobile */
@media (max-width: 480px) {
  .navigation {
    flex-direction: column;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs);
  }
  
  .menu-and-contact {
    flex-direction: column;
    gap: var(--spacing-xs);
  }
  
  .menu {
    flex-direction: column;
    gap: var(--spacing-xs);
  }
  
  .menu a {
    font-size: 14px;
  }
  
  .primary-button {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .hero-section {
    padding: 60px var(--spacing-xs);
    min-height: 300px;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .event-section {
    padding: var(--spacing-lg) var(--spacing-xs);
  }
  
  .event-title {
    font-size: 24px;
  }
  
  .event-poster {
    max-width: 280px;
  }
  
  .event-info-box {
    max-width: 280px;
    padding: var(--spacing-xs);
  }
  
  .event-info-text {
    font-size: 16px;
  }
  
  .summer-section {
    padding: var(--spacing-lg) var(--spacing-xs);
  }
  
  .summer-title {
    font-size: 24px;
  }
  
  .summer-gallery {
    flex-direction: column;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
  }
  
  .summer-product-image {
    max-width: 100%;
  }
  
  .past-event-section {
    padding: var(--spacing-lg) var(--spacing-xs);
  }
  
  .past-event-title {
    font-size: 24px;
  }
  
  .past-event-posters {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .past-event-poster {
    max-width: 100%;
  }
  
  .past-event-details {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .event-card {
    width: 100%;
    max-width: 100%;
    min-width: auto;
    padding: var(--spacing-sm);
  }
  
  .event-description {
    font-size: 16px;
  }
  
  .footer {
    padding: var(--spacing-lg) var(--spacing-xs);
  }
  
  .footer-copyright {
    font-size: 14px;
  }
  
  .social-icon {
    width: 50px;
    height: 50px;
  }
  
  .footer-logo {
    max-width: 250px;
  }
}

/* Product Detail Section */
.product-detail-section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: var(--container-max-width);
  padding: var(--spacing-xl) var(--spacing-sm);
  gap: var(--spacing-xl);
  flex-wrap: wrap;
}

.product-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  flex-shrink: 0;
}

.product-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-lg);
  max-width: 500px;
}

.product-title {
  font-family: var(--h2-font-family);
  font-weight: var(--h2-font-weight);
  color: var(--color-secondary);
  font-size: var(--h2-font-size);
  text-align: center;
  letter-spacing: var(--h2-letter-spacing);
  line-height: var(--h2-line-height);
  margin: 0;
}

.product-description {
  font-family: var(--h4-font-family);
  font-weight: var(--h4-font-weight);
  color: var(--color-secondary);
  font-size: var(--h4-font-size);
  text-align: center;
  letter-spacing: var(--h4-letter-spacing);
  line-height: var(--h4-line-height);
  margin: 0;
}

/* Responsive Design - Product Detail */
@media (max-width: 768px) {
  .product-detail-section {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .product-image {
    max-width: 100%;
  }
  
  .product-info {
    padding: var(--spacing-md);
  }
  
  .product-title {
    font-size: 28px;
  }
  
  .product-description {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .product-detail-section {
    padding: var(--spacing-lg) var(--spacing-xs);
  }
  
  .product-info {
    padding: var(--spacing-sm);
  }
  
  .product-title {
    font-size: 24px;
  }
  
  .product-description {
    font-size: 14px;
  }
}

/* Hero Hoodie Section */
.hero-hoodie-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: var(--container-max-width);
  padding: var(--spacing-xl) var(--spacing-sm);
  margin: 0 auto;
  opacity: 0;
  animation: fadeIn 0.5s ease-in-out forwards;
}

.hero-hoodie-image {
  width: 100%;
  max-width: 1190px;
  height: auto;
  aspect-ratio: 0.88;
  object-fit: cover;
  display: block;
}

/* Collection Page Hero Section */
.hero-section-summer-collection {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: var(--container-max-width);
  padding: var(--spacing-xl) var(--spacing-sm);
  background-image: url(../images/Penting-dilihat.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 867px;
  opacity: 0;
  animation: fadeIn 0.5s ease-in-out forwards;
}

/* Responsive Design - Collection Hero */
@media (max-width: 768px) {
  .hero-section-collection {
    padding: var(--spacing-lg) var(--spacing-sm);
    min-height: 450px;
  }
  
  .hero-hoodie-section {
    padding: var(--spacing-lg) var(--spacing-sm);
  }
  
  .hero-hoodie-image {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-section-summer-collection {
    padding: var(--spacing-md) var(--spacing-xs);
    min-height: 350px;
  }
  
  .hero-hoodie-section {
    padding: var(--spacing-md) var(--spacing-xs);
  }
  
  .hero-hoodie-image {
    max-width: 100%;
  }
}

/* About Section */
.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: var(--container-max-width);
  padding: var(--spacing-xl) var(--spacing-sm);
  gap: var(--spacing-xl);
  flex-wrap: wrap;
}

.about-image {
  width: 100%;
  max-width: 550px;
  height: auto;
  object-fit: cover;
  flex-shrink: 0;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-lg);
  max-width: 500px;
}

.about-title {
  font-family: var(--h2-font-family);
  font-weight: var(--h2-font-weight);
  color: var(--color-secondary);
  font-size: var(--h2-font-size);
  text-align: center;
  letter-spacing: var(--h2-letter-spacing);
  line-height: var(--h2-line-height);
  margin: 0;
}

.about-text {
  font-family: var(--h4-font-family);
  font-weight: var(--h4-font-weight);
  color: var(--color-secondary);
  font-size: var(--h4-font-size);
  text-align: center;
  letter-spacing: var(--h4-letter-spacing);
  line-height: var(--h4-line-height);
  margin: 0;
}

/* Responsive Design - About Section */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .about-image {
    max-width: 100%;
  }
  
  .about-content {
    padding: var(--spacing-md);
  }
  
  .about-title {
    font-size: 28px;
  }
  
  .about-text {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: var(--spacing-lg) var(--spacing-xs);
  }
  
  .about-content {
    padding: var(--spacing-sm);
  }
  
  .about-title {
    font-size: 24px;
  }
  
  .about-text {
    font-size: 14px;
  }
}

/* Contact/Content Section */
.content-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: var(--container-max-width);
  padding: var(--spacing-lg) var(--spacing-xl);
  gap: var(--spacing-xs);
}

.content-title {
  font-family: var(--h1-font-family);
  font-weight: var(--h1-font-weight);
  color: var(--color-secondary);
  font-size: var(--h1-font-size);
  letter-spacing: var(--h1-letter-spacing);
  line-height: var(--h1-line-height);
  margin: 0;
}

.content-text {
  font-family: var(--h3-font-family);
  font-weight: var(--h3-font-weight);
  color: var(--color-secondary);
  font-size: var(--h3-font-size);
  letter-spacing: var(--h3-letter-spacing);
  line-height: var(--h3-line-height);
  margin: 0;
}

/* Responsive Design - Content Section */
@media (max-width: 768px) {
  .content-section {
    padding: var(--spacing-md) var(--spacing-lg);
  }
  
  .content-title {
    font-size: 28px;
  }
  
  .content-text {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .content-section {
    padding: var(--spacing-sm) var(--spacing-md);
  }
  
  .content-title {
    font-size: 24px;
  }
  
  .content-text {
    font-size: 16px;
  }
}
