/* Dark theme global styles */
body {
  background-color: #000;
  color: #fff;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

h1{
  font-size: 8rem;
  font-weight: bold;
  margin-bottom: 1rem;
  font-family: var(--secondary-font-family);
}

/* Home page specific styles */

/* Hero section */
.hero-section {
  padding: 2rem 1rem;
  text-align: center;
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
}

.hero-content {
  max-width: 80rem;
  margin: 0 auto;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #fff, #ccc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.hero-cta {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.hero-cta:hover {
  background: #ccc;
  transform: translateY(-2px);
}

/* Features section */
.features-section {
  padding: 3rem 1rem;
  background-color: #111;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 120rem;
  margin: 0 auto;
}

.feature-card {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #333;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #fff;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.feature-description {
  color: #ccc;
  line-height: 1.6;
}

/* About section */
.about-section {
  padding: 3rem 1rem;
  background-color: #000;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.about-text {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.8;
}

/* Contact section */
.contact-section {
  padding: 3rem 1rem;
  background-color: #111;
}

.contact-content {
  max-width: 60rem;
  margin: 0 auto;
  text-align: center;
}

.contact-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: #1a1a1a;
  border-radius: 5px;
}

.contact-item a {
  color: #fff;
  text-decoration: none;
}

.contact-item a:hover {
  color: #ccc;
}

/* Footer */
.site-footer {
  background-color: #000;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 1rem;
}

.footer-content {
  max-width: 120rem;
  margin: 0 auto;
}

.footer-text {
  color: #ccc;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ccc;
}

/* Tablet responsive */
@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .contact-info {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop responsive */
@media (min-width: 1024px) {
  .hero-section {
    padding: 4rem 2rem;
  }

  .hero-title {
    font-size: 4rem;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }

  .contact-info {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-section,
  .about-section,
  .contact-section {
    padding: 4rem 2rem;
  }
}

/* Home page grid layout */
.home-template {
display: grid;
grid-template-columns: 1fr 2fr;
width: 100vw;
min-height: 40rem;
max-width: 90%;
margin: 0 auto;
}

.slider-column {
  display: flex;
  align-items: stretch;
  background: black;
  overflow: hidden;
  height: 100%;
}

.image-slider {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  gap: 92px;
  position: relative;
  overflow: hidden;
  height: 851px;
}

.slider-item-wrapper {
  margin: 0;
  padding: 0 0 2rem 0;
}

.slider-image-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0;
  text-decoration: none;
}

.slider-image {
  width: 100%;
  max-height: 30rem;
  object-fit: contain;
  display: block;
  background:black;
  border-color: #000;
  border: 0;
}

.slider-caption {
  position: static;
  background: none;
  color: #fff;
  padding: 1rem 0 0 0;
  text-align: center;
  width: 100%;
  font-style: unset;
  text-decoration: none;
  border: none!important;
}

.slider-model-name {
  font-weight: bold;
  font-size: 1.2rem;
  font-style: unset;
  text-decoration: none;
  border: none!important;
}

.slider-custom-text {
  font-size: 1rem;
  color: #ccc;
  font-style: unset;
  text-decoration: none;
  border: none!important;
}

/* Staggered offset for right column */
.image-slider > :nth-child(2n) {
  margin-top: -50vh;
}

.text-column {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  height: 100%;
  padding: 2rem;
}

.home-text-content {
  max-width: 500px;
}

@media (max-width: 1200px) {

  h1{
  font-size: 4rem;
  }
}

/* Mobile responsive styles */
@media (max-width: 767px) {

  .site-footer{
    display: none;
  }

  h1{
  font-size: 4rem;
  }

    /* Change grid to single column on mobile */
    .home-template {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    /* Show mobile text content, hide desktop */
    .home-text-content-mobile-wrapper {
        display: block;
        order: 1; /* Show first on mobile */
        padding: 2rem 1rem;
        background: #000;
        color: #fff;
    }
    
    .home-text-content-desktop-wrapper {
        display: none;
    }
    
    /* Adjust slider column for mobile */
    .slider-column {
        order: 2; /* Show second on mobile */
    }
    
    /* Mobile text content styling */
    .home-text-content-mobile {
        max-width: 100%;
        text-align: center;
    }
    
    .home-text-content-mobile h1,
    .home-text-content-mobile h2,
    .home-text-content-mobile h3 {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .home-text-content-mobile p {
        font-size: 1.5rem;
        line-height: 1.6;
        color: #ccc;
    }
}

/* Desktop styles - hide mobile, show desktop */
@media (min-width: 768px) {
    .home-text-content-mobile-wrapper {
        display: none;
    }
    
    .home-text-content-desktop-wrapper {
        display: flex;
    }
}

/* Welcome Page Styles */
.welcome-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 2rem 0;
}

.welcome-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
}

.welcome-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 2rem;
}

.welcome-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.button-secondary {
  background: transparent;
  color: #0073aa;
  border: 0.2rem solid #0073aa;
  padding: 1.2rem 2.4rem;
  text-decoration: none;
  border-radius: 0.4rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.button-secondary:hover {
  background: #0073aa;
  color: white;
  transform: translateY(-2px);
}

.featured-models h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.featured-models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 1.5rem;
}

.featured-model-card {
  background: white;
  border-radius: 0.8rem;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.featured-model-card:hover {
  transform: translateY(-0.4rem);
}

.featured-model-image {
  position: relative;
  overflow: hidden;
}

.featured-model-image img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-model-card:hover .featured-model-image img {
  transform: scale(1.05);
}

.featured-model-image .no-image {
  height: 20rem;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-style: italic;
}

.featured-model-info {
  padding: 1rem;
  text-align: center;
}

.featured-model-info h4 {
  margin-bottom: 0.5rem;
}

.featured-model-info h4 a {
  color: #333;
  text-decoration: none;
}

.featured-model-info h4 a:hover {
  color: #0073aa;
}

.experience-badge {
  background: #0073aa;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
}

