/* =================================
   GENERAL RESET & BASE STYLES
   ================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #000;
  background-color: #fff;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

footer-bottom{
  text-align: center;
  width: 100%;
  margin-top: 20px;
  font-size: 0.8rem;
}
/* =================================
   NAVIGATION
   ================================= */
.navbar {
  background:  #202020 ;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
  position: relative;
  min-height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  z-index: 10;
}

.logo img {
  width: 300px;
  height: auto;
}

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-center ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-center ul li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.nav-center ul li a:hover,
.nav-center ul li a.active {
  color: #ff6f61;
}

/* =================================
   HERO SECTIONS
   ================================= */
.hero-section {
  width: 100%;
  padding: 0;
  margin: 0 auto;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Updated lighter gradient */
.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Updated hero text with semi-transparent box */
.hero-text {
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
  color: white;
  z-index: 2;
  font-size: 1.5rem;
  font-weight: bold;
  max-width: 600px;
  
  /* Semi-transparent background box */
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.hero-text h1 {
  margin-bottom: 15px;
  font-size: 2.5rem;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.2rem;
  line-height: 1.4;
  opacity: 0.9;
}

/* Vinyl Hero Section */
.vinyl-hero {
  padding: 80px 50px;
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9));
  color: white;
}

.vinyl-hero-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.vinyl-hero-text {
  flex: 1;
}

.vinyl-hero-text h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 20px;
}

.vinyl-hero-text p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.vinyl-hero-image img {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

/* Visit Hero Section */
.visit-hero {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 40px;
}

.visit-hero img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 40px;
}

.visit-overlay {
  position: absolute;
  top: 0;
  left: 0;
  padding: 30px;
  color: #fff;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 40px;
}

.visit-overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.visit-overlay h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.visit-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.visit-info .address,
.visit-info .hours {
  font-size: 1rem;
  line-height: 1.6;
}

.visit-cards {
    padding: 0 15px;
}

.visit-cards a,
.visit-cards a:hover,
.visit-cards a:visited,
.visit-cards a:active {
    text-decoration: none !important;
    color: inherit !important;
    display: block;
}

.address-link {
    text-decoration: none !important;
    color: inherit !important;
    display: block;
    width: 50%;
}

.address-link:hover, 
.address-link:visited, 
.address-link:active {
    text-decoration: none !important;
    color: inherit !important;
}

/* =================================
   NEW ALBUMS SECTION
   ================================= */
.new-albums-section {
  padding: 60px 50px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  border-bottom: 3px solid #333;
}

.new-albums-header {
  text-align: center;
  margin-bottom: 40px;
}

.new-albums-header h2 {
  font-size: 2.5rem;
  color: #333;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.new-albums-header p {
  font-size: 1.2rem;
  color: #666;
  margin: 0;
}

.new-albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.new-album-item {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.new-album-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.new-album-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.new-album-item p {
  font-size: 1.1rem;
  color: #333;
  margin: 0;
  font-weight: 600;
}

.new-badge {
  display: inline-block;
  background: #ff4444;
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

/* =================================
   VINYL COLLECTION
   ================================= */
.section-divider {
  text-align: center;
  padding: 50px 0;
  background: white;
}

.section-divider h2 {
  font-size: 2.5rem;
  color: #333;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.vinyl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding: 80px 50px;
  align-items: start;
}

.vinyl-item {
  text-align: center;
  transition: all 0.3s ease;
}

.vinyl-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.vinyl-item p {
  font-size: 1.1rem;
  color: #333;
  margin-top: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.vinyl-item:hover img {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.vinyl-item:hover p {
  color: #ff6f61;
  transform: scale(1.05);
}

/* =================================
   LINE STACK DIVIDER
   ================================= */
.line-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #000;
  padding: 0;
  margin: 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
}

.line {
  width: 100%;
  background-color: #fff;
  margin: 1px 0;
}

.l1 { height: 1px; }
.l2 { height: 2px; }
.l3 { height: 3px; }
.l4 { height: 4px; }
.l5 { height: 5px; }
.l6 { height: 6px; }

/* =================================
   FEATURED SECTION
   ================================= */
.featured-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 50px;
  background: #fff;
  flex-wrap: wrap;
  border-top: 5px solid #000;
  border-bottom: 5px solid #000;
  gap: 40px;
}

.featured-text h2 {
  font-size: 2rem;
  text-align: left;
}

.featured-image img {
  width: 200px;
  border-radius: 12px;
}

/* =================================
   ALBUM CAROUSEL
   ================================= */
.album-carousel {
  overflow: hidden;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  height: 300px;
  display: flex;
  align-items: center;
}



.carousel-track img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  margin-right: 20px;
  border-radius: 8px;
}

.carousel-track {
  display: flex;
  animation: scroll 20s linear infinite;
  /* Make sure images never wrap */
  white-space: nowrap;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.carousel-track {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

/* =================================
   VISIT CARDS
   ================================= */
.visit-cards {
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 50px;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.visit-card {
  flex: 1 1 300px;
  background: #ff6f61;
  color: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.visit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.address-card { background: #6c5ce7; }
.hours-card { background: #00b894; }

.visit-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.visit-card p,
.visit-card ul {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.visit-card ul {
  list-style: none;
  padding: 0;
}

.visit-card i {
  margin-top: 15px;
  color: #fff;
  font-size: 2rem;
}

/* =================================
   ABOUT SECTION
   ================================= */
.about-section {
  padding: 80px 50px;
  background-color: #fff;
  text-align: center;
}

.about-section h2 {
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.about-intro {
  margin-bottom: 50px;
  font-size: 1.2rem;
  color: #555;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.about-card {
  background: #f5f5f5;
  padding: 40px 25px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-card:hover {
  background: #ffeaea;
  transform: translateY(-5px);
}

.about-card i {
  color: #ff6f61;
  margin-bottom: 20px;
  font-size: 3rem;
}

/* =================================
   BUTTONS
   ================================= */
.btn-visit,
.btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: #ff6f61;
  color: #fff;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-visit:hover,
.btn-primary:hover {
  background: #ff4b3c;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* =================================
   UTILITY CLASSES
   ================================= */
.welcome-section {
  padding: 80px 50px;
  text-align: center;
}

.welcome-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.welcome-section p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.stats-section {
  padding: 80px 50px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 30px;
}

.stat-item h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #ff6f61;
}

.stat-item p {
  font-size: 1.1rem;
  color: #555;
}

/* =================================
   FOOTER
   ================================= */
.footer {
  background-color: #000;
  color: #fff;
  padding: 40px 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.9rem;
  gap: 30px;
}

.footer .contact-info p {
  margin: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer .footer-logo {
  display: flex;
  align-items: center;
}

.footer .footer-logo img {
  height: 120px;
  width: auto;
}

footer-bottom{
  text-align: center;
  width: 100%;
  margin-top: 20px;
  font-size: 0.8rem;
  color: #aaa;
}

/* =================================
   TABLET RESPONSIVE (768px - 1024px)
   ================================= */
@media (max-width: 1024px) {
  .navbar {
    padding: 0 30px;
  }
  
  .logo img {
    width: 250px;
  }
  
  .hero-image-wrapper {
    height: 400px;
  }
  
  .hero-text {
    left: 30px;
    font-size: 1.3rem;
    max-width: 500px;
    padding: 25px;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .vinyl-hero {
    padding: 60px 30px;
  }
  
  .vinyl-hero-content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  
  .new-albums-section,
  .vinyl-grid,
  .about-section,
  .visit-cards,
  .welcome-section,
  .stats-section {
    padding: 40px 30px;
  }
  
  .new-albums-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .vinyl-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .featured-section {
    padding: 40px 30px;
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .featured-text h2 {
    font-size: 1.8rem;
  }
  
  .featured-image img {
    width: 180px;
  }
  
  .album-carousel {
    max-width: 600px;
    height: 250px;
  }
  
  .carousel-track img {
    width: 250px;
    height: 250px;
  }
  
  .visit-info {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* =================================
   MOBILE RESPONSIVE (up to 768px)
   ================================= */
@media (max-width: 768px) {
  /* Navigation */
  .navbar {
    flex-direction: column;
    padding: 15px 20px;
    min-height: auto;
    background: #202020 ;
;
  }
  
  .logo {
    margin-bottom: 15px;
  }
  
  .logo img {
    width: 400px;
  }
  
  .nav-center {
    position: static;
    transform: none;
    width: 100%;
  }
  
  .nav-center ul {
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .nav-center ul li a {
    font-size: 0.9rem;
  }

  /* Hero Sections */
  .hero-section {
    margin-bottom: 0;
  }
  
  .hero-image-wrapper {
    height: 300px;
  }
  
  .hero-text {
    left: 20px;
    right: 20px;
    font-size: 1.1rem;
    max-width: calc(100% - 40px);
    padding: 20px;
  }
  
  .hero-text h1 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    line-height: 1.3;
  }
  
  .hero-text p {
    font-size: 1rem;
    line-height: 1.4;
  }
  
  /* Lighter gradient for mobile */
  .gradient-overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.05) 70%, rgba(0, 0, 0, 0) 100%);
  }
  
  .vinyl-hero {
    padding: 40px 20px;
  }
  
  .vinyl-hero-text h1 {
    font-size: 2rem;
  }
  
  .vinyl-hero-text p {
    font-size: 1rem;
  }
  
  .vinyl-hero-image img {
    max-width: 300px;
  }
  
  .visit-hero {
    width: 95%;
    border-radius: 20px;
  }
  
  .visit-overlay {
    padding: 20px;
    border-radius: 20px;
  }
  
  .visit-overlay h1 {
    font-size: 1.8rem;
  }
  
  .visit-overlay h2 {
    font-size: 1.5rem;
  }

  /* Sections */
  .new-albums-section,
  .vinyl-grid,
  .about-section,
  .featured-section,
  .welcome-section,
  .stats-section {
    padding: 40px 20px;
  }
  
  .new-albums-header h2 {
    font-size: 1.8rem;
  }
  
  .new-albums-header p {
    font-size: 1rem;
  }
  
  .new-albums-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .new-album-item {
    padding: 20px;
  }
  
  .section-divider {
    padding: 30px 20px;
  }
  
  .section-divider h2 {
    font-size: 1.8rem;
  }
  
  .vinyl-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }
  
  .vinyl-item p {
    font-size: 0.9rem;
    margin-top: 10px;
  }
  
  .featured-section {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }
  
  .featured-text {
    order: 1;
  }
  
  .featured-image {
    order: 2;
  }
  
  .featured-text h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
  
  .featured-text p {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .featured-image img {
    width: 200px;
    margin: 0 auto;
  }
  
  /* Album Carousel */
  .album-carousel {
    max-width: 100%;
    height: 200px;
    margin: 20px 0;
  }
  
  .carousel-track {
    width: calc(200px * 6);
  }
  
  .carousel-track img {
    width: 200px;
    height: 200px;
    margin-right: 15px;
  }
  
  /* Visit Cards */
  .visit-cards {
    padding: 0 20px;
  }
  
  .visit-card {
    flex: 1 1 100%;
    padding: 25px 15px;
  }
  
  .visit-card h3 {
    font-size: 1.3rem;
  }
  
  .visit-card i {
    font-size: 1.5rem;
  }
  
  /* About Section */
  .about-section h2 {
    font-size: 2rem;
  }
  
  .about-intro {
    font-size: 1rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .about-card {
    height: 250px;
    padding: 30px 20px;
  }
  
  .about-card i {
    font-size: 2.5rem;
  }
  
  /* Buttons */
  .btn-primary,
  .btn-visit {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
  
  /* Utility sections */
  .welcome-section h2 {
    font-size: 1.8rem;
  }
  
  .welcome-section p {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .cta-buttons .btn {
    width: 100%;
    text-align: center;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat-item {
    padding: 20px;
  }
  
  .stat-item h3 {
    font-size: 1.5rem;
  }
  
  .stat-item p {
    font-size: 0.9rem;
  }

  /* Footer */
  .footer {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    gap: 20px;
  }
  
  .footer .contact-info p {
    justify-content: center;
    font-size: 0.8rem;
  }
  
  .footer .footer-logo img {
    height: 80px;
  }
  
  /* Touch improvements */
  .btn,
  .carousel-track img,
  .featured-image img {
    -webkit-tap-highlight-color: rgba(0,0,0,0.1);
  }
  
  .hero-text,
  .featured-text {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
}

/* =================================
   SMALL MOBILE (up to 480px)
   ================================= */
@media (max-width: 480px) {
  .navbar {
    padding: 10px 15px;
  }
  
  .logo img {
    width: 350px;
  }
  
  .nav-center ul {
    gap: 15px;
  }
  
  .nav-center ul li a {
    font-size: 0.8rem;
  }
  
  .hero-image-wrapper {
    height: 250px;
  }
  
  .hero-text {
    left: 15px;
    right: 15px;
    font-size: 1rem;
    max-width: calc(100% - 30px);
    padding: 15px;
  }
  
  .hero-text h1 {
    font-size: 1.3rem;
    margin-bottom: 8px;
  }
  
  .hero-text p {
    font-size: 0.9rem;
  }
  
  .vinyl-hero {
    padding: 30px 15px;
  }
  
  .new-albums-section,
  .vinyl-grid,
  .about-section,
  .featured-section,
  .welcome-section,
  .stats-section {
    padding: 30px 15px;
  }
  
  .vinyl-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
  }
  
  .featured-text h2 {
    font-size: 1.4rem;
  }
  
  .featured-text p {
    font-size: 0.9rem;
  }
  
  .featured-image img {
    width: 150px;
  }
  
  .album-carousel {
    height: 150px;
  }
  
  .carousel-track {
    width: calc(150px * 6);
  }
  
  .carousel-track img {
    width: 150px;
    height: 150px;
    margin-right: 10px;
  }
  
  .visit-cards {
    padding: 0 15px;
  }

.visit-cards {
    padding: 0 15px;
}

.visit-cards a,
.visit-cards a:hover,
.visit-cards a:visited,
.visit-cards a:active {
    text-decoration: none !important;
    color: inherit !important;
    display: block;
}

.address-link {
    text-decoration: none !important;
    color: inherit !important;
    display: block;
}

.address-link:hover, 
.address-link:visited, 
.address-link:active {
    text-decoration: none !important;
    color: inherit !important;
}
  
  .footer {
    padding: 20px 15px;
  }
  
  .btn-primary,
  .btn-visit {
    padding: 10px 20px;
    font-size: 0.8rem;
  }
}

/* =================================
   EXTRA SMALL MOBILE (up to 375px)
   ================================= */
@media (max-width: 375px) {
  .hero-image-wrapper {
    height: 220px;
  }
  
  .hero-text {
    font-size: 0.9rem;
  }
  
  .hero-text h1 {
    font-size: 1.2rem;
  }
  
  .hero-text p {
    font-size: 0.8rem;
  }
  
  .featured-section {
    padding: 25px 10px;
  }
  
  .featured-text h2 {
    font-size: 1.2rem;
  }
  
  .featured-text p {
    font-size: 0.8rem;
  }
  
  .featured-image img {
    width: 120px;
  }
  
  .album-carousel {
    height: 120px;
  }
  
  .carousel-track {
    width: calc(120px * 6);
  }
  
  .carousel-track img {
    width: 120px;
    height: 120px;
    margin-right: 8px;
  }
  
  .welcome-section h2 {
    font-size: 1.5rem;
  }
  
  .welcome-section p {
    font-size: 0.9rem;
  }
}

/* =================================
   LANDSCAPE MOBILE ORIENTATION
   ================================= */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-image-wrapper {
    height: 200px;
  }
  
  .hero-text {
    font-size: 0.9rem;
  }
  
  .hero-text h1 {
    font-size: 1.3rem;
  }
  
  .featured-section {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }
  
  .featured-text {
    flex: 1;
  }
  
  .featured-image {
    flex: 0 0 auto;
  }
}