
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #000000; /* Background color for the entire website, including individual sections */
  --default-color: #fafafa; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #ffffff; /* Color for headings, subheadings and title throughout the website */
  --accent-color: black; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #1a1a1a; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #000000; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #fafafa;  /* The default color of the main navmenu links */
  --nav-hover-color: black; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #1a1a1a; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #1a1a1a; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #fafafa; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: black; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #1a1a1a;
  --surface-color: #343434;
}

.dark-background {
  --background-color: transparent;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #292929f9;
  --contrast-color: #000000;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}


/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: "Poppins", sans-serif;
}

#background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

@font-face {
  font-family: 'AKIRA';
  src: url('../font/akira-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Funky';
  src: url('../font/funky.ttf') format('truetype');
  
}

.funky {
  font-family: 'Funky', cursive !important;
  font-size: 70px !important;
  position: relative;
  top: 25px; /* Adjust the value to move it further down */
}


a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

h2 {
  
 
  font-family: 'AKIRA', sans-serif !important;
  
}



  
  .p1 {
    font-family: 'Quicksand', sans-serif;
	 margin-top: 40px;
	 padding-top: 10px;
      
  }


/* Global Header on Scroll
------------------------------*/
.scrolled .header {

}

/* Navigation */ 
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.6); /* transparent black */
  backdrop-filter: saturate(160%) blur(8px);
  -webkit-backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* Brand / Logo */
.site-nav__brand a {
  display: block;
}

.site-nav__brand a img {
  height: auto;       /* maintain aspect ratio */
  max-height: 40px;   /* desktop max height */
  width: auto;
  display: block;
}

/* Responsive logo on mobile */
@media (max-width: 768px) {
  .site-nav__brand a img {
    max-height: 30px; /* smaller on mobile */
  }
}

/* Navigation links */
.site-nav__links {
  display: flex;
  gap: clamp(12px, 3vw, 28px);
  list-style: none;
  margin: 0;
  padding: 0;
  transition: max-height 0.3s ease;
}

.site-nav__links a {
  text-decoration: none;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
}

.site-nav__links a:hover {
  opacity: 1;
}

/* Hamburger Icon */
.site-nav__toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.site-nav__toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .site-nav__toggle {
    display: flex;
  }
  .site-nav__links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.85);
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    max-height: 0;
  }
  .site-nav__links li {
    padding: 12px 0;
  }
  .site-nav__links.active {
    max-height: 300px;
  }
}



.containerr {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    margin: 0 auto !important;
    width: 100% !important;
    height: 100vh !important;
  }
  
 .containerr h2,
.containerr .p1,
.containerr .social-links {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.2 !important;
}

.containerr h2 {
  margin-bottom: 0px !important;
}

.containerr .p1 {
  margin-top: 0 !important;
  margin-bottom: 15px !important;
}

.containerr .social-links {
  margin-top: 0 !important;
}




#unmute-btn {
  position: fixed;                /* stays visible even when scrolling */
  left: 20px;                     /* space from the left edge */
  bottom: 20px;                   /* space from the bottom */
  z-index: 9999;                  /* stays above other elements */

  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  font-size: 14px;
  width: 120px;
  height: 45px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15); /* floating effect */
  
  transition: 0.3s;
  border: none;
  cursor: pointer;
  opacity: 0;
  animation: fadeIn 1s ease-in forwards;
}

/* Hover effect */
#unmute-btn:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

/* Fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}






@keyframes fadeIn {
  to {
    opacity: 1;
  }
}


  .social-links {
    justify-content: center;
    display: flex;

  }
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: white;
  background-color: white;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

.footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
}

.footer .social-links {
  margin: 0 0 30px 0;
}

.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: white;
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
}

.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .credits {
  font-size: 13px;
  padding-top: 5px;
}

.footer .sitename {
  margin-top: 30px !important; /* adjust px as you like */
}

.footer .credits {
  margin-bottom: 30px !important; /* adjust px as you like */
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}



/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero .containerr {
  position: relative;
  z-index: 3;
}
.hero h2 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
}

.hero p {
  margin: 5px 0 0 0;
  font-size: 17px;
}

.hero p span {
  letter-spacing: 1px;
  border-bottom: 2px solid var(--accent-color);
}

.hero .social-links {
  margin-top: 25px;
}

.hero .social-links a {
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  font-size: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  transition: 0.3s;
}

.hero .social-links a:hover {
  background-color: var(--accent-color);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 20px;
  }
  
   
}

.blur-bg img {
  filter: blur(1px);
  width: 100%;
  height: auto;
}







* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
 

 
  scroll-behavior: smooth;
}

img { display: block; width: 100%; height: auto; }

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}



.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  font-family: "Bebas Neue", Impact, system-ui;
  letter-spacing: 1px;
  font-size: 36px;
  text-decoration: none;
  color: var(--brand);
}
.brand.small { font-size: 28px; }

.nav .menu {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.nav a { color: var(--text); text-decoration: none; font-weight: 600; }
.nav a:hover { opacity: 0.8; }

.nav-toggle { display: none; background: none; border: 1px solid #333; color: var(--text); padding: 8px 12px; }


/* Split layout */
.section-split .split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
}
.text-col .lede { font-size: 20px; font-weight: 600; margin: 0 0 12px 0; }

.album {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.album img { aspect-ratio: 4/5; object-fit: cover; filter: grayscale(100%); }

.album img:hover { transform: scale(1.03); filter: grayscale(0%); }

//* Base card styles */
.card-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.card {
  background: var(--card);
  border: 1px solid #232323;
}
.card-figure { margin: 0; }
.card-figure img {
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(100%);
  transition: 0.3s;
}
.card figcaption { padding: 12px; }
.card h3 { margin: 0 0 6px 0; font-size: 18px; }
.card p { margin: 0; color: var(--muted); font-size: 14px; }
.card-grid img:hover { transform: scale(1.03); filter: grayscale(0%); }

/* Dots */
.dots {
  display: none;
  justify-content: center;
  margin-top: 16px;
  gap: 8px;
}
.dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #555;
  cursor: pointer;
  transition: background 0.3s;
}
.dots button.active { background: white; }

/* Mobile (<768px): vertical list */
@media (max-width: 767px) {
  .card-grid {
    grid-template-columns: 1fr;
	list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  
  gap: 16px;
  }
  .dots { display: none !important; }
}

/* Tablet (768px–1023px): slider with dots */
@media (min-width: 768px) and (max-width: 1023px) {
  .card-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .card-grid::-webkit-scrollbar { display: none; }
  .card {
    flex: 0 0 70%;
    scroll-snap-align: center;
  }
  .dots { display: flex; }
}

/* Desktop (≥1024px): slider with dots showing 4 at a time */
@media (min-width: 1024px) {
  .card-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 16px;
  }
  .card-grid::-webkit-scrollbar { display: none; }
  .card {
    flex: 0 0 calc(25% - 12px); /* 4 cards per view */
    scroll-snap-align: start;
  }
  .dots { display: flex; }
}



/* Video */
.video-embed { position: relative; padding-top: 56.25%; border: 1px solid #232323; background: #000; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.gallery-grid img { aspect-ratio: 1/1; object-fit: cover; filter: grayscale(100%); transition: transform .25s ease, filter .25s ease; }
.gallery-grid img:hover { transform: scale(1.03); filter: grayscale(0%); }

/* Contact */
.contact .contact-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.contact-label { margin: 0 0 6px 0; font-size: 14px; color: var(--muted); letter-spacing: .08em; }
.social { list-style: none; margin: 4px 0 0 0; padding: 0; display: flex; gap: 12px; flex-wrap: wrap; }
.social a { color: var(--text); text-decoration: none; border-bottom: 1px solid #333; padding-bottom: 2px; }



/* Responsive */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .section-split .split { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-block; }
  .nav .menu { display: none; position: absolute; right: 16px; top: 58px; background: #0f0f0f; padding: 12px; border: 1px solid #222; }
  .nav .menu.open { display: grid; gap: 8px; }
  .card-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact .contact-items { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 12px; align-items: flex-start; }
}





.app {
  max-width: 420px;
  margin: 0 auto;
  padding: 18px 14px 28px;
}

.card {
  background: var(--bg-elev);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.profile {
  text-align: center;
  padding: 16px 14px 10px;
}

.avatar-wrap { display: grid; place-items: center; }
.avatar {
  width: 180px;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--stroke);
}

.artist-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 10px 0 8px;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}
.socials a {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--card);
  border: 1px solid var(--stroke);
  color: var(--text);
}
.socials a:hover { filter: brightness(1.05); }

.pill-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 6px 6px 2px;
}
.pill {
  -webkit-tap-highlight-color: transparent;
  border: 1px solid var(--stroke);
  background: var(--pill);
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 11px;
  white-space: nowrap;
}
.pill.is-active {
  background: var(--pill-active);
  color: #000;
}

.content { margin-top: 14px; }

.section { padding: 30px; }
.section + .section { margin-top: 14px; }
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 6px 10px;
}


/* Upcoming show card */
.show-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-md);
  padding: 10px;
}
.show-date {
  width: 58px;
  border-radius: 10px;
  background: linear-gradient(180deg, #353535, #2e2e2e);
  border: 1px solid var(--stroke);
  text-align: center;
  padding: 6px 4px;
}
.show-date .month {
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.14em;
}
.show-date .day {
  font-size: 22px;
  font-weight: 800;
}
.show-date .label {
  font-size: 10px;
  color: var(--muted);
}
.show-body h3 { margin: 0 0 4px; font-size: 14px; }
.show-body .show-meta { margin: 0 0 8px; color: var(--muted); font-size: 12px; }
.show-actions .chip {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: #4b4b4b;
  color: #fff;
  border: 1px solid var(--stroke);
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
}
.icon-btn {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  background: var(--bg-elev);
  border: 1px solid var(--stroke);
  border-radius: 10px;
  color: var(--muted);
}

/* Live sets */
.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.media-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.media-thumb img { aspect-ratio: 16/10; width: 100%; object-fit: cover; }
.media-info { padding: 8px; }
.media-info h3 { margin: 0 0 4px; font-size: 13px; }
.media-info .muted { margin: 0; font-size: 12px; color: var(--muted); }

/* Releases */
.tracklist { display: grid; gap: 8px; }
.track {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-md);
  padding: 8px;
}
.cover {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--stroke);
}
.track-info h3 { margin: 0 0 3px; font-size: 13px; }
.track-info .muted { margin: 0; font-size: 12px; color: var(--muted); }
.circle-btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: #efefef;
  color: #000;
  border: none;
}
.circle-btn:active { transform: scale(0.98); }

/* Footer */
.site-footer { text-align: center; color: var(--muted); }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 6px 0;
  font-size: 12px;
}
.brand { font-weight: 800; letter-spacing: 0.12em; }
.divider { width: 3px; height: 3px; background: var(--muted); border-radius: 50%; display: inline-block; }

/* Small adjustments on wider screens */
@media (min-width: 480px) {
  .avatar { width: 200px; height: 270px; }
}

.main {
  background: #000;   /* solid black */
  color: #fff;        /* make text white so it's readable */
  padding: 4rem 1.5rem; /* optional spacing */
  
}
.mainf {

  color: #fff;        /* make text white so it's readable */
  padding: 4rem 1.5rem; /* optional spacing */
  
}
/* =======================================
   ✅ Mobile Responsive Fixes (Overrides)
   ======================================= */

/* Prevent oversized headings on mobile */
@media (max-width: 480px) {
  h1, h2, h3 {
    font-size: clamp(20px, 6vw, 28px) !important;
    line-height: 1.2 !important;
  }

  .funky {
    font-size: 42px !important;
    top: 10px !important;
  }
}

/* Hero section scaling */
@media (max-width: 768px) {
  .hero {
    padding: 40px 20px !important;
    text-align: center !important;
    flex-direction: column !important;
  }

  .hero h2 {
    font-size: 32px !important;
  }

  .hero p {
    font-size: 16px !important;
  }

  .hero .social-links {
    justify-content: center !important;
  }
}

/* Container padding on small screens */
@media (max-width: 720px) {
  .container, 
  .containerr {
    padding: 0 16px !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Fix grid layouts collapsing */
@media (max-width: 1024px) {
  .card-grid { 
    grid-template-columns: repeat(2, 1fr) !important; 
  }
  .gallery-grid { 
    grid-template-columns: repeat(3, 1fr) !important; 
  }
}

@media (max-width: 720px) {
  .card-grid { 
    grid-template-columns: 1fr !important; 
  }
  .gallery-grid { 
    grid-template-columns: repeat(2, 1fr) !important; 
  }
  .contact .contact-items { 
    grid-template-columns: 1fr !important; 
  }
  .footer-top { 
    flex-direction: column !important; 
    gap: 12px !important; 
    align-items: flex-start !important; 
  }
}

/* Make nav toggle more touch-friendly */
@media (max-width: 720px) {
  .nav-toggle {
    display: inline-block !important;
    font-size: 20px !important;
    padding: 10px 14px !important;
  }
  .nav .menu {
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
  }
  .nav .menu.open {
    display: grid !important;
    gap: 8px !important;
  }
}

/* Footer text scaling */
@media (max-width: 480px) {
  .footer h3 { font-size: 24px !important; }
  .footer p { font-size: 13px !important; }
  .footer .social-links a {
    width: 30px !important;
    height: 30px !important;
    font-size: 14px !important;
  }
}


 .vimeo-bg-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
  }

  .vimeo-bg-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    /* Keep 16:9 aspect ratio */
    width: 177.78vh; /* 100vh * (16/9) */
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  @media (min-aspect-ratio: 16/9) {
    .vimeo-bg-wrapper iframe {
      width: 100vw;
      height: 56.25vw; /* 100vw * (9/16) */
    }
  }
  
   /* About */
    .about { margin-top: 30px; }
    .about__grid {  grid-template-columns: 1.2fr 1fr; gap: clamp(24px, 5vw, 64px); align-items: start; }
    .about__text {  font-size: clamp(14px, 2.6vw, 16px); }
    .about__aside { border-left: 1px solid #eee; padding-left: clamp(16px, 2vw, 24px);  }
    .about__photo { width: 100%; height: clamp(260px, 40vw, 520px); object-fit: cover; background: #f6f6f6;  margin-bottom: 14px; }
	.about__photo { filter: grayscale(100%); }

.about__photo:hover { transform: scale(1.03); filter: grayscale(0%); }

	
	 /* Contact */
    .contact {  padding: clamp(56px, 10svh, 100px) 0; }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 4vw, 36px); align-items: start; }
    .contact form { display: grid; gap: 12px; }
    .input, .textarea { width: 100%; padding: 12px 14px; border-radius: 6px; border: 1px solid #e6e6e6; background: #fafafa; font: inherit; color: black; }
    .textarea { min-height: 140px; resize: vertical; }
    .button { display: inline-block; padding: 12px 18px; border: 1px solid #111; color: grey; background: white; text-transform: uppercase; letter-spacing: 0.14em; font-size: 12px; border-radius: 6px; cursor: pointer; }
    .button:hover { background: #fff; color: black; }
	
	@media (max-width: 720px) {
     
      .about__grid { grid-template-columns: 1fr; }
	  .contact-grid { grid-template-columns: 1fr; }
      
    }
	
	

.site-nav__links a.active {
  color: red;   /* highlight color */
  font-weight: 600; /* make it bolder */
  border-bottom: 2px solid red; /* optional underline effect */
}

.site-nav__links a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.site-nav__links a:hover {
  color: red; /* hover color */
}

.site-nav__links a.active:hover {
  color: white;        /* highlight color */
 
}

@media (max-width: 720px) {
  .section,
  .about,
  .gallery,
  .contact,
  .footer {
    padding-left: 0px !important;
    padding-right: 0px !important;
    max-width: 100% !important;

  }
  
  .main {
   	padding: 4rem 1rem;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .copyright, 
  .credits {
    font-size: 11px; /* smaller on mobile */
    line-height: 1.4; /* better readability */
	text-align: center;
  }
}

.our-studio {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
  letter-spacing: 2px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.our-studio .arrow {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.our-studio:hover {
  color: red;
}

.our-studio:hover .arrow {
  transform: translateX(5px);
}

.wave-text span {
  display: inline-block;
  animation: wave 1.5s infinite ease-in-out;
}

.wave-text span:nth-child(1) { animation-delay: 0s; }
.wave-text span:nth-child(2) { animation-delay: 0.1s; }
.wave-text span:nth-child(3) { animation-delay: 0.2s; }
.wave-text span:nth-child(4) { animation-delay: 0.3s; }
.wave-text span:nth-child(5) { animation-delay: 0.4s; }
.wave-text span:nth-child(6) { animation-delay: 0.5s; }
.wave-text span:nth-child(7) { animation-delay: 0.6s; }
.wave-text span:nth-child(8) { animation-delay: 0.7s; }
.wave-text span:nth-child(9) { animation-delay: 0.8s; }
.wave-text span:nth-child(10) { animation-delay: 0.9s; }
.wave-text span:nth-child(10) { animation-delay: 0.10s; }

@keyframes wave {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.card-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.view-profile {
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.view-profile:hover {
  opacity: 1;
  transform: translateX(4px);
  color: #ccc;
}

/* Album images hover */
.album img {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.album img:hover {
  transform: scale(1.05);
}

/* Fullscreen overlay */
.fullscreen-view {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
}

/* The fullscreen image */
.fullscreen-view img.fullscreen-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 10px;
  cursor: grab;
  transition: transform 0.2s ease;
}

/* Close button */
.fullscreen-view .close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.fullscreen-view .close-btn:hover {
  color: #ccc;
}

/* When zoomed, show grabbing cursor */
.fullscreen-view img.fullscreen-img.zoomed {
  cursor: move;
}

/* Floating Messenger Button */
#fb-messenger-floater {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

#fb-messenger-floater a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0084FF;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

#fb-messenger-floater a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

#fb-messenger-floater img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

/* Tablet and Mobile Responsive */
@media (max-width: 1024px) {
  #fb-messenger-floater {
    bottom: 18px;
    right: 18px;
  }

  #fb-messenger-floater a {
    width: 55px;
    height: 55px;
  }

  #fb-messenger-floater img {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 768px) {
  #fb-messenger-floater {
    bottom: 15px;
    right: 15px;
  }

  #fb-messenger-floater a {
    width: 50px;
    height: 50px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
  }

  #fb-messenger-floater img {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 480px) {
  #fb-messenger-floater {
    bottom: 12px;
    right: 12px;
  }

  #fb-messenger-floater a {
    width: 45px;
    height: 45px;
  }

  #fb-messenger-floater img {
    width: 24px;
    height: 24px;
  }
}


/* Team Section */
.team-section {
  text-align: center;
  padding: 80px 20px;
  background: var(--background-color);
}

/* Titles */
.team-section h4 {
  letter-spacing: 4px;
  color: #777;
  font-weight: 400;
}

.team-section h1 {
  margin: 10px 0 50px;
  font-size: 40px;
  letter-spacing: 6px;
  font-family: 'AKIRA', sans-serif;
}

/* Container */
.team-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

/* Member */
.team-member {
  flex: 1 1 200px;
  max-width: 220px;
  text-align: center;
}

/* Image */
.team-member img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 180px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: 0.3s;
}

/* Hover */
.team-member img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Name */
.team-member p {
  margin-top: 15px;
  letter-spacing: 3px;
  font-size: 12px;
  color: #aaa;
}

/* Tablet */
@media (max-width: 768px) {
  .team-section h1 {
    font-size: 32px;
  }

  .team-container {
    gap: 30px;
  }

  .team-member {
    flex: 1 1 45%;
    max-width: 250px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .team-section {
    padding: 50px 15px;
  }

  .team-section h1 {
    font-size: 26px;
    letter-spacing: 4px;
  }

  .team-member {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .team-member img {
    max-width: 150px;
  }
}

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

.contact-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;

  transition: 0.3s;
}

.contact-image img:hover {

  transform: scale(1.02);
}

.contact-socials {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.contact-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: 0.3s;
}

.contact-socials a:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
}

/* Mobile */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-socials {
    justify-content: center;
  }
}