/* 
 * Zayas.do - Pure Vanilla CSS
 * Sleek, high-performance static reconstruction of the original WordPress theme.
 */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* Design Tokens */
  --bg-color: #e3e3d8;
  --header-bg: #000000;
  --text-color: #797979;
  --heading-color: #2e2e2e;
  --accent-color: #525252;
  
  --nav-text: #b7b7b7;
  --nav-text-hover: #636363;
  --nav-text-active: #848484;
  
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Raleway', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --max-width: 1300px;
  --header-height: 50px;
}

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

html, body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 25px;
  font-weight: 400;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

/* Typography styles */
p, span, li, input, textarea, button {
  font-family: var(--font-body);
}

p {
  letter-spacing: 0.8px;
  margin-bottom: 15px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  color: var(--heading-color);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

h1 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 20px;
}

h2 {
  font-size: 26px;
  margin-bottom: 15px;
}

h3 {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 10px;
}

h5 {
  font-size: 12px;
  line-height: 22px;
}

h6 {
  font-size: 16px;
  text-transform: none;
  font-weight: 700;
}

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

a:hover {
  color: var(--heading-color);
}

/* Layout wrappers */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.container_inner {
  padding-top: 141px; /* matches the original page container padding */
  padding-bottom: 60px;
}

/* Header section */
.page_header {
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.page_header.scrolled {
  background-color: rgba(0, 0, 0, 1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border-bottom-color: transparent;
}

.header_inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.header_inner_left {
  display: flex;
  align-items: center;
  gap: 15px;
  height: 100%;
}

/* Logo */
.logo_wrapper {
  height: 100%;
  display: flex;
  align-items: center;
}

.q_logo img {
  height: 30px;
  width: auto;
  display: block;
}

/* Navigation menu */
.main_menu {
  display: flex;
  align-items: center;
  height: 100%;
}

.main_menu > ul {
  display: flex;
  list-style: none;
  height: 100%;
}

.main_menu > ul > li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.main_menu > ul > li > a {
  color: var(--nav-text);
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0 15px;
  line-height: var(--header-height);
  display: block;
  transition: color 0.3s ease;
}

.main_menu > ul > li:hover > a {
  color: var(--nav-text-hover);
}

.main_menu > ul > li.active > a {
  color: var(--nav-text-active);
}

/* Dropdown Menu */
.main_menu li .second {
  position: absolute;
  top: var(--header-height);
  left: 0;
  background-color: var(--header-bg);
  min-width: 200px;
  display: none;
  border: 1px solid rgba(204, 204, 204, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  list-style: none;
  padding: 10px 0;
  z-index: 1001;
}

.main_menu li:hover .second {
  display: block;
}

.main_menu li .second li {
  width: 100%;
}

.main_menu li .second li a {
  color: var(--nav-text);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 20px;
  display: block;
  transition: all 0.3s ease;
  text-transform: capitalize;
}

.main_menu li .second li a:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
}

/* Social icons header widget */
.header_inner_right {
  display: flex;
  align-items: center;
}

.social_widget {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social_widget a {
  color: #b6b4b4;
  font-size: 16px;
  transition: color 0.3s ease;
}

.social_widget a:hover {
  color: #fff;
}

/* Hero Section */
.hero_section {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 0;
}

/* Inner Page Title Header banner */
.title_outer {
  position: relative;
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--header-height);
}

.title_outer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.title_holder {
  position: relative;
  z-index: 2;
  text-align: center;
}

.title_holder h1 {
  color: #ffffff;
  font-size: 38px;
  font-weight: 900;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.6);
}

/* Home sections common */
.home_section {
  padding: 90px 0;
  text-align: center;
}

.home_section.dark {
  background-color: rgba(0,0,0,0.03);
}

.section_title {
  margin-bottom: 40px;
}

.section_title h1, .section_title h2 {
  font-size: 30px;
  font-weight: 900;
  position: relative;
  display: inline-block;
  color: var(--heading-color);
}

/* Responsive grids */
.grid_3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.grid_2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Spotify embedded elements */
.spotify_embed {
  background-color: transparent;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.spotify_embed:hover {
  transform: translateY(-4px);
}

/* YouTube embedded element */
.video_embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.video_embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Instagram section */
.instagram_grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 30px;
}

.instagram_item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.instagram_item:hover img {
  transform: scale(1.08);
}

.follow_instagram_btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #408bd1;
  color: #fff;
  padding: 12px 30px;
  border-radius: 4px;
  font-family: var(--font-primary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  transition: background-color 0.3s ease;
}

.follow_instagram_btn:hover {
  background-color: #3576b2;
  color: #fff;
}

/* Footer Section */
footer {
  background-color: var(--header-bg);
  padding: 60px 0;
  color: #aaa;
  text-align: center;
}

.footer_inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer_socials {
  display: flex;
  gap: 15px;
}

.footer_socials a {
  color: #b6b4b4;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer_socials a:hover {
  color: #fff;
}

.footer_copyright {
  font-size: 11px;
  line-height: 18px;
}

.footer_copyright a {
  color: #aaa;
  font-weight: 600;
  text-decoration: underline;
}

.footer_copyright a:hover {
  color: #fff;
}

/* Bio Page styling */
.bio_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* Slider Bio */
.bio_slider_wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.bio_slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.bio_slide {
  min-width: 100%;
  height: 100%;
}

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

/* Slider controls */
.slider_nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 20px;
  padding: 15px 10px;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s;
}

.slider_nav:hover {
  background-color: rgba(0,0,0,0.8);
}

.slider_nav.prev {
  left: 0;
  border-radius: 0 4px 4px 0;
}

.slider_nav.next {
  right: 0;
  border-radius: 4px 0 0 4px;
}

/* Bio details */
.bio_text_wrapper {
  padding-left: 10px;
}

.bio_text_wrapper h4 {
  font-size: 16px;
  margin-bottom: 25px;
  color: var(--heading-color);
}

/* News/Press layout */
.news_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.news_card {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.news_card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.news_card_img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}

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

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

.news_card_content {
  padding: 27px 32px 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news_card_date {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-color);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.news_card_title {
  font-size: 15px;
  line-height: 22px;
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 15px;
}

.news_card_link {
  margin-top: auto;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-color);
  letter-spacing: 0.5px;
}

.news_card:hover .news_card_link {
  color: var(--heading-color);
}

/* Contact Page Form */
.contact_columns {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 800px;
  margin: 0 auto;
}

.contact_info {
  text-align: center;
  margin-bottom: 50px;
}

.contact_info p {
  font-size: 16px;
}

.contact_form_wrapper {
  background-color: transparent;
}

.form_group {
  margin-bottom: 20px;
}

.form_group label {
  display: block;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.form_control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background-color: rgba(255, 255, 255, 0.3);
  color: #555;
  font-size: 14px;
  border-radius: 4px;
  outline: none;
  transition: all 0.3s;
}

.form_control:focus {
  border-color: var(--accent-color);
  background-color: rgba(255, 255, 255, 0.7);
}

textarea.form_control {
  resize: vertical;
  min-height: 150px;
}

.submit_btn {
  background-color: var(--heading-color);
  color: #fff;
  border: 1px solid var(--heading-color);
  padding: 12px 35px;
  font-family: var(--font-primary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  width: auto;
  display: inline-block;
}

.submit_btn:hover {
  background-color: transparent;
  color: var(--heading-color);
}

/* Back to top button */
#back_to_top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: rgba(0,0,0,0.6);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

#back_to_top.show {
  opacity: 1;
  visibility: visible;
}

#back_to_top:hover {
  background-color: #000;
}

/* Loader Overlay */
.ajax_loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.ajax_loader.fade_out {
  opacity: 0;
  visibility: hidden;
}

.ajax_loader img {
  width: 100px;
  height: auto;
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.02); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

/* Mobile Menu controls */
.mobile_menu_btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #c9c9c9;
  cursor: pointer;
}

/* Responsive media queries */
@media only screen and (max-width: 1000px) {
  .container_inner {
    padding-top: 100px;
  }
  
  .mobile_menu_btn {
    display: block;
  }
  
  .main_menu {
    display: none; /* hidden on tablet/mobile, logic will be handled by mobile overlay */
  }
  
  .grid_3col {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .news_grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .bio_container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media only screen and (max-width: 768px) {
  .social_widget {
    display: none;
  }

  .grid_3col, .grid_2col, .news_grid {
    grid-template-columns: 1fr;
  }
  
  .instagram_grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .title_outer {
    height: 200px;
  }
}

@media only screen and (max-width: 480px) {
  .instagram_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Navigation Overlay */
.mobile_nav_overlay {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background-color: #000;
  z-index: 998;
  display: flex;
  flex-direction: column;
  padding: 30px;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  overflow-y: auto;
}

.mobile_nav_overlay.open {
  transform: translateX(0);
}

.mobile_nav_menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile_nav_menu li a {
  color: #e0e0e0;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile_nav_menu li a:hover,
.mobile_nav_menu li.active > a {
  color: #7f7f7f;
}

.mobile_sub_menu {
  list-style: none;
  padding-left: 20px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile_sub_menu li a {
  font-size: 14px;
  text-transform: capitalize;
  border-bottom: none;
  padding: 5px 0;
}
