/* ===========================
   1. RESET & BASE
=========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(#ffffff, #cbd1dc, #f3f6fd, #c1c5ce);
  color: #111;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===========================
   2. NAVBAR
=========================== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  flex-wrap: wrap;
  gap: 10px;
  background: transparent;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.logo {
  font-weight: bold;
  font-size: 22px;
  background: linear-gradient(270deg, #f8ad00, #e13333, #3992ff);
  background-size: 600% 600%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: gradientMove 3s ease-in-out infinite;
}

@keyframes gradientMove {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 28px;
}

.navbar ul li a {
  font-size: 15px;
  font-weight: bold;
  color: #3992ff;
  transition: color 0.2s;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  color: #e13333;
}

/* ===========================
   3. HERO
=========================== */
.hero {
  text-align: center;
  padding: 70px 20px;
  background-image: url('videobackg/mwah1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.60);
}

.hero * {
  position: relative;
}

.hero-title {
  font-size: 58px;
  font-weight: bold;
  background: linear-gradient(to right, #f8ad00, #e13333, #3992ff);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 12px;
  animation: gradientMoveHero 6s ease-in-out infinite;
}

@keyframes gradientMoveHero {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.hero-sub {
  font-size: 18px;
  color: #333;
  margin-bottom: 24px;
}

.hero-action {
  margin-top: 16px;
}

.hero button {
  padding: 12px 30px;
  background-color: white;
  color: #111;
  font-size: 13px;
  font-weight: bold;
  border: 2px solid #333;
  cursor: pointer;
  letter-spacing: 1px;
  transition: 0.2s;
}

.hero button:hover {
  background-color: #111;
  color: white;
}

/* ===========================
   4. DIVIDERS
=========================== */
.divider {
  border: none;
  height: 1px;
  background: #ccc;
  margin: 0;
}

.divider-red {
  border: none;
  height: 3px;
  background: #e13333;
  margin: 0;
}

/* ===========================
   5. HOME PAGE — TWO COLUMN LAYOUT
   Designed for 1366x768 laptop
=========================== */
.main {
  flex: 1;
  display: flex;
  padding: 28px 36px;
  gap: 28px;
  align-items: flex-start;
}

/* Left — Albums of the Week */
.left {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.left h2 {
  font-size: 26px;
  font-weight: bold;
  background: linear-gradient(to right, #f8ad00, #e13333, #3992ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.left-sub {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.left-sub > p {
  font-size: 13px;
  color: #444;
}

/* Right — Song of the Week */
.right {
  flex: 0 0 260px;
  width: 260px;
  border-left: 1px solid #ccc;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
}

.right h2 {
  font-size: 20px;
  font-weight: bold;
  background: linear-gradient(to right, #3992ff, #f8ad00, #e13333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.right img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  margin-bottom: 12px;
  border-radius: 4px;
}

.song-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 10px;
  gap: 8px;
}

.song-title {
  font-size: 13px;
  font-weight: bold;
  color: #3992ff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.song-artist {
  font-size: 11px;
  font-weight: bold;
  color: #555;
  text-transform: uppercase;
  margin-top: 3px;
}

.right .score {
  font-size: 34px;
  font-weight: bold;
  color: #e13333;
  white-space: nowrap;
}

.right .desc {
  font-size: 12px;
  color: #444;
  line-height: 1.7;
  margin-top: 8px;
  text-align: justify;
}

/* ===========================
   6. SCALING LABEL
=========================== */
.scaling {
  font-size: 12px;
  font-weight: bold;
  color: #555;
  letter-spacing: 1px;
}

.scaling span {
  color: #f8ad00;
}

/* ===========================
   7. ALBUM / SONG GRID PAGES
=========================== */
.albums-section,
#songs {
  width: 100%;
  padding: 28px 36px;
}

.section-header {
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 26px;
  font-weight: bold;
  background: linear-gradient(to right, #f8ad00, #e13333, #3992ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.section-sub {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.section-sub p {
  font-size: 13px;
  color: #444;
}

/* 4-column grid — fits well at 1366px */
.albums {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* ===========================
   8. CARDS
=========================== */
.card {
  background: #fff;
  border: 1px solid #d0d5dd;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.10);
}

.card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.card h3 {
  font-size: 12px;
  font-weight: bold;
  color: #333;
  margin: 10px 10px 4px;
  line-height: 1.3;
}

.card .desc {
  font-size: 11px;
  color: #555;
  margin: 0 10px 6px;
  line-height: 1.5;
  flex: 1;
}

.card .artist {
  font-size: 11px;
  font-weight: bold;
  color: #e13333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 10px 4px;
}

.card .score {
  font-size: 32px;
  font-weight: bold;
  color: #e13333;
  margin: 6px 10px 10px;
  line-height: 1;
}

/* ===========================
   9. TOP WEEKLY PAGE
=========================== */
.tw-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 26px 36px 14px;
  background: transparent;
}

.tw-title-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tw-title {
  font-size: 48px;
  font-weight: bold;
  color: #f8ad00;
  line-height: 1;
}

.tw-title span {
  color: #3992ff;
}

.tw-sub {
  font-size: 13px;
  font-weight: bold;
  color: #555;
  letter-spacing: 0.5px;
}

.tw-tables {
  display: flex;
  gap: 28px;
  padding: 16px 36px 36px;
}

.tw-table-box {
  flex: 1;
  border: 2px solid #3333cc;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}

.tw-table-header {
  padding: 13px;
  text-align: center;
  border-bottom: 2px solid #3333cc;
  background: #fafafa;
}

.tw-table-header p {
  font-size: 15px;
  font-weight: bold;
  color: #f8ad00;
  letter-spacing: 1px;
}

.tw-table-header .this { color: #e13333; }
.tw-table-header .week { color: #9b59b6; }

.tw-table {
  width: 100%;
  border-collapse: collapse;
}

.tw-table tr {
  border-top: 2px solid #3333cc;
}

.tw-table td:first-child {
  padding: 15px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  width: 85%;
  background: #f3f6fd;
}

.tw-table td:last-child {
  padding: 15px 12px;
  font-size: 15px;
  font-weight: bold;
  color: #e13333;
  text-align: center;
  width: 15%;
  border-left: 2px solid #3333cc;
  background: #eef1f7;
}

/* ===========================
   10. REVIEWS PAGE
=========================== */
#reviews {
  padding: 28px 36px;
  flex: 1;
}

.review {
  display: flex;
  gap: 18px;
  align-items: center;
  background: #fff;
  border: 2px solid #3333cc;
  border-radius: 4px;
  padding: 18px;
  margin-bottom: 16px;
}

.review img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 2px;
}

.review-body {
  flex: 1;
  min-width: 0;
}

.review-body h3,
.review h3 {
  font-size: 14px;
  font-weight: bold;
  color: #f8ad00;
  margin-bottom: 2px;
}

.review-artist,
.artist {
  font-size: 11px;
  font-weight: bold;
  color: #3992ff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.meta {
  font-size: 11px;
  color: #888;
  margin-bottom: 8px;
}

.review-body p,
.review p {
  font-size: 13px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 6px;
}

.review-score,
.review .score {
  font-size: 40px;
  font-weight: bold;
  color: #e13333;
  flex-shrink: 0;
  min-width: 76px;
  text-align: center;
  padding-left: 18px;
  border-left: 2px solid #eee;
  align-self: center;
  line-height: 1;
}

.review-link,
.review a {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: bold;
  color: #3992ff;
  border: 1px solid #3992ff;
  border-radius: 20px;
  padding: 5px 14px;
  transition: 0.2s;
}

.review-link:hover,
.review a:hover {
  background-color: #3992ff;
  color: white;
}

/* ===========================
   11. CONTACT PAGE
=========================== */
#contact {
  max-width: 600px;
  margin: 40px auto;
  padding: 32px;
  background: #fff;
  border: 2px solid #3333cc;
  border-radius: 6px;
}

#contact h2 {
  font-size: 30px;
  font-weight: bold;
  background: linear-gradient(to right, #f8ad00, #e13333, #3992ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  text-align: center;
}

#contact form div {
  margin-bottom: 16px;
}

label {
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  margin-bottom: 4px;
}

input[type="text"],
input[type="email"],
textarea,
select {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  transition: border 0.2s;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #3992ff;
  box-shadow: 0 0 0 2px rgba(57,146,255,0.2);
}

.radio-group,
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.radio-group .radio-label {
  font-weight: bold;
  color: #333;
  margin-right: 8px;
}

.radio-group label,
.checkbox-group label {
  display: inline;
  font-weight: normal;
  margin-bottom: 0;
}

#contact button[type="submit"] {
  width: 100%;
  padding: 12px;
  background-color: white;
  color: #111;
  font-size: 14px;
  font-weight: bold;
  border: 2px solid #333;
  cursor: pointer;
  letter-spacing: 1px;
  transition: 0.2s;
  border-radius: 2px;
}

#contact button:hover {
  background-color: #111;
  color: white;
}

/* ===========================
   12. FOOTER
=========================== */
.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 20px 36px;
  font-size: 13px;
  font-weight: bold;
  color: #3992ff;
  border-top: 1px solid #ddd;
  margin-top: auto;
}

.footer a {
  color: #3992ff;
}

.footer a:hover {
  color: #e13333;
}

.footer-links {
  display: flex;
  gap: 28px;
}

/* ===========================
   13. PAGE TITLE
=========================== */
.page-title {
  font-size: 44px;
  font-weight: bold;
  background: linear-gradient(to right, #f8ad00, #e13333, #3992ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 16px;
  text-align: center;
  padding: 28px 36px 0;
}

/* ===========================
   14. RESPONSIVE BREAKPOINTS

   Desktop:  1366px+ — default styles above
   Tablet:   768px–1100px
   Mobile:   360px–480px (Galaxy S5, Pixel 7, iPhone)
=========================== */

/* --- Tablet (800px–1100px) --- */
@media (max-width: 1100px) and (min-width: 769px) {
  .albums {
    grid-template-columns: repeat(3, 1fr);
  }

  .right {
    flex: 0 0 220px;
    width: 300px;
  }
}

/* --- Small tablet / large phone landscape (481px–768px) --- */
@media (max-width: 768px) {
  .main {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }

  .left,
  .right {
    width: 100%;
    flex: none;
    border-left: none;
    padding-left: 0;
  }

  .right img {
    max-width: 360px;
    margin: 0 auto 12px;
  }

  .albums {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .albums-section,
  #songs,
  #reviews {
    padding: 20px;
  }

  .tw-tables {
    flex-direction: column;
    padding: 16px 20px;
  }

  .tw-table-box {
    width: 100%;
  }

  .tw-header {
    padding: 20px 20px 10px;
  }

  .tw-title {
    font-size: 36px;
  }
}

/* --- Modern mobile phones (360px–480px: Galaxy S5, Pixel 7, iPhone) --- */
@media (max-width: 480px) {
  .navbar {
    padding: 12px 16px;
  }

  .navbar ul {
    gap: 14px;
  }

  .navbar ul li a {
    font-size: 13px;
  }

  .logo {
    font-size: 18px;
  }

  .hero {
    padding: 48px 16px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero button {
    padding: 10px 22px;
    font-size: 12px;
  }

  .main {
    padding: 16px;
  }

  .left h2,
  .section-header h2 {
    font-size: 22px;
  }

  /* 2 columns even on small phones */
  .albums {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .card h3 {
    font-size: 11px;
  }

  .card .score {
    font-size: 26px;
  }

  .tw-title {
    font-size: 28px;
  }

  .tw-sub {
    font-size: 11px;
  }

  .tw-table td:first-child {
    font-size: 12px;
    padding: 12px 10px;
  }

  .tw-table td:last-child {
    font-size: 13px;
    padding: 12px 8px;
  }

  .review {
    flex-wrap: wrap;
    padding: 14px;
    gap: 12px;
  }

  .review img {
    width: 72px;
    height: 72px;
  }

  .review-score,
  .review .score {
    font-size: 30px;
    border-left: none;
    padding-left: 0;
    min-width: auto;
  }

  .review-body p,
  .review p {
    font-size: 12px;
  }

  .footer {
    flex-direction: column;
    gap: 8px;
    font-size: 12px;
    padding: 14px;
    text-align: center;
  }

  .footer-links {
    gap: 20px;
  }

  #reviews {
    padding: 16px;
  }

  .page-title {
    font-size: 32px;
    padding: 20px 16px 0;
  }
}
/* ===========================
   LARGE SCREEN PATCH
   Paste this at the very bottom of style.css
   Covers: 1920x1080, 1440x900, 1366x768
=========================== */

/* 1920x1080 full desktop */
@media (min-width: 1600px) {
  .navbar {
    padding: 22px 60px;
  }

  .logo {
    font-size: 30px;
  }

  .navbar ul li a {
    font-size: 18px;
  }

  .hero {
    padding: 100px 20px;
  }

  .hero-title {
    font-size: 80px;
  }

  .hero-sub {
    font-size: 24px;
  }

  .hero button {
    font-size: 15px;
    padding: 15px 36px;
  }

  .main {
    padding: 40px 60px;
    gap: 40px;
  }

  .left h2,
  .section-header h2 {
    font-size: 36px;
  }

  .left-sub > p,
  .section-sub p {
    font-size: 16px;
  }

  .right {
    flex: 0 0 320px;
    width: 320px;
  }

  .right h2 {
    font-size: 26px;
  }

  .song-title {
    font-size: 16px;
  }

  .song-artist {
    font-size: 13px;
  }

  .right .score {
    font-size: 44px;
  }

  .right .desc {
    font-size: 14px;
  }

  .card h3 {
    font-size: 15px;
    margin: 14px 14px 6px;
  }

  .card .desc {
    font-size: 13px;
    margin: 0 14px 8px;
  }

  .card .artist {
    font-size: 12px;
    margin: 0 14px 6px;
  }

  .card .score {
    font-size: 42px;
    margin: 8px 14px 14px;
  }

  .albums {
    gap: 24px;
  }

  /* Top Weekly */
  .tw-header {
    padding: 36px 60px 18px;
  }

  .tw-title {
    font-size: 64px;
  }

  .tw-sub {
    font-size: 15px;
  }

  .tw-tables {
    padding: 20px 60px 50px;
    gap: 40px;
  }

  .tw-table-header p {
    font-size: 18px;
  }

  .tw-table td:first-child {
    font-size: 16px;
    padding: 20px 20px;
  }

  .tw-table td:last-child {
    font-size: 17px;
    padding: 20px 14px;
  }

  /* Reviews */
  #reviews {
    padding: 36px 60px;
  }

  .review {
    padding: 24px;
    gap: 24px;
  }

  .review img {
    width: 130px;
    height: 130px;
  }

  .review-body h3,
  .review h3 {
    font-size: 17px;
  }

  .review-artist,
  .artist {
    font-size: 13px;
  }

  .meta {
    font-size: 13px;
  }

  .review-body p,
  .review p {
    font-size: 15px;
  }

  .review-score,
  .review .score {
    font-size: 50px;
    min-width: 90px;
  }

  /* Footer */
  .footer {
    padding: 26px 60px;
    font-size: 15px;
    gap: 32px;
  }

  /* Albums / Songs pages */
  .albums-section,
  #songs {
    padding: 36px 60px;
  }

  .page-title {
    font-size: 56px;
    padding: 36px 60px 0;
  }
}

/* 1440x900 MacBook */
@media (min-width: 1300px) and (max-width: 1599px) {
  .navbar {
    padding: 20px 50px;
  }

  .logo {
    font-size: 26px;
  }

  .navbar ul li a {
    font-size: 16px;
  }

  .hero {
    padding: 86px 20px;
  }

  .hero-title {
    font-size: 68px;
  }

  .hero-sub {
    font-size: 21px;
  }

  .main {
    padding: 34px 50px;
    gap: 34px;
  }

  .left h2,
  .section-header h2 {
    font-size: 30px;
  }

  .right {
    flex: 0 0 290px;
    width: 290px;
  }

  .card h3 {
    font-size: 13px;
  }

  .card .desc {
    font-size: 12px;
  }

  .card .score {
    font-size: 36px;
  }

  .tw-header {
    padding: 30px 50px 14px;
  }

  .tw-title {
    font-size: 56px;
  }

  .tw-tables {
    padding: 18px 50px 44px;
  }

  .tw-table td:first-child {
    font-size: 15px;
  }

  #reviews {
    padding: 30px 50px;
  }

  .review img {
    width: 115px;
    height: 115px;
  }

  .review-body p,
  .review p {
    font-size: 14px;
  }

  .review-score,
  .review .score {
    font-size: 44px;
  }

  .footer {
    padding: 22px 50px;
    font-size: 14px;
  }

  .albums-section,
  #songs {
    padding: 30px 50px;
  }

  .page-title {
    font-size: 50px;
  }
}
nav ul li a.active {
  color: #f8ad00;
  border-bottom: 2px solid #f8ad00;
}