:root{
  --glass-bg: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.12);
  --accent: #bde0ff;
  --text: #f3f6f8;
}

/* Reset */
*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
body{
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color:var(--text);
  background: url('desert-bg.jpg') center/cover fixed no-repeat;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.6;
}

.logo{
  pointer-events:auto;
  background:var(--glass-bg);
  border:1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  padding:8px 18px;
  border-radius:18px;
  font-family:"Orbitron",sans-serif;
  font-weight:700;
  letter-spacing:1.5px;
  color:var(--text);
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  font-size:16px;
}

/* general glass section style */
.glass-section{
  margin:38px auto;
  width:90%;
  max-width:1200px;
  background: linear-gradient(135deg, rgba(255,255,255,0.02), rgba(255,255,255,0.04));
  border-radius:26px;
  border:1px solid var(--glass-border);
  padding:28px;
  backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 12px 40px rgba(9,10,15,0.45);
}

/* section titles */
.section-title{
  font-family:"Orbitron",sans-serif;
  letter-spacing:1px;
  font-weight:600;
  margin-bottom:20px;
  color:var(--accent);
}

/* Hero layout */
.hero-inner{
  display:flex;
  gap:22px;
  align-items:stretch;
}
.hero-left{
  flex:2;
  display:flex;
  align-items:center;
  padding:24px;
}
.hero-right{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:18px;
  justify-content:flex-start;
}

/* Hero title stylized */
.hero-title{
  font-family:"Orbitron",sans-serif;
  font-size: clamp(28px, 5vw, 48px);
  line-height:1.02;
  color:var(--text);
  transform: translateY(-6px);
}
.hero-title .accent{
  display:block;
  color:var(--accent);
  font-size:1.05em;
  letter-spacing:.5px;
}

/* generic glass card inside hero right */
.glass-card{
  background: rgba(255,255,255,0.03);
  border-radius:16px;
  padding:14px;
  border:1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
}

/* Spotify area */
.spotify-card{
  display:flex;
  flex-direction:column;
  gap:12px;
  min-height: 420px;
}
.spotify-embed-wrap{
  overflow:hidden;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.03);
  flex:1;
}

/* control row decor */
.spotify-controls{
  display:flex;
  align-items:center;
  gap:10px;
}
.control-btn, .play-btn{
  background:transparent;
  color:var(--text);
  border:1px solid rgba(255,255,255,0.06);
  padding:8px 12px;
  border-radius:10px;
  cursor:pointer;
  font-size:14px;
}
.track-info{flex:1;font-size:13px;opacity:.8}

/* pinterest card look */
.pinterest-card{
  display:flex;
  align-items:center;
  gap:12px;
  justify-content:center;
  text-decoration:none;
  color:var(--text);
  padding:18px;
}
.pinterest-inner{
  display:flex;
  gap:12px;
  align-items:center;
}
.pin-icon{fill:var(--accent)}
.pinterest-text .small{display:block;font-size:12px;opacity:.9}

/* ABOUT SECTION */
.about-inner{
  display:flex;
  gap:26px;
  align-items:center;
}
.about-right {
  flex: 2;
  text-align: left;
}

.me-photo{
  width:260px;
  height:260px;
  object-fit:cover;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.06);
  box-shadow: 0 14px 40px rgba(0,0,0,0.45);
}

/* CASE STUDIES */
.case-card{
  display:flex;
  gap:20px;
  align-items:center;
  margin:18px 0;
  padding:18px;
  border-radius:14px;
  background: rgba(0,0,0,0.08);
  border:1px solid rgba(255,255,255,0.03);
}
.case-card.reverse{flex-direction:row-reverse}
.case-left, .case-right{flex:1}
.case-left img, .case-right img{
  width:100%;
  max-width:420px;
  border-radius:10px;
  object-fit:cover;
}

/* ARTWORK CAROUSEL */
.artwork .carousel-viewport{
  overflow:hidden;
  width:100%;
  border-radius:12px;
  padding:10px 0;
}
.carousel-track{
  display:flex;
  gap:18px;
  align-items:center;
  transform:translateX(0);
  will-change:transform;
}
.carousel-item{
  min-width:220px;
  min-height:140px;
  border-radius:12px;
  overflow:hidden;
  background:linear-gradient(180deg,#111 0%,#222 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,0.04);
}
.carousel-item img{width:100%;height:100%;object-fit:cover}

/* CONTACT */
.contact-inner{
  display:flex;
  gap:20px;
  align-items:center;
}
.contact-left{flex:1}
.contact-right{flex:2}

/* responsive */
@media (max-width:980px){
  .hero-inner {flex-direction:column;}
  .about-inner{flex-direction:column-reverse;text-align:left}
  .about-right{text-align:left}
  .case-card{flex-direction:column}
  .case-card.reverse{flex-direction:column}
  .site-header{top:8px}
  .me-photo{width:200px;height:200px}
}

/* Contact text size */
.contact-right {
  font-size: 1.1rem; /* slightly larger */
}

/* Links style (yellow/orange) */
a {
  color: #ffb84d; /* warm yellow-orange */
  text-decoration: none;
}
a:hover {
  color: #ffc966; /* lighter orange on hover */
}

/* Section titles: white with glow */
.section-title {
  color: #ffffff;
  text-shadow: 0 0 6px rgba(255,255,255,0.8),
               0 0 12px rgba(255,255,255,0.6);
}

/* Make hero title glow like section titles */
.hero-title.glow {
  color: #ffffff;
  text-shadow: 0 0 6px rgba(255,255,255,0.8),
               0 0 12px rgba(255,255,255,0.6);
}

.see-more-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 20px;
  background: white;
  color: black;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.see-more-btn:hover {
  transform: translateY(-2px);
  background: #f0f0f0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}



.case-full-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

/* ---------- Fade-in animation for case study ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.glass-section {
  opacity: 0;
  animation: fadeInUp 0.9s ease forwards;
  animation-delay: 0.2s;
}

.site-header {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}
.back-btn {
  animation-delay: 0.05s;
}
.logo {
  animation-delay: 0.1s;
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.glass-section {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 20px;
  margin: 80px auto;
  max-width: 900px;
}
.case-full-img {
  width: 100%;
  border-radius: 16px;
  display: block;
}
/* Fix header to allow clicks */
.site-header{
  position:sticky;
  top:14px;
  width:100%;
  display:flex;
  justify-content:center;
  z-index:100;       /* make sure above other content */
  pointer-events:auto; /* ← FIX */
}

/* Back button: glassmorphism + hover glow + responsive */
.back-btn {
  position: absolute;
  top: 30px;
  left: 30px;
  padding: 10px 22px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 200;
}

.back-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(-4px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  color: var(--accent);
  text-shadow: 0 0 6px rgba(189, 224, 255, 0.8), 0 0 12px rgba(189, 224, 255, 0.6);
}

@media (max-width: 600px) {
  .back-btn {
    top: 18px;
    left: 18px;
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

.glass-section {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px;
  margin: 80px auto;
  max-width: 1400px; /* wider and still elegant */
  width: 90vw; /* makes it responsive */
}

