/*
Theme Name: Portfolio Dark
Theme URI: https://yoursite.com
Author: Your Name
Author URI: https://yoursite.com
Description: Modern dark portfolio theme with hamburger menu
Version: 2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: portfolio-dark
*/

:root {
  --primary-blue: #4A90E2;
  --text-white: #ffffff;
  --text-gray: #cccccc;
  --bg-dark: #1a1a1a;
  --bg-gradient-start: #2a2a2a;
  --bg-gradient-end: #1a1a1a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: #000000;
  color: var(--text-white);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(74, 144, 226, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(74, 144, 226, 0.1) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

/* Add subtle noise texture */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* Menu Button */
.menu-toggle {
  position: fixed;
  top: 40px;
  left: 40px;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  cursor: pointer;
  z-index: 1000;
  transition: opacity 0.3s;
}

.menu-toggle:hover {
  opacity: 0.7;
}

/* Hamburger Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: #000000;
  z-index: 999;
  transition: left 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
  padding: 40px;
}

.mobile-menu.active {
  left: 0;
}

/* Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Menu Logo */
.menu-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #f0f0f0;
  margin-bottom: 60px;
  overflow: hidden;
}

.menu-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Menu Navigation */
.mobile-menu nav ul {
  list-style: none;
  flex: 1;
}

.mobile-menu nav ul li {
  margin-bottom: 30px;
}

.mobile-menu nav ul li a {
  color: var(--text-white);
  text-decoration: none;
  font-size: 24px;
  font-weight: 300;
  transition: color 0.3s;
  display: block;
}

.mobile-menu nav ul li a:hover {
  color: var(--primary-blue);
}

/* Partners Section */
.menu-partners {
  margin-top: auto;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-partners h3 {
  color: #666;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sponsor-buttons {
  display: flex;
  gap: 15px;
}

.sponsor-btn {
  padding: 12px 24px;
  background: rgba(74, 144, 226, 0.2);
  border: 1px solid rgba(74, 144, 226, 0.3);
  color: var(--primary-blue);
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s;
}

.sponsor-btn:hover {
  background: rgba(74, 144, 226, 0.3);
  border-color: var(--primary-blue);
}

/* Main Content */
.site-main {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Hero Section */
.hero-section {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-section h1 {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero-subtitle {
  color: var(--primary-blue);
  font-size: 20px;
  margin-bottom: 60px;
  font-weight: 300;
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

.social-links a {
  color: var(--text-white);
  font-size: 28px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.social-links a:hover {
  color: var(--primary-blue);
  background: rgba(74, 144, 226, 0.1);
  transform: translateY(-3px);
}

/* Content Pages */
.content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 40px 60px;
  position: relative;
  z-index: 1;
}

.page-title {
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 40px;
  color: var(--text-white);
}

.entry-content {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-gray);
}

.entry-content p {
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    top: 20px;
    left: 20px;
  }

  .mobile-menu {
    max-width: 280px;
    padding: 30px 20px;
  }

  .menu-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 40px;
  }

  .mobile-menu nav ul li a {
    font-size: 20px;
  }

  .hero-section h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .social-links {
    gap: 25px;
  }

  .social-links a {
    font-size: 24px;
    width: 45px;
    height: 45px;
  }

  .sponsor-buttons {
    flex-direction: column;
  }

  .content-wrapper {
    padding: 100px 20px 40px;
  }

  .page-title {
    font-size: 32px;
  }
}
/* Blog Page Layout */
.blog-header {
  margin-bottom: 60px;
}

.blog-header h1 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 15px;
}

.blog-description {
  color: var(--text-gray);
  font-size: 18px;
  font-weight: 300;
}

.category-filter {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.category-filter a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.category-filter a:hover,
.category-filter a.active {
  color: var(--primary-blue);
}

.featured-post {
  margin-bottom: 80px;
}

.featured-post-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.featured-post-image {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
}

.featured-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-category {
  display: inline-block;
  background: var(--primary-blue);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
  text-decoration: none;
}

.featured-post-content h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}

.featured-post-content h2 a {
  color: var(--text-white);
  text-decoration: none;
  transition: color 0.3s;
}

.featured-post-content h2 a:hover {
  color: var(--primary-blue);
}

.post-meta {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
}

.post-meta span {
  margin-right: 15px;
}

.featured-post-excerpt {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.read-more {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.read-more:hover {
  gap: 12px;
}

.latest-posts-section {
  margin-top: 60px;
}

.latest-posts-section h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.blog-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, background 0.3s;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
}

.blog-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary-blue);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.blog-card-content {
  padding: 25px;
}

.blog-card-meta {
  color: #666;
  font-size: 13px;
  margin-bottom: 12px;
}

.blog-card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.blog-card-title a {
  color: var(--text-white);
  text-decoration: none;
  transition: color 0.3s;
}

.blog-card-title a:hover {
  color: var(--primary-blue);
}

.blog-card-excerpt {
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.6;
}

/* Photography Page */
.photography-page {
  padding-top: 80px;
}

.photography-header {
  text-align: center;
  margin-bottom: 80px;
}

.photography-header h1 {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, rgba(74, 144, 226, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.photography-intro {
  color: var(--text-gray);
  font-size: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.photography-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}

.photo-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  aspect-ratio: 4/5;
  animation: fadeInUp 0.6s ease-out backwards;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(74, 144, 226, 0.1);
}

.photo-item:nth-child(1) { animation-delay: 0.05s; }
.photo-item:nth-child(2) { animation-delay: 0.1s; }
.photo-item:nth-child(3) { animation-delay: 0.15s; }
.photo-item:nth-child(4) { animation-delay: 0.2s; }
.photo-item:nth-child(5) { animation-delay: 0.25s; }
.photo-item:nth-child(6) { animation-delay: 0.3s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.photo-wrapper {
  width: 100%;
  height: 100%;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.photo-item:hover img {
  transform: scale(1.05);
}

.photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.photo-item:hover .photo-overlay {
  opacity: 1;
}

.photo-overlay h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.photo-location {
  font-size: 14px;
  color: var(--text-gray);
}

/* Photo Modal */
.photo-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  opacity: 0;
}

.photo-modal.active {
  display: flex;
  opacity: 1;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  max-width: 1400px;
  width: 100%;
  max-height: 90vh;
}

.modal-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-image-wrapper img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
}

.modal-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-details h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;
}

.modal-meta {
  display: flex;
  gap: 12px;
  color: var(--primary-blue);
  font-size: 16px;
  margin-bottom: 30px;
}

.modal-details p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-gray);
}

.modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.modal-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.modal-prev {
  left: 30px;
}

.modal-next {
  right: 30px;
}

/* Projects Page */
.projects-page {
  padding-top: 60px;
}

.projects-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 80px;
}

.back-button {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 144, 226, 0.15);
  border: 1px solid rgba(74, 144, 226, 0.3);
  border-radius: 50%;
  color: var(--primary-blue);
  transition: all 0.3s;
  text-decoration: none;
}

.back-button:hover {
  background: rgba(74, 144, 226, 0.25);
  border-color: var(--primary-blue);
  transform: translateX(-5px);
  box-shadow: 0 0 20px rgba(74, 144, 226, 0.3);
}

.projects-header h1,
.media-header h1 {
  font-size: 56px;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, #ffffff 0%, rgba(74, 144, 226, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  gap: 35px;
  margin-bottom: 60px;
}

.project-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(74, 144, 226, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.project-card:hover {
  transform: translateY(-10px);
  border-color: rgba(74, 144, 226, 0.5);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(74, 144, 226, 0.2);
}

.project-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
}

.project-content {
  padding: 30px;
}

.project-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.project-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-gray);
  margin-bottom: 25px;
}

.project-technologies {
  margin-bottom: 25px;
}

.tech-label {
  font-size: 13px;
  color: #888;
  display: block;
  margin-bottom: 12px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-tag {
  padding: 6px 14px;
  background: rgba(74, 144, 226, 0.15);
  color: var(--primary-blue);
  border: 1px solid rgba(74, 144, 226, 0.3);
  border-radius: 20px;
  font-size: 13px;
  transition: all 0.3s;
}

.project-card:hover .tech-tag {
  background: rgba(74, 144, 226, 0.25);
}

.project-links {
  display: flex;
  gap: 12px;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}

.project-link svg {
  width: 16px;
  height: 16px;
}

.project-link-live {
  background: rgba(74, 144, 226, 0.1);
  color: var(--primary-blue);
  border: 1px solid rgba(74, 144, 226, 0.3);
}

.project-link-live:hover {
  background: rgba(74, 144, 226, 0.2);
  border-color: var(--primary-blue);
  transform: translateY(-2px);
}

.project-link-code {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-gray);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-link-code:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-white);
  transform: translateY(-2px);
}

/* Movies & Music Page */
.media-page {
  padding-top: 60px;
}

.media-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 80px;
}

.media-section {
  margin-bottom: 100px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--primary-blue);
}

.media-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 35px;
}

.music-grid {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.media-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(74, 144, 226, 0.15);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.media-card:hover {
  transform: translateY(-10px);
  border-color: rgba(74, 144, 226, 0.5);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(74, 144, 226, 0.2);
}

.media-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.music-card .media-card-image {
  height: 320px;
}

.media-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.media-card:hover .media-card-image img {
  transform: scale(1.08);
}

.media-card-content {
  padding: 25px;
}

.media-card-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.media-card-meta {
  font-size: 14px;
  color: #888;
  margin-bottom: 15px;
}

.star-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.star {
  color: rgba(255, 255, 255, 0.2);
}

.star-filled {
  color: var(--primary-blue);
}

.media-thoughts {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}

.media-thoughts h4 {
  font-size: 14px;
  font-weight: 600;
  color: #888;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.media-thoughts p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-gray);
}

/* Responsive Updates */
@media (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  }
  
  .modal-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .photography-header h1,
  .projects-header h1,
  .media-header h1 {
    font-size: 36px;
  }
  
  .photography-grid,
  .projects-grid,
  .media-cards-grid,
  .music-grid {
    grid-template-columns: 1fr;
  }
}
/* Enhanced Page Titles - No Gradient */
.photography-header {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 0;
}

.photography-header h1 {
    font-size: 64px !important;
    font-weight: 700 !important;
    color: var(--text-white) !important;
    margin-bottom: 20px;
    background: none !important;
    -webkit-text-fill-color: var(--text-white) !important;
}

.projects-header,
.media-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
    padding-top: 0;
}

.projects-header h1,
.media-header h1 {
    font-size: 56px !important;
    font-weight: 700 !important;
    color: var(--text-white) !important;
    margin: 0 !important;
    background: none !important;
    -webkit-text-fill-color: var(--text-white) !important;
}

.projects-header::after,
.media-header::after {
    display: none !important;
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 0;
}

.blog-header h1 {
    font-size: 48px !important;
    font-weight: 600 !important;
    color: var(--text-white) !important;
    margin-bottom: 20px;
    background: none !important;
    -webkit-text-fill-color: var(--text-white) !important;
}

/* Remove extra padding from pages */
.photography-page,
.projects-page,
.media-page {
    padding-top: 40px !important;
}
/* Fixed Page Header Bar - Transparent */
.projects-header,
.media-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    padding: 40px 40px 20px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 0;
    z-index: 900;
}

.projects-header h1,
.media-header h1 {
    font-size: 20px !important;
    font-weight: 500 !important;
    color: var(--text-white) !important;
    margin: 0 !important;
    letter-spacing: 1px;
    text-transform: lowercase;
}

.back-button {
    width: 32px !important;
    height: 32px !important;
    background: rgba(74, 144, 226, 0.1) !important;
    border: 1px solid rgba(74, 144, 226, 0.2) !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-button svg {
    width: 18px;
    height: 18px;
}

/* Add top padding to content */
.projects-page .content-wrapper,
.media-page .content-wrapper {
    padding-top: 120px !important;
}

/* Photography Page - Match Projects/Media */

.photography-page {

    padding-top: 40px !important;

}

.photography-header { position: fixed; top: 0; left: 0; width: 100%; background: transparent; padding: 40px 40px 20px 40px; margin: 0; z-index: 900; display: flex; align-items: center; gap: 20px; }

.photography-header h1 {

    font-size: 20px !important;

    font-weight: 500 !important;

    color: var(--text-white) !important;

    margin: 0 !important;

    letter-spacing: 1px;

    text-transform: lowercase;

    text-align: left;

}

.photography-intro {

    display: none;

}

.photography-page .content-wrapper {

    padding-top: 120px !important;

}

.photography-grid {

    margin-top: 0;

}
/* Blog Page - Match Other Pages */
.blog-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    padding: 40px 40px 20px 40px;
    margin: 0;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.blog-header h1 {
    font-size: 20px !important;
    font-weight: 500 !important;
    color: var(--text-white) !important;
    margin: 0 !important;
    letter-spacing: 1px;
    text-transform: lowercase;
}

.blog-description {
    display: none;
}

.content-wrapper {
    padding-top: 120px !important;
}

.category-filter {
    margin-top: 0;
}
/* Hide MENU button on all pages except homepage */
body:not(.home) .menu-toggle {
    display: none !important;
}
/* Photography Grid - Mobile Fix */
@media (max-width: 768px) {
    .photography-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .photo-item {
        aspect-ratio: 4/5;
        min-height: 400px;
        border-radius: 12px;
    }
    
    .photo-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Ensure photos always display properly */
.photo-item {
    display: block;
    width: 100%;
}

.photo-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.photo-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.menu-toggle {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
/* Fix clickable project links */
.project-links {
    position: relative;
    z-index: 10;
}

.project-link {
    pointer-events: auto;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.project-card {
    position: relative;
}

.project-content {
    position: relative;
    z-index: 5;
}

.project-image {
    position: relative;
    z-index: 1;
}
/* Music Toggle Button */
.music-toggle {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(74, 144, 226, 0.2);
    border: 1px solid rgba(74, 144, 226, 0.4);
    color: var(--primary-blue);
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.music-toggle:hover {
    background: rgba(74, 144, 226, 0.3);
    transform: scale(1.1);
}

.music-toggle.playing .play-icon {
    display: none;
}

.music-toggle.playing .pause-icon {
    display: block;
}
/* Hide menu button on mobile for non-home pages */
@media (max-width: 768px) {
    body:not(.home) .menu-toggle {
        display: none !important;
    }
}

/* Menu button disappears when menu opens */