/* General Styles */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh; /* Ensures the dark background fills the screen even on short pages */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #09090b; /* The dark obsidian background now floods the entire window */
    color: #fafafa;
    line-height: 1.6;
}

/* Navigation Bar */






/* Base styles and Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

/* Navbar Container */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #333;
  padding: 15px 30px;
  color: white;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

/* Desktop Navigation Links */
.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  display: block;
}

.nav-links li a:hover {
  background-color: #555;
  border-radius: 4px;
}

/* Hide Checkbox and Hamburger Icon on Desktop */
.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
}

/* The three bars of the hamburger icon */
.hamburger .bar {
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 10px;
  transition: all 0.3s ease;
}

/* ===================================================
   Mobile View (Screens 768px wide or smaller)
   =================================================== */
@media (max-width: 768px) {
  /* Show the hamburger icon */
  .hamburger {
    display: flex;
  }

  /* Position the menu off-screen by default (hidden) */
  .nav-links {
    position: absolute;
    top: 60px; /* Adjust based on navbar height */
    right: -100%; /* Hides the menu to the right */
    width: 200px;
    height: calc(100vh - 60px);
    background-color: #333;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
    transition: right 0.3s ease; /* Smooth slide-in effect */
    box-shadow: -5px 5px 10px rgba(0,0,0,0.3);
  }

  .nav-links li {
    margin: 15px 0;
    width: 100%;
    text-align: center;
  }

  /* THE MAGIC: When the hidden checkbox is checked, 
     target the adjacent .nav-links and slide it into view */
  .menu-toggle:checked ~ .nav-links {
    right: 0;
  }

  /* OPTIONAL: Turn the hamburger icon into an 'X' when open */
  .menu-toggle:checked ~ .hamburger .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .menu-toggle:checked ~ .hamburger .bar:nth-child(2) {
    opacity: 0; /* Hide middle bar */
  }
  .menu-toggle:checked ~ .hamburger .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}










#datetime {
  font-family: monospace;
  font-size: 1rem;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* header */

header {
  height: 80vh;
  background-image: url('your-header-image.jpg');
  background-size: cover;
  background-position: center;

  /* The mask makes the top 80% solid, and fades out the bottom 20% */
  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.about-me {
  /* This section can now be any color, gradient, or pattern */
  background: #f4f4f4; 
  margin-top: -50px; /* Slight negative margin pulls it up into the fade zone */
  padding: 60px 20px;
}










header {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('room416.jpg');
    background-size: cover;
    height : 60vh;
    background-position: center;
    background-repeat: no-repeat;
    /* 4. Center the text inside the header */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    
}

header {
    text-align: center;
    padding: 80px 20px;
    background-color: #1a1a1a; /* Subtle dark grey background */
}

.profile-photo {
  width: 150px;
  height: 150px;
  object-fit: cover;
  /* The shape is defined here */
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

h1 {
    font-size: 2.5rem;
    margin: 0;
    letter-spacing: 3px;
    text-transform: uppercase;
}

header p {
    color: #888;
    font-size: 1.1rem;
    margin-top: 5px;
}

h1 {
    font-size: 3rem;
    letter-spacing: 5px;
    margin-bottom: 10px;
}










/*about 2 */

/* Main Outer Container */
.about-container {
  max-width: 1100px;
  margin: 40px auto;
  font-family: 'Inter', sans-serif;
  position: relative;
  
}

/* Hide Radio Buttons */
input[name="about-swipe"] {
  display: none;
}

/* Slider Track Mechanics */
.slider-wrapper {
  width: 100%;
  overflow: hidden;
}

.slides {
  display: flex;
  width: 200%;
  transition: transform 0.65s cubic-bezier(0.77, 0, 0.175, 1);
}

/* Base Card Styling */
.slide-card {
  width: 50%;
  color: #fff;
}



/* Symmetrical Layout Grid */
/* 1. Ensure a strict 50/50 layout width split */
.two-column-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  /* Establish a global minimum height so text length doesn't dictate sizing */
  min-height: 480px; 
}

/* 2. Lock the image column size properties */
.media-column {
  width: 100%;
  display: flex;
  overflow: hidden;
}

.media-column img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Crops both images identically */
  object-position: center top;
  display: block;
}

/* 3. Let the text column scale up to the layout box but never shrink below it */
.text-column {
  padding: 60px 80px 60px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertically centers short text perfectly */
  box-sizing: border-box;
}

/* Optional: Shrink font sizes slightly on the first slide text if you want a lighter visual weight */
.professional-theme .text-column h2 {
  font-size: 2rem; /* Reduced slightly from 2.2rem */
}

.professional-theme .text-column p {
  font-size: 1rem; /* Reduced slightly from 1.05rem */
}

.tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #888;
  display: block;
  margin-bottom: 16px;
}

.text-column h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  line-height: 1.25;
  color: #f5f5f5;
}

.text-column p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #b3b3b3;
  margin-bottom: 16px;
}

/* Hidden Navigation Arrow Overlays */
.control-btn {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.8);
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border: 1px solid #222;
  opacity: 0;
  backdrop-filter: blur(4px);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s, color 0.2s;
}

.btn-1 { left: 20px; transform: translateY(-50%) translateX(-10px); }
.btn-2 { right: 20px; transform: translateY(-50%) translateX(10px); }

.about-container:hover .control-btn { opacity: 1; }
.about-container:hover .btn-1,
.about-container:hover .btn-2 { transform: translateY(-50%) translateX(0); }

.control-btn:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* Swipe Execution */
#slide-1:checked ~ .slider-wrapper .slides { transform: translateX(0%); }
#slide-2:checked ~ .slider-wrapper .slides { transform: translateX(-50%); }

/* Mobile Adaptations */
@media (max-width: 768px) {
  .two-column-layout {
    grid-template-columns: 1fr;
  }
  
  .text-column {
    padding: 40px 24px 80px 24px;
  }
  
  .media-column {
    aspect-ratio: auto;
    height: 300px;
    min-height: auto;
    object-position: center top; /* <--- THIS IS THE FIX */
  }
  
  .text-column h2 { font-size: 1.8rem; }

  .control-btn {
    top: auto;
    bottom: 20px;
    opacity: 1 !important;
  }
  .btn-1 { left: calc(50% - 54px); transform: none !important; }
  .btn-2 { right: calc(50% - 54px); transform: none !important; }
}
/*about */




/* Portfolio Grid */
.portfolio {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}



/* Genre tag styling */
.genre {
    color: #00ffcc; /* Your accent color */
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 300;
    margin-left: 10px;
}

/* Smaller details text below the player */
.track-subtext {
    font-size: 0.85rem;
    color: #888;
    margin-top: 8px;
    font-style: italic;
}










/* --- 1. Global Page Canvas Setup --- */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  background-color: #09090b; /* Matte black page background canvas */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #fafafa;
}

/* --- 2. Layout Positioning Wrapper --- */
.wide-stream-section {
  max-width: 860px; /* Sweeping width allows maximum player stretch without layout distortion */
  margin: 0 auto;
  padding: 80px 20px;
}

.stream-header {
  margin-bottom: 48px;
  text-align: center;
}

.stream-header .eyebrow-accent {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #ff5500; /* SoundCloud orange identity brand accent */
  font-weight: 700;
}

.stream-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 6px 0 0 0;
  letter-spacing: -0.02em;
  color: #ffffff;
}

/* --- 3. Single-Column Stack Layout --- */
.wide-column-stack {
  display: flex;
  flex-direction: column;
  gap: 40px; /* Balanced spacing between the wide track blocks */
}

/* --- 4. The Wide Card Layout --- */
.wide-track-card {
  background-color: #141416;
  border: 1px solid #27272a;
  border-radius: 16px;
  padding: 32px; /* Generous breathing room inside the container card */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: border-color 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.wide-track-card:hover {
  transform: translateY(-4px); /* Clean vertical elevation slide when hovered */
  border-color: #3f3f46;
}

/* --- 5. Text & Typography Block Layout --- */
.wide-track-info {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px; /* Distinct separation gap before the player line rules */
}

.wide-meta-line {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}

.track-genre {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ff5500;
}

.track-release {
  font-size: 0.75rem;
  color: #71717a;
}

/* Flex layout pairing title and artist cleanly on one line */
.title-artist-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.track-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.01em;
}

.track-artist {
  font-size: 1rem;
  color: #a1a1aa;
}

.artist-link {
  color: #ff5500;
  text-decoration: none;
  font-weight: 500;
  transition: text-decoration 0.2s ease;
}

.artist-link:hover {
  text-decoration: underline;
}

.track-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #a1a1aa;
  margin: 0;
}

/* --- 6. The Player Window Block Container --- */
.wide-player-container {
  background-color: #000000;
  border-radius: 8px;
  overflow: hidden;
  line-height: 0; /* Clears hidden inline browser block gaps */
}

.wide-player-container iframe {
  width: 100%;
  height: 166px;
  border: none;
  display: block;
}

/* --- 7. Tablet/Mobile Adaptations --- */
@media (max-width: 600px) {
  .wide-track-card {
    padding: 20px;
  }
  .title-artist-row {
    flex-direction: column;
    gap: 4px;
  }
  .track-title {
    font-size: 1.35rem;
  }
  .track-artist {
    font-size: 0.9rem;
  }
}

/* ==============================================
   Pagination Styles (Under the Grid)
   ============================================== */
/* --- Pagination Panel Layout --- */
.pagination-dashboard {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.dash-numbers-wrapper {
  display: flex;
  gap: 8px;
}

.dash-nav-btn, .dash-page-btn {
  padding: 10px 18px;
  background-color: #141416;
  color: #a1a1aa;
  border: 1px solid #27272a;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.dash-nav-btn:hover, .dash-page-btn:hover {
  background-color: #202024;
  color: #ffffff;
  border-color: #3f3f46;
}

/* Active Page Accent State */
.dash-page-btn.active {
  background-color: #ff5500; /* SoundCloud Iconic Orange Brand Accent */
  color: #ffffff;
  border-color: #ff5500;
  box-shadow: 0 0 12px rgba(255, 85, 0, 0.3);
}

/* Disabled State Navigation Locks */
.dash-nav-btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
  background-color: #09090b;
  border-color: #18181b;
}








.contact-section {
    padding: 80px 20px;
    background-color: #121212;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    background: #1e1e1e;
    padding: 40px;
    border-radius: 15px;
}

.contact-image img {
    width: 300px;      /* Size of the contact photo */
    height: 400px;
    object-fit: cover; /* Keeps your face from looking stretched */
    border-radius: 10px;
    filter: grayscale(20%); /* Optional: gives it a moody producer vibe */
}

.contact-content {
    flex: 1;
}

.contact-content h2 {
    font-size: 2.5rem;
    color: #00ffcc;
    margin-top: 0;
}

.contact-links {
    list-style: none;
    padding: 0;
}

.contact-links li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Mobile Responsive: Stack the image and text */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-image img {
        width: 100%;
        max-width: 300px;
        height: auto;
    }
}

/* Sections & Footer */
.about {
    text-align: center;
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
}

.aesthetic-footer {
  background-color: #111;
  color: #888;
  padding: 80px 10% 40px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
}

.sitemap {
  list-style: none;
  padding: 0;
}

.sitemap li { margin-bottom: 10px; }

.sitemap a {
  text-decoration: none;
  color: #888;
  transition: color 0.3s;
}

.sitemap a:hover { color: #fff; }

/* Search Bar Styling */
.footer-search {
  display: flex;
  background: #222;
  border-radius: 5px;
  padding: 5px;
  margin-top: 15px;
}

.footer-search input {
  background: transparent;
  border: none;
  color: #fff;
  padding: 8px;
  outline: none;
  width: 100%;
}

.footer-search button {
  background: transparent;
  border: none;
  cursor: pointer;
}

/* Trust Signals */
.badge-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #555;
}

.footer-divider {
  border: 0;
  border-top: 1px solid #222;
  margin-bottom: 30px;
}

/* Bottom Bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.social-icons a {
  margin-right: 20px;
  text-decoration: none;
  color: #fff;
  font-size: 0.8rem;
}

.back-to-top {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: transform 0.3s;
}

.back-to-top:hover {
  transform: translateY(-5px);
}

.aesthetic-footer {
  background-color: #111;
  color: #888;
  padding: 80px 10% 40px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
}

.sitemap {
  list-style: none;
  padding: 0;
}

.sitemap li { margin-bottom: 10px; }

.sitemap a {
  text-decoration: none;
  color: #888;
  transition: color 0.3s;
}

.sitemap a:hover { color: #fff; }

/* Search Bar Styling */
.footer-search {
  display: flex;
  background: #222;
  border-radius: 5px;
  padding: 5px;
  margin-top: 15px;
}

.footer-search input {
  background: transparent;
  border: none;
  color: #fff;
  padding: 8px;
  outline: none;
  width: 100%;
}

.footer-search button {
  background: transparent;
  border: none;
  cursor: pointer;
}

/* Trust Signals */
.badge-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #555;
}

.footer-divider {
  border: 0;
  border-top: 1px solid #222;
  margin-bottom: 30px;
}

/* Bottom Bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.social-icons a {
  margin-right: 20px;
  text-decoration: none;
  color: #fff;
  font-size: 0.8rem;
}

.back-to-top {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: transform 0.3s;
}

.back-to-top:hover {
  transform: translateY(-5px);
}
