
@font-face {
  font-family: "InstrumentSans";
  src: url("../fonts/InstrumentSans-VariableFont.woff2") format("woff2");
  font-weight: 400, 500;
  font-style: normal;
  font-display: swap;
}


:root {
  --font-body: "InstrumentSans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  --color-text: #FFFFF2;
  --color-bg: #121212;

  --container-width: 1200px;
  --space: 1rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
}

section {
  overflow: hidden;
}

.container {
  max-width: var(--container-width);
  padding: 0 1.25rem;
  margin: 0 auto;
}


main {
  padding: 3rem 0;
}

main {
  height: 100vh;
  display: flex;
  flex-direction: column;
}


h1, p {
  margin: 0;
  font-weight: 400;
}

p {  
  line-height: 1.1;
}


.swiper {
  width: 100%;
  padding: 40px 0;
}

.swiper-wrapper {
  transition-timing-function: linear !important;
}

.swiper-slide {
  max-width: 752px;
  max-height: 423px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.middle-section {
  flex: 1 1 auto;            /* fills remaining space in viewport */
  display: flex;
  align-items: center;       /* vertical centering */
  justify-content: center;   /* horizontal centering of container */
  overflow: hidden;
}

.middle-section .container {
  display: flex;
  flex-direction: row;       /* side-by-side layout */
  align-items: flex-start;   /* align top of left/right */
  gap: 4rem;                 /* spacing between left and right */
  flex-wrap: wrap;           /* wrap on small screens */
}

.left {
  flex: 1 1 300px;           /* grows but has min width */
}

.right {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;                 /* spacing between button and pills */
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.56em 0.84em;

  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;

  border-radius: 999px; /* pill shape */
  background-color: #F0EDE0;
  color: #000;

  white-space: nowrap;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;        /* space between text and icon */
  
  padding: 0.6em 2em;
  margin-top: 1.4em;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 999px;
  text-decoration: none;

  background-color: #BBA8FF;
  color: var(--color-bg);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn:hover {
  background-color: #A78FFF;
}

.btn-icon {
  width: 3rem;         
  height: 1rem;         
  transform: translateX(0);
  transition: transform 0.2s ease-out; /* hover out */
}

.btn:hover .btn-icon {
  transform: translateX(3px);
  transition: transform 0.2s ease-in;
}

.contact-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 0.5rem;
  background-color: var(--color-bg);
}

.contact-container {
  max-width: 600px;
  width: 100%;
}

.contact-container h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.contact-container p {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-input {
  gap: 0.4rem;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-weight: 500;
}

.contact-form input{
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #121212;
  border-radius: 999px; /* pill shape */
  outline: none;
  width: 100%;
  font-family: var(--font-body);
}

.contact-form textarea {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #121212;
  border-radius: 20px;
  outline: none;
  width: 100%;
  font-family: var(--font-body);

}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #121212;
}

/* Button with inline arrow */
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 999px;
  border: none;
  background-color: #BBA8FF;
  color: var(--color-bg);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.contact-form button:hover {
  background-color: #A78FFF;
}

.btn-icon {
  width: 3rem;
  height: 1rem;
  transform: translateX(0);
  transition: transform 0.2s ease-out;
}

.contact-form button:hover .btn-icon {
  transform: translateX(3px);
  transition: transform 0.2s ease-in;
}

.option-pills {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.option-pill span{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.56em 0.84em;
  border-radius: 999px;
  border: 1px solid #FFFFF2;
  background-color: #121212;
  color: #FFFFF2;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.option-pill input {
  display: none;
}

/* Target the span inside the label when input is checked */
.option-pill input:checked + span {
  background-color: #A78FFF;
  color: #121212;
  border: 1px solid #A78FFF;
}

.return-link {
  text-align: center;
  margin-top: 15px;
  font-size: 13px;
  color: #BBA8FF;
  text-decoration: none;
}

.return-link:hover {
  color: #A78FFF;
}


/* Tablet */
@media (min-width: 768px) {
  h1 {
    font-size: 44px;
  }

  p {
    font-size: 34px;
  }

  .pill {
    font-size: 0.9rem;
  }

  .option-pills {
  flex-direction: row;
}

}

@media (max-width: 768px) {
  .swiper-slide {
    width: 200px;
    height: 130px;
  }
}

@media (min-width: 1200px) {
  .swiper-slide {
    width: 320px;
    height: 200px;
  }
}




