/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

/* ===== GLOBAL STYLES ===== */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    font-family: BMWTypeNextLatin, Helvetica, Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #fff;
    font-family: BMWTypeNextLatin, Helvetica, Arial, sans-serif;
}

    .video-container {
      position: relative;
      width: 100%;
      height: 80vh;
      overflow: hidden;
      box-shadow: 0 15px 25px -10px rgba(0, 0, 0, 0.5);

    }

    .video-container video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      transform: translate(-50%, -50%);
      object-fit: cover;
      z-index: -1;
      box-shadow: 0 15px 25px -10px rgba(0, 0, 0, 0.5);
    }

    .text-content {
      position: absolute;
      margin-left: 40px;
      color: white;
      font-size: 3rem;
      font-weight: bold;
      text-align: left;
      padding: 20px;
      margin: center;
      margin-top: 490px;
      font-family: Arial, sans-serif;
      box-shadow: 0 15px 25px -10px rgba(0, 0, 0, 0.5);
      background: rgba(0, 0, 0, 0.3);
    }

    .video-box {
      position: relative;
      width: 80%;       
      height: 400px;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 15px 25px -10px rgba(0, 0, 0, 0.5);
    }

    .video-box video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 50%;
      min-height: 50%;
      transform: translate(-50%, -50%);
      object-fit: cover;
      z-index: -1;
    }

    .video-text {
      position: relative;
      color: white;
      font-size: 2rem;
      font-weight: bold;
      text-align: center;
      line-height: 250px; 
      background: rgba(0, 0, 0, 0.3); 
      font-family: BMWTypeNextLatin, Arial;
    }

    .content {
      position: absolute;
      top: 50%;
      left: 10%;
      transform: translateY(-50%);
      color: #fff;
    }

    .content h1 {
      font-size: 80px;
      margin: 0;
    }

    .content p {
      font-size: 20px;
      margin: 10px 0 20px;
    }

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 64px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 1000;
}

.navbar-left {
  display: flex;
  align-items: center;
  font-family: 'Poppins', 'Nunito', Arial, sans-serif;
  color: #222;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.slogen {
  color: #222;
  font-size: 1.5rem;
  font-weight: 500;
  margin-right: 0.5rem;
  text-align: left;
}

.slogen-bold {
  color: #222;
  font-size: 1.6rem;
  font-weight: 800;
  margin-right: 1.5rem;
  margin-top: 0.3rem;
  text-align: left;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.navbar-link, .-nav-text {
  color: #222;
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}

.navbar-link:hover, .-nav-text:hover {
  color: #0078d4;
}

/* ===== Models Section ===== */

.models-section {
  position: relative;
  margin-top: 0;
  width: 100%;
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  box-shadow: 0 -5px 25px -10px rgba(0, 0, 0, 0.2);
  padding: 4rem 2rem;
  gap: 3rem;
}

.models-title {
  font-size: 4.5rem;
  font-weight: 700;
  color: #212529;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
  font-family: BMWTypeNextLatin, Helvetica, Arial, sans-serif;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
}

.models-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #007acc, #0056b3);
  border-radius: 2px;
}

.models-button span {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #007acc, #0056b3);
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.models-button-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.models-button {
  display: inline-block;
  padding: 15px 40px;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #007acc, #0056b3);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-family: BMWTypeNextLatin, Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 8px 25px rgba(0, 122, 204, 0.3);
  position: relative;
  overflow: hidden;
}

.models-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.models-button:hover {
  background: linear-gradient(135deg, #0056b3, #004085);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 122, 204, 0.4);
}

.models-button:hover::before {
  left: 100%;
}

.models-button:active {
  transform: translateY(-1px) scale(1.02);
}

/* ===== Media Controls ===== */

@media (max-width: 700px) {
  .navbar {
    padding: 0 12px;
    height: 56px;
  }
  .navbar-left {
    font-size: 1.3rem;
  }
  .navbar-links {
    gap: 1.2rem;
  }
  .slogen, .slogen-bold {
    font-size: 1.1rem;
    margin-right: 0.5rem;
  }
  
  .models-section {
    padding: 2rem 1rem;
    min-height: 30vh;
    gap: 2rem;
  }
  
  .models-title {
    font-size: 3rem;
    letter-spacing: 0.05em;
  }
  
  .models-button {
    padding: 12px 30px;
    font-size: 1.5rem;
  }
  
  .text-content {
    margin-left: 20px;
    font-size: 2rem;
    margin-top: 300px;
  }
}