
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background: #fff;
    color: #111;
}



/* Navbar */
header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e0e0e0;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo a {
    font-weight: 700;
    font-size: 1.5rem;
    text-decoration: none;
    color: #111;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    color: #000; /* or whatever your main text color is */
    font-weight: 500;
    padding-bottom: 4px; /* room for underline */
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: #F5A623; /* your accent color */
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}


/* Hamburger button (hidden on desktop) */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #111;
    padding: 1.2rem;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        background: rgba(255,255,255,0.95);
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem 2rem;
        width: 220px;
        display: none; /* hidden by default */
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .nav-links.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

#cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.9);
  color: #fff;
  padding: 1rem;
  text-align: center;
  z-index: 1000;
}
#cookie-notice button {
  background: #f39c12;
  border: none;
  padding: 0.5rem 1rem;
  color: #fff;
  cursor: pointer;
  margin-left: 1rem;
}



/* Site Footer */

.site-footer {
  background-color: #000; /* black background for luxury feel */
  color: #fff;
  padding: 4rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-text {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: #DC2626; /* red accent on hover */
}

.copyright {
  opacity: 0.6;
  font-size: 0.9rem;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 500px) {
  .site-footer {
    padding: 3rem 1rem;
  }

  .footer-logo {
    font-size: 1.5rem;
  }

  .footer-text {
    font-size: 0.95rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-links a {
    font-size: 0.95rem;
  }

  .copyright {
    font-size: 0.8rem;
  }
}



/* Hero Section ( Home Page )*/
.hero {
    height: 100vh;
    background: url(images/hero\ models-9.jpg);
    background-size: cover;       /* fills hero, may crop edges */
    background-position: center;  /* crops from center focus */
    background-repeat: no-repeat; /* no tiling */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.btn-explore {
    padding: 1rem 2rem;
    background: #DC2626;
    color: #0F172A;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-explore:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(218, 81, 2, 0.973); /* softer gold glow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn-explore {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 500px) {
    .hero {
        padding: 0 1rem;
    }
}


/* Spotlight Section ( Home Page ) */
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 6rem 10%;
  background-color: #ffffff; /* clean base, can switch to #000 for dark mode */
}

.spotlight-image img {
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.spotlight-content h2 {
  font-size: 2rem;
  color: #000000;
  margin-bottom: 1rem;
}

.spotlight-content .quote {
  font-size: 1.2rem;
  font-weight: 600;
  color: #F5A623; /* gold accent */
  margin-bottom: 1rem;
}

.spotlight-content .description {
  font-size: 1rem;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.btn-read {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #000000;
  color: #ffffff;
  font-weight: 500;
  border-radius: 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-read:hover {
  background-color: #F5A623; /* gold on hover */
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(245,166,35,0.4);
}

.btn-read:focus {
  outline: 3px solid #F5A623;
  outline-offset: 3px;
}


/* Responsive for mobile */
@media (max-width: 768px) {
  .spotlight {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .spotlight-content {
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .spotlight {
    padding: 4rem 5%;
  }
}





.music {
  padding: 6rem 10%;
  background-color: #000;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 3rem;
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.music-card {
  background-color: #1a1a1a;
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.music-card img {
  width: 100%;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.music-card h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.genre {
  color: #F5A623;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 1rem;
}

/* Generic streaming button */
.music-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.music-card a .icon {
  width: 20px;
  height: 20px;
}

/* SoundCloud button */
.btn-soundcloud {
  background-color: #000;
  color: #F5A623;
  border: 1px solid #F5A623;
}
.btn-soundcloud .icon {
  filter: invert(1);
}
.btn-soundcloud:hover {
  background-color: #F5A623;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(245,166,35,0.4);
}

/* Card hover */
.music-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(245,166,35,0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .music {
    padding: 4rem 5%;
  }
}



.visual-break {
  background-color: #fff;
  padding: 8rem 10%;
  text-align: center;
}

.quote-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.accent-line {
  display: block;
  width: 60px;
  height: 4px;
  background-color: #F5A623; /* gold accent */
  margin: 0 auto 2rem auto;
  border-radius: 2px;
}

.quote {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.4;
  color: #000;
  margin-bottom: 1rem;
}

.author {
  font-size: 1rem;
  color: #777;
  display: block;
}

@media (max-width: 768px) {
  .visual-break {
    padding: 5rem 5%;
  }
  .quote {
    font-size: 1.5rem;
  }
}


/* Artist Feature Section ( Global Page ) */

.artist-feature {
  display: flex;
  min-height: 100vh;
  background-color: #f7f7f7;
  gap: 2rem;
}

/* --- Left full image --- */
.artist-left {
  flex: 1;
}
.artist-left img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

/* --- Right side --- */
.artist-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* text top, grid bottom */
  padding: 4rem 3rem;
}

.artist-text {
  max-width: 450px;
}

.artist-text h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 1rem;
}

.artist-text p {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
}


.artist-music {
  margin-top: 2rem;
}

.artist-music h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #000;
}

.music-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.music-links .icon-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.4rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Brand Colors */
.music-links .spotify {
  background: #1DB954;
}
.music-links .soundcloud {
  background: #ff5500;
}
.music-links .instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

/* Hover effect */
.music-links .icon-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.25);
}



.artist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.artist-grid img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.artist-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Responsive stacking */
@media (max-width: 768px) {
  .artist-feature {
    flex-direction: column;
  }
  .artist-left img {
    height: 50vh;
  }
  .artist-right {
    padding: 2rem;
  }
  .artist-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .music-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .music-links .icon-btn {
    width: 100%;               /* full width buttons */
    justify-content: center;   /* center icons + text */
    font-size: 0.95rem;
    padding: 0.9rem;
  }
}

@media (max-width: 480px) {
  .artist-music h3 {
    font-size: 1.2rem; /* slightly smaller title */
  }

  .music-links .icon-btn {
    font-size: 0.9rem;
    padding: 0.7rem;
  }
}



/* Tips Section ( Home Page ) */
.tips-section {
  background-color: #ffffff;
  padding: 6rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
}


.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tip-card {
  background-color: #f7f7f7; /* subtle grey for contrast */
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.tip-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #000;
}

.tip-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

/* Visual Arts Page */
/* Visual Arts Page*/



/* Music Page */
/* Featured Artist Section */

.hero-music {
  background: url('images/hero-11.jpg') center/cover no-repeat;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 80vh; /* takes up most of the screen */
  padding: 2rem;
  position: relative;
}

/* optional overlay for readability */
.hero-music::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
  z-index: 0;
}

.hero-music .hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}


.hero-music .hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.hero-music .hero-content p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-music .btn-explore {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 25px;
  border: 1px solid #111;
  font-weight: 500;
  text-decoration: none;
  color: #111;
  transition: all 0.3s ease;
}

.hero-music .btn-explore:hover {
  background: #111;
  color: #fff;
}


.featured-artist {
  background: #ffffff;
  padding: 80px 0;
}

.featured-artist .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.artist-content {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.artist-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.artist-info {
  flex: 1;
}

.artist-name {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
}

.artist-bio {
  font-size: 1rem;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 30px;
}

.streaming-links {
  display: flex;
  gap: 15px;
}

.btn-stream {
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* YouTube Music */
.btn-stream.yt {
  background-color: #FF0000;
  color: white;
}

.btn-stream.yt:hover {
  background-color: #cc0000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(204, 0, 0, 0.4);
}

/* Deezer */
.btn-stream.dz {
  background: linear-gradient(45deg, #ff0000, #ffed00, #00ff85, #00aaff, #a600ff);
  color: white;
}

.btn-stream.dz:hover {
  opacity: 0.9;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Spotify */
.btn-stream.sp {
  background-color: #1DB954;
  color: white;
}

.btn-stream.sp:hover {
  background-color: #169b45;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(22, 155, 69, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .artist-content {
    flex-direction: column;
    text-align: center;
  }
  .artist-info {
    padding-top: 20px;
  }
}



/* Genre Section */

.genre-section {
  padding: 60px 20px;
  background-color: #fafafa; /* light neutral bg */
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111; /* deep gray/black */
}

.section-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.genre-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.genre-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 16px;
  padding: 25px 20px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.genre-card:hover {
  transform: translateY(-4px);
  border-color: #ccc;
}

.genre-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

.genre-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111;
}

.genre-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}


.story-section {
  padding: 60px 20px;
  background: #fafafa;
  text-align: center; /* keep all content centered */
}

.story-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
}

.story-section .section-subtitle {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 30px;
}

.story-heading {
  font-size: 1.5rem;
  margin: 25px 0 20px;
  color: #111;
}

.top10-list {
  list-style-position: inside;
  max-width: 600px;
  margin: 0 auto 30px;
  text-align: left; /* keep readability for the list */
  color: #333;
}

.top10-list li {
  margin-bottom: 12px;
  line-height: 1.5;
}

.btn-readmore {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 20px;
  text-decoration: none;
  border: 1px solid #111;
  color: #111;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-readmore:hover {
  background: #111;
  color: #fff;
}


.banner {
  background: #111; /* dark contrast */
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.banner-text {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.btn-banner {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid #fff;
  border-radius: 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-banner:hover {
  background: #fff;
  color: #111;
}


.monthly-playlist .container {
  max-width: 800px; /* narrower, center-aligned */
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
}

.monthly-playlist .playlist-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.track-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.track-cover img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
}

.track-info {
  flex: 1;
  margin-left: 1rem;
  text-align: left; /* left-align text for readability */
}

.track-info .track-name {
  font-weight: 600;
  font-size: 1rem;
}

.track-info .track-artist {
  font-size: 0.85rem;
  color: #555;
}

.track-links a {
  margin-left: 0.5rem;
}



/* Blog Page */

/* BLOG HERO */
.blog-hero {
  position: relative;
  height: 70vh;
  background: url('images/hero\ \(3\).jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.blog-hero .hero-overlay {
  background-color: rgba(0,0,0,0.5);
  padding: 2rem;
  border-radius: 10px;
  color: #fff;
}

.blog-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.blog-hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.blog-hero .btn-explore {
  padding: 0.8rem 2rem;
  background-color: #eb6d06;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.blog-hero .btn-explore:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgb(235, 109, 6);
}

/* FEATURED ARTICLE */
.featured-article {
  padding: 5rem 2rem;
  background-color: #fff;
}

.article-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.article-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.article-info {
  flex: 1;
}

.article-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.article-excerpt {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #555;
}

.btn-read {
  padding: 0.6rem 1.8rem;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-read:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.recent-posts {
  padding: 5rem 2rem;
  background-color: #f9f9f9;
}

.recent-posts .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.recent-posts .section-subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 3rem;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.post-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.post-title {
  font-size: 1.3rem;
  margin: 1rem;
}

.post-excerpt {
  font-size: 1rem;
  color: #555;
  margin: 0 1rem 1rem 1rem;
}

.post-card .btn-read {
  margin: 0 1rem 1rem 1rem;
  padding: 0.5rem 1.5rem;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  align-self: flex-start;
  transition: all 0.3s ease;
}

.post-card .btn-read:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.top-categories {
  padding: 100px 0;
  background-color: #fff;
  text-align: center;
}

.top-categories .section-title {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 10px;
}

.top-categories .section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

.categories-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.category-card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-title {
  font-size: 1.5rem;
  color: #111;
  margin-bottom: 20px;
}

.category-articles {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.article-card {
  display: flex;
  align-items: center;
  gap: 15px;
}

.article-card img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}

.article-title {
  font-size: 1rem;
  color: #333;
  text-align: left;
}

.btn-view-all {
  margin-top: 20px;
  display: inline-block;
  text-decoration: none;
  color: #111;
  font-weight: 600;
  padding: 8px 20px;
  border: 2px solid #111;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-view-all:hover {
  background-color: #111;
  color: #fff;
}

.visual-break {
  background: #f5f5f5; /* light grey */
  text-align: center;
  padding: 80px 20px;
  font-family: 'Helvetica Neue', sans-serif;
}

.visual-break h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.visual-break p {
  font-size: 1.1rem;
  color: #555;
}

.featured-video-hero {
  position: relative;
  margin: 80px 0;
}

.video-wrapper iframe {
  width: 100%;
  height: 60vh;
  border-radius: 12px;
}

.video-caption {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  background: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.5));
  padding: 20px 40px;
  border-radius: 12px;
}


.video-caption h2 {
  margin-bottom: 10px;
  font-size: 2rem;
  color: #000;
}

.video-caption p {
  font-size: 1rem;
  color: #555;
}

.blog-banner {
  background-color: #f5f5f5; /* subtle light grey */
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.blog-banner .banner-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #111; /* dark text for contrast */
}

.blog-banner .banner-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #555; /* subtle grey for description */
}

.btn-banner {
  padding: 12px 30px;
  background-color: #eb6d06; /* your accent orange */
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(235,109,6,0.5);
}