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

body {
  font-family: Arial, sans-serif;
  background-color: grey;
  color: black;
  line-height: 1.6;
  background-image: url('https://cdn.glitch.global/06e4d87f-a691-4fd1-9666-6b123c250784/IMG_6215.jpg?v=1707699933533');
}

/* ===== CSS VARIABLES ===== */
:root {
  /* Color Variables */
  --black: #000000;
  --white: #ffffff;
  --pink: #ff748b;
  --darkPink: #e64d6c;
  --lightPink: #ffb6c1;
  --green: #a7d477;
  --darkGreen: #8bc34a;
  --lightGreen: #e4f1ac;
  
  /* Spacing Variables */
  --spacing-xs: 5px;
  --spacing-sm: 10px;
  --spacing-md: 20px;
  --spacing-lg: 30px;
  --spacing-xl: 50px;
}

/* ===== MOBILE STYLES ===== */
.mobileScreen {
  display: none; /* Hidden by default, shown via media query */
}

/* Mobile Header */
.mobile-header {
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-md);
  width: 100%;
  position: relative;
  text-align: center;
}

/* Mobile Navigation */
.mobile-nav {
  width: 90%;
  margin: auto;
  max-width: 360px;
  display: flex;
  flex-direction: row;
  gap: var(--spacing-sm);
}

.nav-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.nav-link {
  text-decoration: none;
  display: block;
}

.mobile-menu {
  padding: var(--spacing-md);
  border: 2px solid var(--black);
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  background-size: cover;
  background-position: center;
  color: var(--black);
  transition: transform 0.2s ease;
  font-size: 16px;
}

.mobile-menu:hover {
  transform: translateY(-2px);
}

/* Blog menu specific style */
.mobile-menu[style*="background-color: var(--black)"] {
  color: var(--white);
}

/* Links Block */
.links-block {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  align-items: center;
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

/* Mobile News Section */
.newsM {
  width: 90%;
  margin: var(--spacing-md) auto;
  max-width: 400px;
}

.news-header {
  width: 100%;
  background-color: var(--black);
  background-image: url('lipstick.jpeg');
  background-blend-mode: hard-light;
  padding: var(--spacing-sm);
  text-align: center;
}

.news-header h2 {
  color: var(--white);
  font-size: 1.5em;
}

.noticia {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  border-bottom: 1px solid var(--lightPink);
}

.news-image {
  width: 100px;
  margin: auto;
}

.news-image img {
  border: 2px solid var(--pink);
  border-radius: 7px;
  object-fit: cover;
}

.image-container {
  height: 100px;
  width: 100px;
  border: 2px solid var(--pink);
  border-radius: 7px;
  overflow: hidden;
}

.news-content {
  width: 55%;
  text-align: left;
}

.news-content h3 {
  margin: auto;
  color: var(--green);
  text-shadow: none;
  font-size: 1.2em;
  margin-bottom: var(--spacing-xs);
}

.news-content p {
  margin: auto;
  font-size: 14px;
}

/* ===== DESKTOP STYLES ===== */
#screen {
  display: block;
}

/* Page Title Section */
#pageTitle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md) 0;
}

#pageTitle .logo {
  margin-top: var(--spacing-xl);
  margin-right: var(--spacing-sm);
}

/* Social Links */
#social-links {
  display: flex;
  gap: var(--spacing-sm);
  align-items: center;
}

/* Main Section Layout */
#main-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 60vh;
  padding: var(--spacing-lg);
  gap: var(--spacing-xl);
}

/* Menu Sections */
#pink-menu, #green-menu {
  display: flex;
  gap: var(--spacing-lg);
  position: relative;
}

.menu-column {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

/* Box Base Styles */
.box {
  border: 2px solid black;
  border-radius: 8px;
  padding: var(--spacing-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.box:hover {
  transform: translateY(-3px);
  box-shadow: 4px 4px 0px black;
}

/* Box Positioning */
.right-box {
  align-self: flex-end;
}

.left-box {
  align-self: flex-start;
}

/* Pink Box Styles */
.pink-box {
  background-color: magenta;
  color: black;
}

/* Specific pink box styles from inline styles */
.pink-box.mixes-box {
  width: 160px;
  height: 160px;
  background-color: magenta;
  background-image: url('8I00GGB25ZGGI.BMP');
  background-position: -10px -15px;
  background-blend-mode: difference;
}

.pink-box.links-box {
  width: 210px;
  height: 130px;
  background-color: black;
  background-position: -10px -15px;
  background-blend-mode: soft-light;
}

.pink-box.blog-box {
  width: 105px;
  height: 105px;
  background-color: black;
}

.pink-box.about-box {
  width: 80px;
  height: 80px;
  background-color: magenta;
}

.pink-box.music-box {
  width: 180px;
  height: 180px;
  background-color: magenta;
  background-image: url('downloaded_image-9.jpeg');
  background-position: -90px -60px;
}

/* Green Box Styles */
.green-box {
  background-color: plum;
  color: black;
}

/* Specific green box styles from inline styles */
.green-box.visuals-box {
  width: 160px;
  height: 160px;
  background-color: lavender;
  background-image: url('');
  background-position: -60px -50px;
  background-blend-mode: screen;
}

.green-box.photos-box {
  width: 180px;
  height: 100px;
  background-color: plum;
  background-image: url('eyes.JPG');
  background-position: -10px -110px;
  background-blend-mode: lighten;
}

.green-box.music-obsessions-box {
  width: 140px;
  height: 120px;
  background-color: purple;
}

.green-box.books-box {
  width: 100px;
  height: 80px;
  background-color: purple;
  background-image: url('eyes.JPG');
  background-position: -50px -10px;
  background-blend-mode: lighten;
}

/* Menu Headers */
.menu-header {
  background: transparent !important;
  border: none !important;
  font-size: 1.1em;
  letter-spacing: 2px;
  width: 160px;
  color: black;
}

.menu-header p {
  margin: 0;
  margin-bottom: -6px;
  margin-top: 12px;
  letter-spacing: 3px;
  font-size: 23px;
}

/* Text Animations */
.text-animation-pink {
  animation: glowPink 2s ease-in-out infinite alternate;
}

.text-animation-green {
  animation: glowGreen 2s ease-in-out infinite alternate;
}

@keyframes glowPink {
  from { text-shadow: 0 0 5px var(--lightPink); }
  to { text-shadow: 0 0 15px var(--pink), 0 0 20px var(--lightPink); }
}

@keyframes glowGreen {
  from { text-shadow: 0 0 5px var(--lightGreen); }
  to { text-shadow: 0 0 15px var(--green), 0 0 20px var(--lightGreen); }
}

/* Button Icons */
.button-icon {
  width: 40px;
  height: 40px;
  border: 3px solid black;
  border-radius: 8px;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 70%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.button-icon:hover {
  transform: scale(1.1);
  background-color: magenta;
}

/* Specific button icon backgrounds - you'll need to add these image files */
.bandcamp { background-image: url('bandcamp-icon.png'); }
.instagram { background-image: url('IG-logo.png'); }
.soundcloud { background-image: url('soundcloud-icon.png'); }
.spotify { background-image: url('spotify-icon.png'); }
.youtube { background-image: url('YouTube-logo.png'); }

/* Links */
.pink-link {
  color: pink;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.pink-link:hover {
  color: pink;
  text-decoration: underline;
}

/* Custom Cursor */
.custom-cursor {
  cursor: url('custom-cursor.png'), auto;
}

/* Decorative Elements */
.decoration {
  pointer-events: none;
  user-select: none;
}

.butterfly {
  position: absolute;
  top: calc(50% - 160px);
  left: calc(50% + 430px);
}

/* Spacer Utilities */
.spacer {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  width: 160px;
  align-content: center;
}

.spacer > div {
  height: 26px;
  width: 100%;
}

.spacer > div + div {
  height: 64px;
  display: flex;
  flex-direction: row;
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 768px) {
  .mobileScreen {
    display: block;
  }
  
  #screen {
    display: none;
  }
  
  .mobile-nav {
    flex-direction: column;
  }
  
  .nav-column {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .noticia {
    flex-direction: column;
    text-align: center;
  }
  
  .news-content {
    width: 100%;
    text-align: center;
  }
  
  .links-block {
    flex-direction: row;
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .mobile-menu {
    padding: var(--spacing-sm);
    font-size: 0.9em;
  }
  
  .noticia {
    padding: var(--spacing-sm);
  }
  
  .news-image, .image-container {
    width: 80px;
    height: 80px;
  }
  
  .button-icon {
    width: 35px;
    height: 35px;
  }
  
  .news-content {
    width: 100%;
  }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.m-auto { margin: auto; }
.mt-20 { margin-top: 20px; }
.mb-30 { margin-bottom: 30px; }

.flex { display: flex; }
.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

/* Enhanced Dot Digital Font */
@font-face {
  font-family: 'Enhanced Dot Digital';
  src: url('enhanced-dot-digital.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

.enhanced-digital {
  font-family: 'Enhanced Dot Digital', monospace;
  letter-spacing: 3px;
}

/* Backward compatibility for old class names */
.columna {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.linksBlock {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  align-items: center;
}

.buttonicon {
  width: 40px;
  height: 40px;
  border: 3px solid black;
  border-radius: 8px;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 70%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.pinklink {
  color: magenta;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

/* Print Styles */
@media print {
  .button-icon,
  .mobile-menu:hover,
  .box:hover {
    transform: none !important;
    box-shadow: none !important;
  }
  
  .text-animation-pink,
  .text-animation-green {
    animation: none;
  }
}