/* GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Montserrat:wght@300;400;600&display=swap');

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

/* GLOBAL */
body {
  background-color: #000;
  color: #f5f5f5;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

/* LAYOUT: SIDEBAR + MAIN */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100vh;
  padding: 32px 26px;
  background: rgba(0, 0, 0, 0.98);
  border-right: 1px solid #1a1a1a;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1000;
  overflow: hidden;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  color: #ffffff;
}

.site-subtitle {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #b3b3b3;
}

.nav-links {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  color: #d0d0d0;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
  border-color: #ffffff;
}

/* Language switch container */
.lang-switch {
  margin-top: 30px;
  font-size: 9px;
  color: #888;
  max-width: 190px;
}

/* Base translate container */
#google_translate_element {
  width: 100%;
}

/* Keep only the language control, hide labels + "Powered by Google" */
#google_translate_element .goog-te-gadget > span:first-child {
  display: none !important;  /* hides "Select Language" text label */
}

#google_translate_element .goog-te-gadget > span:last-child {
  display: none !important;  /* hides "Powered by Google" block */
}

/* Hide logo link too */
.goog-logo-link {
  display: none !important;
}

/* Style the compact dropdown/button */
#google_translate_element .goog-te-gadget-simple {
  background-color: #000 !important;
  border: 1px solid #333 !important;
  padding: 4px 6px !important;
  color: #ccc !important;
  width: 100% !important;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}

/* Text inside the control */
#google_translate_element .goog-te-gadget-simple span {
  color: #ccc !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 9px !important;
}

/* Dropdown arrow icon */
#google_translate_element .goog-te-gadget-simple img {
  filter: invert(1);
  opacity: 0.7;
}

/* Fallback select dropdown style */
.goog-te-combo {
  background-color: #000 !important;
  color: #fff !important;
  border: 1px solid #444 !important;
  font-size: 9px !important;
  font-family: 'Montserrat', sans-serif !important;
  padding: 3px 4px !important;
}

/* Hide Google top translation bar */
iframe.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate { 
    display: none !important;
}

body {
  top: 0 !important;
}

.sidebar-footer {
  font-size: 9px;
  color: #666;
}

/* MAIN CONTENT AREA */
.main-content {
  margin-left: 260px;
  min-height: 100vh;
  padding: 60px 7vw 60px;
}

/* HOME / LANDING */


.home-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;      
  justify-content: center;   
  padding-bottom: 120px;      
  text-align: center;
}

.hero-content {
  max-width: 520px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}

.hero-subtitle {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d0d0d0;
  margin-bottom: 10px;
}

.hero-text {
  font-size: 13px;
  color: #dcdcdc;
}

/* GENERIC PAGE STYLES */
.page-heading {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 3px;
  border-bottom: 1px solid #2a2a2a;
  padding-bottom: 10px;
  margin-bottom: 24px;
}

.section-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #aaaaaa;
  margin-bottom: 8px;
}

/* ABOUT PAGE */
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: 40px;
  align-items: flex-start;
}

.about-portrait {
  width: 100%;
  height: 320px;
  border: 1px solid #333;
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-portraint img,
.about-img {
    width: 100%;
    height: 300%;
    object-fit: cover;
    display: block;
}
.about-text {
  font-size: 13px;
  color: #d6d6d6;
}

/* MEDIA PAGE */
.media-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.media-block-title {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #888;
  margin-bottom: 6px;
}

.media-image {
  width: 100%;
  height: 260px;
  border: 1px solid #333;
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #777;
}

.media-video iframe {
  width: 100%;
  height: 260px;
  border: 1px solid #333;
  background: #000;
}

.media-caption {
  font-size: 11px;
  color: #bfbfbf;
  margin-top: 6px;
}

/* RESUME PAGE */
.resume-headshot {
  width: 180px;
  height: 220px;
  border: 1px solid #333;
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #777;
  margin-bottom: 18px;
}

.resume-text {
  font-size: 12px;
  color: #d4d4d4;
  margin-bottom: 18px;
}

.resume-viewer {
  width: 100%;
  height: 420px;
  border: 1px solid #333;
  background: #000;
  margin-bottom: 12px;
}

.resume-viewer iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.resume-download {
  display: inline-block;
  margin-top: 6px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 14px;
  border: 1px solid #fff;
  transition: all 0.2s ease;
}

.resume-download:hover {
  background: #fff;
  color: #000;
}

/* CONTACT PAGE */
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.contact-links a {
  border-bottom: 1px solid #444;
  padding-bottom: 3px;
  color: #f5f5f5;
}

.social-icon {
  display: inline-block;
  margin-right: 12px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-icon svg {
  height: 22px;
  width: 22px;
}

.social-icon:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

/* Social links layout */
.social-links {
  display: flex;
  justify-content: flex-start;  
  align-items: center;
  gap: 15px;                 /* space between icons */
  margin: 30px 0 25px 0;          /* space above them */
}

/* Optional: add hover glow */
.social-icon:hover svg {
  stroke: #ffffff;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.5));
}


.contact-form {
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 11px;
}

.contact-form label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 9px;
  color: #b3b3b3;
}

.contact-form input,
.contact-form textarea {
  background: #050505;
  border: 1px solid #262626;
  padding: 8px 10px;
  color: #f5f5f5;
  font-family: inherit;
  font-size: 11px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ffffff;
}

.contact-form button {
  margin-top: 6px;
  padding: 8px 14px;
  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.contact-form button:hover {
  background: #ffffff;
  color: #000;
}

/* MOBILE: reset hero positioning */
.home-hero::before {
    left: 0 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
}

/* HAMBURGER (MOBILE) */
.menu-toggle {
  display: none;
  width: 26px;
  height: 18px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: #ffffff;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* MOBILE / TABLET */
@media (max-width: 900px) {
  .sidebar {
    position: fixed;
    width: 100%;
    height: 64px;
    padding: 14px 18px;
    flex-direction: row;
    align-items: center;
    border-right: none;
    border-bottom: 1px solid #151515;
  }

  .brand {
    gap: 2px;
  }

  .site-title {
    font-size: 14px;
    letter-spacing: 3px;
  }

  .site-subtitle {
    font-size: 8px;
    letter-spacing: 2px;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav-links {
    position: fixed;
    top: 64px;
    right: 0;
    width: 70%;
    height: calc(100vh - 64px);
    padding: 24px 22px;
    background: #000;
    flex-direction: column;
    gap: 14px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-left: 1px solid #151515;
    font-size: 10px;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .lang-switch {
    margin-top: 20px;
  }

  .sidebar-footer {
    display: none;
  }

  .main-content {
    margin-left: 0;
    padding: 80px 7vw 40px;
  }

  .home-hero {
    align-items: center;          
    justify-content: center;
    padding: 80px 24px 40px;      
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }
}

  .about-layout {
    grid-template-columns: 1fr;
  }

  .resume-headshot {
    margin-top: 10px;
  }
}
