/*
Theme Name: CPROJEKT Architecture - Final Edition
Version: 5.6.0
*/

:root {
  --header-gold: #f4e6be;    /* Pastelová zlatavá */
  --menu-champagne: #f7f3e8; /* Champagne */
  --content-offwhite: #fafaf8; /* Lomená bílá */
  --accent-gold: #d4af37;    /* Akcentní zlatá */
  --text-dark: #1a1a1a;      /* Antracitová pro text */
  --header-height: 100px;
  --sidebar-width: 300px;
}

/* 1. ZÁKLADNÍ NASTAVENÍ A TYPOGRAFIE */
body {
    margin: 0; 
    padding: 0;
    background-color: var(--content-offwhite) !important;
    font-family: 'Didact Gothic', 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    font-weight: 300;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
}

/* 2. FIXNÍ HLAVIČKA */
.site-header {
  height: var(--header-height);
  width: 100%;
  background-color: var(--header-gold) !important;
  position: fixed; top: 0; left: 0; z-index: 1000;
  display: flex; align-items: center; padding: 0 40px;
  box-sizing: border-box;
  border-bottom: 1.5px solid #ffca18;
}

.site-branding img { max-height: 70px !important; width: auto; display: block !important; }
.site-title { display: none; } 

/* 3. SIDEBAR - CHAMPAGNE */
.site-sidebar {
  width: var(--sidebar-width);
  height: calc(100vh - var(--header-height));
  background-color: var(--menu-champagne) !important;
  position: fixed; top: var(--header-height); left: 0;
  padding: 40px; 
  box-sizing: border-box; 
  z-index: 900;
  border-right: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column; /* Umožní kontaktům být dole */
}

/* MENU V SIDEBARU */
.nav-primary { list-style: none; padding: 0; margin: 20px 0; }
.nav-primary li { margin-bottom: 20px; position: relative; }

.nav-primary a {
  font-family: 'Sulphur Point', sans-serif;
  text-decoration: none;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  transition: 0.3s;
}

.nav-primary a:hover { color: var(--accent-gold) !important; }

/* Vnořené menu */
.nav-primary ul.sub-menu {
  display: none; 
  list-style: none;
  padding-left: 20px;
  margin-top: 10px;
  border-left: 1px solid var(--accent-gold);
}

.nav-primary li.is-open > ul.sub-menu { display: block !important; visibility: visible; opacity: 1; }

.submenu-toggle {
  background: none; border: none; cursor: pointer;
  color: var(--accent-gold); font-size: 1.1rem; padding: 0 5px;
}

/* 4. SEKCE KONTAKTŮ - ELEGANTNÍ DOLE */
.sidebar-contact {
  margin-top: auto; /* Tlačí kontakty dolů */
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.03);
}

.contact-details {
  font-size: 0.8rem;
  line-height: 1.8;
  color: #666;
  letter-spacing: 0.5px;
}

.contact-link {
  display: block;
  text-decoration: none;
  color: var(--text-dark);
  margin-bottom: 8px;
  transition: color 0.3s;
}

.contact-link:hover { color: var(--accent-gold) !important; }

.contact-address { font-style: normal; display: block; margin-top: 10px; }

.sidebar-socials {
  margin-top: 25px;
  font-size: 0.75rem;
  letter-spacing: 2px;
}

.sidebar-socials a { text-decoration: none; color: var(--text-dark); }
.sidebar-socials a:hover { color: var(--accent-gold); }
.social-separator { margin: 0 8px; color: #ccc; }

/* 5. OBSAH A OBRÁZKY */
.site-content {
  margin-left: var(--sidebar-width);
  margin-top: var(--header-height);
  padding: 60px 8%;
  width: calc(100% - var(--sidebar-width));
  box-sizing: border-box;
}

.site-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 40px auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* 5. MOBILNÍ HAMBURGER */
.hamburger {
  display: none; /* Skryto na desktopu */
  cursor: pointer; background: none; border: none; padding: 10px;
}
.hamburger-box { width: 30px; height: 24px; display: inline-block; position: relative; }
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 30px; height: 2px; background-color: var(--text-dark);
  position: absolute; transition: transform 0.15s ease;
}
.hamburger-inner { top: 50%; margin-top: -1px; }
.hamburger-inner::before { content: ""; top: -10px; }
.hamburger-inner::after { content: ""; bottom: -10px; }

/* 6. MOBILNÍ VERZE (max-width: 1024px) */
@media (max-width: 1024px) {
  .site-header { 
    height: auto; padding: 20px; 
    flex-direction: row; flex-wrap: wrap; 
    justify-content: space-between; 
  }
  .site-branding { 
    flex-direction: column; align-items: center; 
    width: auto; text-align: center; 
  }
  .site-branding img { margin-right: 0; margin-bottom: 10px; }
  .site-title-text { font-size: 32px; } /* Menší na mobilu */

  .header-mobile-contact {
    order: 2; width: 100%; text-align: center; margin-top: 15px;
    font-family: 'Sulphur Point', sans-serif; font-size: 0.9rem;
  }

  .hamburger { display: block; order: 1; }

  .site-sidebar { 
    display: none; /* Skryto, dokud se nerozbalí přes JS */
    position: fixed; width: 100%; left: 0; top: var(--header-height); height: 100vh;
  }
  .site-sidebar.is-open { display: flex; }
  .site-content { margin-left: 0; width: 100%; padding: 40px 20px; }
}}