/* Reset / base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Effective viewport variables - capped at 1300px */
:root {
  --effective-vw: min(100vw, 1300px);
  --effective-vh: 100vh; /* Keep actual height, only constrain width */
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", system-ui, sans-serif;
  background: #000;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  background: url('pawel-czerwinski-TPbXswki5S0-unsplash.jpg') center/cover no-repeat;
  z-index: -999;
}

/* Treat screens above 1300px as if they are exactly 1300px */

/* Menu Styles */
.menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 20px 40px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  gap: 30px;
}

.menu-brand {
  font-size: 24px;
  font-weight: bold;
  color: white;
}

.menu-items {
  display: flex;
  list-style: none;
  gap: 30px;
}

.menu-items a {
  text-decoration: none;
  color: #95947c;
  font-size: 18px;
  transition: color 0.3s ease;
}

.menu-items a:hover {
  color: rgba(149, 148, 124, 0.7);
}

/* Logo */
.logo-container {
  display: flex;
  align-items: center;
}

.logo-svg {
  height: 40px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(58%) sepia(8%) saturate(1200%) hue-rotate(45deg) brightness(95%) contrast(90%);
}

/* Mobile Logo (hidden on desktop) */
.mobile-logo {
  display: none;
}

/* Mobile Menu (hidden on desktop, only visible on screens < 768px) */
.mobile-menu-toggle {
  display: none;
}

.mobile-menu-overlay {
  display: none;
}

/* Bottom Panel (hidden on desktop) */
.bottom-panel {
  display: none;
}

/* Main container */
.container {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

}

/* Glass morphism box - left half */
.glass-left {
  position: fixed;
  top: 0;
  left: 0;
  width: 50vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    0 8px 32px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

/* Slot Machine Text */
.slot-container {
  position: fixed;
  top: 20%;
  left: 7%; /* Position on the left side of the screen/container */
  width: 3%; /* Appropriate width for vertical text */
  height: 60%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 5;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.slot-text {
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
  transition: opacity 0.3s;
  white-space: nowrap;
  text-align: center;
  line-height: 1.2;
}

.title-main {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 10;
  
}

/* Buttons Section */
.buttons-section {
  position: absolute;
  bottom: 22%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 2%;
  z-index: 10;
}

.btn-left, .btn-right {
  border: none;
  padding: 1.2vh 4vw;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 300;
  letter-spacing: 0.05em;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  min-width: 15vw;
  width: 20vw;
  max-width: 40%;
  min-height: 7vh;
}

.btn-left {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  margin-left: 23%;

}

.btn-left:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-7px);
}

.btn-right {
  background: #95947c;
  color: #fff;
  margin-right: 23%;
}

.btn-right:hover {
  background: #a5a48c;
  transform: translateY(-7px);
}

/* Social Icons */
.social-icons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  gap: 20px;
  z-index: 1000;
}

.social-icon {
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
  opacity: 0.8;
}

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

/* Text Styles */
.title-small {
  position: absolute;
  left: 13%;
  top: 0%;
  transform: translateY(-110%);
  font-size: clamp(2rem, 3vw, 5rem);
  font-weight: 300;
  background: url('pawel-czerwinski-TPbXswki5S0-unsplash.jpg') center/cover no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  transition: all 0.3s ease;
  z-index: 10;
  letter-spacing: -0.05em;
}

.title-word {
  position: absolute;
  left: 15%;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(6rem, 12vw, 12rem);
  font-weight: 900;
  background: url('pawel-czerwinski-TPbXswki5S0-unsplash.jpg') center/cover no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  letter-spacing: -0.05em;
  transition: all 0.3s ease;
  z-index: 10;
}

.title-word-white {
  position: absolute;
  left: 51%;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(6rem, 12vw, 12rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.05em;
  transition: all 0.3s ease;
  z-index: 10;
}

@media (min-width: 1300px) {
    /* Container becomes the effective screen boundary */
    .container {
      position: absolute;
      left: 50%; /* Start at viewport center */
      top: 0;
      transform: translateX(-50%); /* Shift back by 50% of container width to center */
      width: 1300px;
      min-height: 100vh;
      z-index: 1000;
        }
      
    /* Position elements relative to the container (which acts as the screen boundary) */
    .slot-container {
      position: absolute;
      top: 20%;
      left: 7%; /* 7% from container left */
      width: 3%; /* 3% of container */
      height: 60%;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      z-index: 5;
      writing-mode: vertical-rl;
      text-orientation: mixed;
    }
  
    .title-small {
      position: absolute;
      left: 12%; /* 12% from container left */
      top: 25%;
      font-size: 32.5px;
    }
  
    .title-word {
      position: absolute;
      left: 15%; /* 15% from container left */
      top: 35%;
      font-size: 150px;
    }
  
    .title-word-white {
      position: absolute;
      left: 53%; /* 55% from container left */
      top: 35%;
      font-size: 150px;
      margin-right: 1%;
    }
  
    .buttons-section {
      position: absolute;
      bottom: 25vh;
      left: 19%; /* 23% from container left */
      right: 23%; /* 23% from container right */
      width: 800px;
      padding: 0;
      gap: 10px;
    }
    .btn-left, .btn-right {
      margin-left: 0;
      margin-right: 0;
      width: 350px !important;     /* Fixed width */
      height: 60px;    /* Fixed height */
      padding: 15px 30px !important; /* Fixed padding instead of viewport units */
      font-size: 16px !important;   /* Fixed font size */
      min-width: unset !important;   /* Remove responsive min-width */
      max-width: unset !important;   /* Remove responsive max-width */
      min-height: unset !important;  /* Remove responsive min-height */
    }
  
    /* Adjust fixed elements to work with container approach */
    .menu {
      position: absolute;
      right: 10%; /* Align with container left */
      top: 0;
    }
  
    .social-icons {
      position: absolute;
      right: 3%; /* Align with container boundary */
      bottom: 30px;
    }
  }

  
/* Responsive Design */
@media (max-width: 1300px) {
  .title-small {
    left: 12%;
    top: 25%;
    font-size: clamp(1.5rem, 2.5vw, 4rem);
  }
  
  .title-word {
    left: 15%;
    font-size: clamp(5rem, 9vw, 12rem);
  }
  
  .title-word-white {
    left: 55%;
    font-size: clamp(5rem, 9vw, 12rem);
  }
}

@media (max-width: 768px) {
  .menu {
    display: none;
  }

  /* Mobile Hamburger Menu */
  .mobile-menu-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1000001 !important;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    border-radius: 8px;
    padding: 10px;
    transition: all 0.3s ease;
    border: none;
    font-family: inherit;
  }

  .mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-7px);
  }

  .hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    margin: 2px 0;
    transition: opacity 0.3s ease;
    border-radius: 1px;
  }

  .close-cross {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 18px;
    font-weight: 300;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
    line-height: 1;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
  }

  .mobile-menu-toggle.active .hamburger-line {
    opacity: 0;
  }

  .mobile-menu-toggle.active .close-cross {
    opacity: 1;
  }

  /* Mobile Menu Overlay */
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000000 !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .mobile-menu-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
    background: rgba(0, 0, 0, 0.7) !important;
    pointer-events: auto !important;
    display: block !important;
  }

  .mobile-menu-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 350px;
    padding: 40px 30px;
    text-align: center;
  }

  .mobile-menu-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
  }

  .mobile-menu-logo {
    height: 50px;
    width: auto;
  }

  .mobile-menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-menu-items li {
    margin: 20px 0;
    text-align: center;
  }

  .mobile-menu-items a {
    color: white !important;
    text-decoration: none;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
    padding: 15px 25px;
    display: inline-block;
  }

  .mobile-menu-items a:hover {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  
  .mobile-logo {
    display: block !important;
    position: absolute !important;
    top: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 10 !important;
    width: 200px !important;
    height: 60px !important;
    padding: 0 !important;
  }
  
  .mobile-logo-svg {
    width: 100% !important;
    height: 100% !important;
  }
  
  .slot-container {
    position: fixed;
    top: 100px;
    width: 90%;
    height: auto;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .slot-text {
    font-size: clamp(1.2rem, 3.5vw, 1.8rem);
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    white-space: nowrap;
  }
  
  .title-section {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    height: auto;
  }
  
  .title-main {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
  }
  
  .title-small {
    position: static;
    transform: none;
    font-size: 16vw;
    margin: 0;
    order: 1;
  }
  
  .title-word {
    position: static;
    transform: none;
    font-size: 24vw;
    line-height: 0.8;
    order: 2;
  }
  
  .title-word-white {
    position: static;
    transform: none;
    font-size: 18vw;
    line-height: 0.8;
    order: 3;
    margin-bottom: 20px;
  }
  
  .glass-left {
    width: 100vw;
  }
  
  .buttons-section {
    display: none;
  }
  
  
  .social-icons {
    display: flex !important;
    bottom: 20%;
    margin-top:20px;
    gap: 30px;
    z-index: 1000;
    left: 0;
    right: 0;
    justify-content: center;
    align-items: center;
  }
  
  .social-icons .icon-svg {
    width: 10vw;
    height: 10vw;
    max-width: 50px;
    max-height: 50px;
  }
  
  .swipe-indicator {
    display: flex !important;
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    align-items: center;
    z-index: 1001;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
  }
  
  .swipe-indicator:hover {
    opacity: 1;
  }
  
  .swipe-line {
    width: 40px;
    height: 4px;
    background: #fff;
    border-radius: 2px;
    margin-bottom: 8px;
    animation: swipeAnimation 2s ease-in-out infinite;
  }
  
  .swipe-text {
    color: #fff;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  
  @keyframes swipeAnimation {
    0%, 100% {
      transform: translateY(0);
      opacity: 0.7;
    }
    50% {
      transform: translateY(-10px);
      opacity: 1;
    }
  }
  
  .bottom-panel {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35vh;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 1002;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
  
  .bottom-panel.active {
    transform: translateY(0);
  }
  
  .panel-content {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    height: 100%;
    justify-content: center;
  }
  
  .panel-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 300px;
    align-items: center;
  }
  
  .panel-buttons .btn-left, .panel-buttons .btn-right {
    width: 100%;
    min-width: auto;
    max-width: 100%;
    padding: 12px 40px;
    margin: 0;
  }
  
  .panel-content .social-icons {
    display: none;
  }
  
  .close-panel {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    padding: 10px;
  }
  
  .close-line {
    width: 40px;
    height: 4px;
    background: #fff;
    border-radius: 2px;
    opacity: 0.7;
  }
}

/* Menu Responsive Design */
@media (max-width: 1024px) {
  .menu {
    padding: 15px 30px;
    gap: 20px;
  }
  
  .menu-items {
    gap: 20px;
  }
  
  .menu-items a {
    font-size: 16px;
  }
  
  .logo-svg {
    height: 35px;
  }
}

@media (max-width: 768px) {
  .menu {
    padding: 15px 20px;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .menu-brand {
    font-size: 20px;
  }
  
  .menu-items {
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .menu-items a {
    font-size: 14px;
  }
  
  .logo-svg {
    height: 30px;
  }

  .slot-container {
    margin-left: 0;
  }

  .buttons-section {
    margin-left: 0;
    margin-right: 0;
    justify-content: center;
    align-items: center;

  }
  .btn-left, .btn-right {
    font-size: 20px;
  }
}

/* Contact Page Specific Styles */
.contact-container {
  min-height: 100vh;
  position: relative;
  padding: 20px;
  padding-top: 80px; /* Add space for the fixed menu on desktop */
  justify-content: center;
  align-items: center;
}

/* Position mobile logo within contact container */
.mobile-logo {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 200px;
  height: 60px;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 80px; /* Add space below the mobile logo */
}

.contact-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  background: url('pawel-czerwinski-TPbXswki5S0-unsplash.jpg') center/cover no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.contact-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.contact-description {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

.form-label {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  color: white;
  font-size: 1rem;
  font-weight: 300;
  transition: all 0.3s ease;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", system-ui, sans-serif;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.form-submit {
  width: 100%;
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  letter-spacing: 0.05em;
}

.form-submit:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-7px);
}

.contact-back {
  position: fixed;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 10px 15px;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: all 0.3s ease;
  z-index: 1000;
}

.contact-back:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Hide back button on desktop since we have the full menu */
@media (min-width: 769px) {
  .contact-back {
    display: none;
  }
}

.success-message {
  display: none;
  background: rgba(46, 204, 113, 0.2);
  border: 1px solid rgba(46, 204, 113, 0.3);
  color: rgba(46, 204, 113, 1);
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 400;
}

.error-message {
  display: none;
  background: rgba(231, 76, 60, 0.2);
  border: 1px solid rgba(231, 76, 60, 0.3);
  color: rgba(231, 76, 60, 1);
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 400;
}

@media (max-width: 768px) {
  .contact-header {
    margin-top: 100px; /* Add space below the mobile logo */
  }

  .contact-form {
    padding: 30px 20px;
    margin: 20px auto;
  }

  .contact-back {
    display: none; /* Hide on mobile since we have the burger menu */
  }

  .menu {
    display: none; /* Hide desktop menu on mobile */
  }
}
.creator-line {
  text-align: center;
  font-size: clamp(1rem, 2.4vw, 1.6rem);
  margin-top: 16px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  position: relative;
  z-index: 9999; /* <- this forces it above your slot + title layers */
}

