/* Global styles */
:root {
  --reggae-red: #e53935;
  --reggae-green: #2e7d32;
  --reggae-gold: #f9a825;
  --dark-bg: #050505;
  --card-bg: #111111;
  --text-main: #f5f5f5;
  --text-muted: #cccccc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #222 0%, #000 60%, #000 100%);
  color: var(--text-main);
  line-height: 1.6;
}

/* Layout */
.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(
    90deg,
    var(--reggae-red),
    var(--reggae-gold),
    var(--reggae-green)
  );
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

/*LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #111;
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.logo-text-main {
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.1;
}

.logo-text-sub {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
}


/*  */

.nav-links {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.nav-links a {
  color: #111;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
  text-decoration: underline;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 32px;
  height: 5px;
  background: #111;
  display: block;
}

/* video */

/* === Video grid layout === */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

/* === Video card hover effect === */
.card {
  background: #111;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border: 1px solid rgba(255,255,255,0.05);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.7);
  border-color: rgba(255,215,0,0.6); /* subtle gold glow */
}

/* === Video wrapper keeps consistent box size === */
.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;            /* Fixed video box ratio */
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  cursor: pointer;
}

/* Hover effect on video wrapper */
.video-wrapper:hover {
  box-shadow: 0 8px 22px rgba(0,0,0,0.6);
}

/* === Video element: fit entire frame inside box === */
.reggae-video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;             /* Show whole frame (letterboxed if needed) */
  background: #000;
}

/* HOME VIDEO PLAYER */
/* === Video element: fit entire frame inside box === */
.home-page{

  max-width: 80%;
  margin: auto;
  width: 100%;
}

/* === Custom play button overlay === */
.play-overlay {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #ffd700;       /* gold border */
  background: rgba(0, 0, 0, 0.6);
  color: #ffd700;
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    opacity 0.2s ease;
}

/* Hover effect on play button */
.video-wrapper:hover .play-overlay {
  transform: scale(1.05);
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.9);
  background: rgba(0, 0, 0, 0.8);
}

/* Hide overlay when playing */
.custom-player.playing .play-overlay {
  opacity: 0;
  pointer-events: none;
}

/* Hero section */
.hero {
  padding: 3rem 0 2.5rem;
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.hero-text {
  margin-top: -110px;
  flex: 1 1 300px;
}

.hero-kicker {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--reggae-gold);
  margin-bottom: 0.5rem;
}

.hero-title {
  font-size: 2rem;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.hero-bio-snippet {
  font-size: 0.95rem;
  color: var(--text-main);
  max-width: 40rem;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-left: 15%;
}

.btn {
  display: inline-block;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(
    90deg,
    var(--reggae-red),
    var(--reggae-gold),
    var(--reggae-green)
  );
  color: #111;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--reggae-gold);
  color: var(--reggae-gold);
}

.hero-image-wrapper {

  flex: 0 1 260px;
  max-width: 320px;

  
}

.hero-image-card {
  background: var(--card-bg);
  border-radius: 1.25rem;
  padding: 0.75rem;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-image {
  width: 100%;
  border-radius: 1rem;
  display: block;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  border: 3px solid var(--reggae-gold);
}

.hero-image-caption {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Sections */
.section {
  padding: 2rem 0 2.5rem;
}

.section-header {
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--reggae-gold);
  padding-left: 0.75rem;
}

.section-title {
  margin: 0;
  font-size: 1.4rem;
  text-transform: uppercase;
}

.section-subtitle {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Content cards */
.card {
  background: var(--card-bg);
  border-radius: 1rem;
  padding: 1.25rem 1.3rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

/* Multi-column text */
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
}



/* Paragraphs */
p {
  margin: 0 0 0.9rem;
  font-size: 0.98rem;
}

/* Press / home content styling */
.highlight {
  color: var(--reggae-gold);
  font-weight: 600;
}

/* Photo grid */
.photo-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.photo-card {
  background: var(--card-bg);
  border-radius: 0.85rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.photo-card img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.photo-card-body {
  padding: 0.7rem 0.85rem 0.8rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}



/* Contact form */
.form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

input,
textarea {
  padding: 0.6rem 0.7rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #000;
  color: var(--text-main);
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid var(--reggae-gold);
}

/* Footer */
.footer {
  border-top: 3px solid;
  border-image: linear-gradient(
      90deg,
      var(--reggae-red),
      var(--reggae-gold),
      var(--reggae-green)
    )
    1;
  padding: 1.4rem 0 1rem;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
}

.footer-tagline {
  font-weight: 500;
  color: var(--reggae-gold);
}

.footer-nav {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
}

.footer-nav a:hover {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 1100px) {

  .navbar {
    margin-bottom: 30px;

}


.press-relace-mobil{
    margin-left: 8%;
}
.message-display{
  margin-bottom: auto;
}
}

@media (max-width: 1000px) {
  .navbar {
    margin-bottom: 65px;

}

.hero-title {
    font-size: 1.5rem;
  }

}

/* VIDEO PLAYER END HERE */
/* Small screens tweaks */

@media (max-width: 900px) {
  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-title {
    margin-top: 10%;
    font-size: 1.5rem;
  }

  .press-relace-mobil{
    margin-left: 7%;
}
  
}

@media (max-width: 768px) {

   .navbar {
    margin-bottom: 25px;

}

  .press-relace-mobil{
    display: none;
  }
  .nav-links {
    position: fixed;
    inset: 56px 0 auto 0;
    background: #000;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 1rem 1rem;
    gap: 1rem;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    text-align: center;
    width: 100px;
    padding: 3px;
    color: var(--text-main);
    border-radius: 1rem;
    border: solid 3px  gold;
    background-color: rgb(76, 216, 55);
    
  }

  .nav-toggle {
    display: flex;
  }

  .hero-image-wrapper {
    margin-left: 15%;

     

  }


}

@media (max-width: 600px) {
  .play-overlay {
    width: 60px;
    height: 60px;
    font-size: 1.7rem;
    }
    
    .hero-title {
    margin-top: 15%;
    font-size: 1.5rem;
  }
   
  }
   
  .photo-card img {
  display: block;
  width: 100%;
    height: auto;
    object-fit: contain;          /* Show entire image, no cropping */
    max-height: 70vh;
}


@media (max-width: 500px) {
       .hero-title {
    margin-top: 17%;
    font-size: 1.2rem;
  }

  .logo-text-main {
    font-size: .7rem;
  }

 

}

@media (max-width: 369px) {
   .logo-text-main {
    font-size: .6rem;
    font-weight: bold;
  }

  .read-more-about-marcia-button-on-front-page{
     font-size: .7rem;
  }

  


}