@import url("../css/kelvingrove-regular.css");

:root {
  --primary-brand: #42210B;
  --brand-analogous-green: #423D0B;
  --brand-analogous-brown: #420B10;
  --brand-monochromatic: #6E3712;
  --brand-natural-orange: #d97738;
  --brand-natural-offwhite: #fff5e9;
  --brand-natural-grey: #dfe0df;
  --brand-matching-brown: #54433a;
  --brand-matching-tan: #bca79c;
  --brand-matching-darkgreen: #00493f;
  --brand-matching-green: #367a6f;
  --brand-squash-green: #004e4e;
  --brand-squash-purple: #622a5c;
  --brand-grayfriends-brown: #54433a;
  --brand-grayfriends-tan: #bca79c;
  --brand-dotting-tan: #bca79c;
  --brand-dotting-darkgreen: #0c3015;
  --brand-dotting-green: #a0afa1;
  --brand-threedom-green: #005b48;
  --brand-threedom-blue: #383b7a;
  --brand-highlight-orange: #e27126;
  --brand-highlight-grey: #dfe0df;
  --brand-highlight-brown: #402E32;
}

body,
html {
  background: url('../assets/bgbrown.webp') no-repeat center center / cover;
  background-attachment: fixed;
  height: 100%;
  width: 100vw;
  margin: 0;
  padding: 0;
  color: #fff;
  font-family: 'Rubik', sans-serif;
}

.hero {
  min-height: calc(100vh - 40px);
  top: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.hero .content h1,
.hero .content h2 {
  margin: 0.5em 0;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
}

.hero .content p, li {
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  line-height: 1.2;
}

p {
  margin: 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.logo-full {
  width: 70%;
  max-width: 780px;
  height: auto;
}

.content {
  padding: 5% 10%;
  z-index: 1;
  max-width: 800px;
}

h1 {
  font-family: 'Kelvingrove-Regular', serif !important;
  font-size: 2.5rem;
  font-weight: 400;
}

h2,
h3 {
  font-family: 'Kelvingrove-Regular', serif !important;
  text-align: center;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1rem;
}

h1 span {
  color: #412311;
}

.btn {
  font-family: 'Rubik', sans-serif;
  /* width: 200px; */
  margin-top: 20px;
  padding: 12px 25px;
  border: 1px solid #d2b075;
  color: #d2b075;
  background-color: #0C3015;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #42210B;
  color: #fff;
}

.section2 {
  padding: 20px;
  background-color: #0c3015d9;
  color: #fff;
  text-align: left;
  max-width: 100%;
  margin: auto;
}

.biggerp {
  font-size: 20px;
  text-transform: uppercase;
}

.section h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.section p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
}

.button-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 400px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .button-container {
    grid-template-columns: 1fr;
  }
}

.site-header {
  padding-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  height: 20px;
  width: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.4);
  padding: 10px 40px;
  backdrop-filter: blur(5px);
}

.header-overlay {
  display: flex;
  gap: 40px;
  text-align: center;
  flex-wrap: wrap;
}

.logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #d97738;
}

.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 3;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 12px;
    background: #bca79c;
    padding: 1rem;
    position: absolute;
    top: 90px;
    /* or adjust based on your header */
    left: 0;
    right: 0;
    z-index: 2;
  }

  .nav-links.active {
    display: flex;
  }
}

main {
  margin-top: 40px;
}

.social-icons a {
  color: #fff;
  margin-left: 15px;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #d97738;
}

.social-icon a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #c0a165;
  font-size: 12px;
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.social-icon a:hover {
  color: #fff;
}

.social-icon i {
  font-size: 18px;
}

.cta-button button {
  background: transparent;
  border: 1px solid #c0a165;
  color: #c0a165;
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s;
}

.cta-button button:hover {
  background-color: #c0a165;
  color: #12100e;
}

footer {
  margin-top: 30px;
  font-family: 'Kelvingrove-Regular', serif;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }
}

#countdown {
  margin-top: 20px;
  font-size: 22px;
  font-weight: bold;
  background-color: #53462c;
  color: #ff9933;
  padding: 10px 20px;
  display: inline-block;
  border-radius: 5px;
  letter-spacing: 4px;
  font-family: 'Courier New', Courier, monospace;
  box-shadow: 0 0 8px #ff9933;
}



/* SLIDER */
.slider-section {
  height: 100%;
  width: 100%;
}

.slider-section .label {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  background: #fff;
  padding: 8px 16px;
  display: inline-block;
  border-radius: 24px;
}

.slider-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: auto;
}

.slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  justify-content: center;
  align-items: center; 
  transition: transform 0.4s ease-in-out;
}

.slide {
  min-width: 250px;
  max-width: 350px;
  height: 100%;
  padding: 5px;
  border-radius: 20px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-image {
  width: 100%;
  border-radius: 12px;
}

.nav-buttons {
  text-align: center;
  margin-top: 20px;
}

.nav-buttons button {
  background: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 18px;
  margin: 0 5px;
  border-radius: 12px;
  cursor: pointer;
}

@media(max-width:756px) {
  .slider-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
  }

  .slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .slide {
    flex: 0 0 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .card-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 10px;
  }

  .nav-buttons {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    padding: 0 10px;
    box-sizing: border-box;
  }

  .nav-buttons button {
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 10px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
  }

  section.slider-section {
    transform: scale(.6);
  }

  #countdown {
    font-size: 17px;
  }

  .site-header {
    padding: 10px 0;
  }

  .nav-links {
    gap: 5px;
    flex-direction: column;
  }
}

.table-container {
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(0.8rem, 2vw, 1rem);
}

.badge-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 1rem;
}

.badge-images img {
  width: 100px;
  max-width: 30%;
  height: auto;
}