/* Popup and Layout Styles */

/* Font Declarations */
@font-face {
  font-family: 'Bookmania';
  src: url('../fonts/Bookmania-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bookmania';
  src: url('../fonts/Bookmania-Semibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bookmania';
  src: url('../fonts/Bookmania-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica neu';
  src: url('../fonts/Helvetica-Neu-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica';
  src: url('../fonts/Helvetica.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica';
  src: url('../fonts/Helvetica-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Roboto and PT Serif are loaded from Google Fonts */

/* Page Layout */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.body-2 {
  min-height: 100vh;
}

.section {
  display: block;
  width: 100%;
}

/* Navigation Styles */
.menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 15px 20px;
  box-sizing: border-box;
}

.menu-items {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.menu-item {
  color: white;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 4px;
}

.menu-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

  /* Nav Image Styling */
  .nav-image {
    height: 48px;
  width: auto;
  display: block;
  margin: 0 auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* Album image should be larger */
.menu-item img[alt="ALBUM"] {
  height: 24px;
}

/* Shop Dropdown */
.shop-dropdown {
  position: relative;
  display: inline-block;
}

.shop-trigger {
  cursor: pointer;
  margin-bottom: 0;
}

.shop-dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  min-width: 120px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 0;
}

.shop-dropdown:hover .shop-dropdown-content {
  display: block;
}

.shop-link {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 12px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  transition: background 0.3s ease;
}

.shop-link:hover {
  background: #f5f5f5;
}

/* Content Area */
.content {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
}

.hero-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: black;
  object-position: center;
  display: block;
}

/* Footer Styles */
.footer {
  padding: 20px;
  text-align: center;
  background: transparent;
}

.sociallinks {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.sociallink {
  display: inline-block;
  transition: transform 0.3s ease;
}

.sociallink:hover {
  transform: scale(1.1);
}

.social-icon {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.disclaimerlinks {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.disclaimerlink {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 12px;
  font-family: "Roboto", sans-serif;
  transition: color 0.3s ease;
}

.disclaimerlink:hover {
  color: white;
}

/* Newsletter Popup Styles */
.newsletter-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.newsletter-popup.active {
  opacity: 1;
  visibility: visible;
}

.newsletter-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
}

.newsletter-popup-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 40px 40px 40px;
  box-sizing: border-box;
  overflow-y: auto;
}

.newsletter-popup-content {
  padding: 40px;
  max-width: 800px;
  width: 100%;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-popup.active .newsletter-popup-content {
  transform: scale(1);
}

.newsletter-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: white;
  z-index: 10000;
}

.newsletter-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

/* Sale Timeline Styles */
.sale-timeline {
  margin: 60px 0 40px 0;
  position: relative;
  padding-left: 30px;
}

.sale-timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: white;
  opacity: 0.3;
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
}

.timeline-dot {
  position: absolute;
  left: -30px;
  top: 0;
  width: 12px;
  height: 12px;
  background: #DB291D;
  border-radius: 50%;
  border: none;
}

.timeline-content {
  color: white;
}

.timeline-title {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
  color: white;
}

.timeline-subtitle {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 8px;
  color: white;
}

.timeline-description {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.4;
  color: white;
}

/* Newsletter Form Styles */
.newsletter-form-section {
  margin-top: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-control:focus {
  outline: none;
  border-color: white;
  background: rgba(255, 255, 255, 0.2);
}

.newsletter-submit-btn {
  width: 100%;
  padding: 15px 20px;
  background: white;
  color: #DB291D;
  border: none;
  border-radius: 0;
  font-size: 16px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.newsletter-submit-btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.newsletter-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Tour Popup Styles */
.tour-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tour-popup.active {
  opacity: 1;
  visibility: visible;
}

.tour-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
}

.tour-popup-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 40px 40px 40px;
  box-sizing: border-box;
  overflow-y: auto;
}

.tour-popup-content {
  padding: 40px;
  max-width: 1000px;
  width: 100%;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-popup.active .tour-popup-content {
  transform: scale(1);
}

.tour-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: white;
  z-index: 10000;
}

.tour-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.tour-popup .div-block {
  background: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  min-height: 600px;
}

.tour-popup .code-embed {
  width: 100%;
  height: 100%;
}

/* Content Popup Styles */
.content-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.content-popup.active {
  opacity: 1;
  visibility: visible;
}

.content-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.content-popup-container {
  position: relative;
  width: 90%;
  max-width: 600px;
  background: white;
  border-radius: 8px;
  padding: 40px;
  box-sizing: border-box;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-popup.active .content-popup-container {
  transform: scale(1);
}

.content-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #666;
  transition: color 0.3s ease;
}

.content-close-btn:hover {
  color: #333;
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .hero-img {
    object-fit: cover;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .menu {
    padding: 10px 15px;
  }

  .menu-items {
    gap: 0;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 100%;
    padding: 0 10px;
  }

  .menu-item {
    font-size: 11px;
    padding: 8px 4px;
    flex: 1;
    min-width: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .shop-dropdown {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .content {
    padding: 0;
    height: 100vh;
  }

  .newsletter-popup-container {
    padding: 60px 20px 20px 20px;
  }

  .newsletter-popup-content {
    padding: 0;
  }

  .sale-timeline {
    margin: 40px 0 30px 0;
    padding-left: 25px;
  }

  .sale-timeline::before {
    left: 12px;
  }

  .timeline-dot {
    left: -25px;
    width: 10px;
    height: 10px;
  }

  .timeline-item {
    margin-bottom: 40px;
  }

  .timeline-title {
    font-size: 22px;
  }

  .timeline-subtitle {
    font-size: 14px;
  }

  .timeline-description {
    font-size: 13px;
  }

  .newsletter-form-section {
    margin-top: 40px;
  }

  .form-control {
    font-size: 16px;
  }

  .newsletter-submit-btn {
    font-size: 16px;
  }

  .tour-popup-container {
    padding: 60px 20px 20px 20px;
  }

  .tour-popup-content {
    padding: 20px 15px;
  }

  .tour-popup .div-block {
    padding: 0;
    min-height: 500px;
  }

  .content-popup-container {
    width: 95%;
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .newsletter-popup-container {
    padding: 50px 15px 15px 15px;
  }

  .sale-timeline {
    padding-left: 20px;
  }

  .sale-timeline::before {
    left: 10px;
  }

  .timeline-dot {
    left: -20px;
    width: 8px;
    height: 8px;
  }

  .timeline-title {
    font-size: 18px;
  }

  .timeline-subtitle {
    font-size: 13px;
  }

  .timeline-description {
    font-size: 12px;
  }

  .form-control {
    font-size: 14px;
  }

  .newsletter-submit-btn {
    font-size: 14px;
  }

  .tour-popup-container {
    padding: 50px 15px 15px 15px;
  }

  .tour-popup-content {
    padding: 15px 10px;
  }

  .tour-popup .div-block {
    padding: 0;
    min-height: 400px;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .content-close-btn {
    min-width: 44px;
    min-height: 44px;
  }

  .sociallink {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .menu-item {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  .menu {
    padding: 8px 10px;
  }

  .menu-items {
    gap: 0;
    justify-content: space-between;
    width: 100%;
    padding: 0 5px;
  }

  .menu-item {
    font-size: 10px;
    padding: 6px 2px;
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .shop-dropdown-content {
    min-width: 100px;
  }

  .shop-dropdown {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .shop-link {
    font-size: 11px;
    padding: 10px 12px;
  }
}
