/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/

/* Navigation Panel από αριστερά */
.nav_panel {
    transform: translateX(-100%);
    left: 0 !important;
    right: auto !important;
}

.nav_panel.show {
    transform: translateX(0);
}

/* Close button position adjustment */
.nav_panel .closebt {
    left: 25px !important;
    right: auto !important;
}

/* Layer positioning */
.layer {
    z-index: 9998;
}

/* Hero Heading Style */
.hero .wrapper h1 {
    font-family: 'Google Sans', sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .wrapper small {
    font-family: 'Google Sans', sans-serif;
    font-weight: 400;
    letter-spacing: 3px;
    opacity: 0.9;
}

/* Hero Description - Smaller and Less Bold */
.hero .wrapper .hero-description {
    font-family: 'Google Sans', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
    max-width: 90%;
    margin: 0 auto;
}

/* Global Font - All Text Uses Google Sans */
* {
    font-family: 'Google Sans', sans-serif !important;
}

/* All Headers Use Google Sans */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Google Sans', sans-serif !important;
    font-weight: 600;
}

/* Body and Paragraph Text */
body {
    font-family: 'Google Sans', sans-serif !important;
    font-weight: 400;
}

p, span, div, li, td, th {
    font-family: 'Google Sans', sans-serif !important;
    font-weight: 400;
}

a {
    font-family: 'Google Sans', sans-serif !important;
    font-weight: 500;
}

/* Buttons */
.btn_1, .btn_1 a {
    font-family: 'Google Sans', sans-serif !important;
    font-weight: 600 !important;
}

/* Form Elements */
input, textarea, select {
    font-family: 'Google Sans', sans-serif !important;
    font-weight: 400;
}

/* Navigation */
nav, nav a, nav ul, nav li {
    font-family: 'Google Sans', sans-serif !important;
}

/* Hero Video Background */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
    object-fit: cover;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 18px;
    font-weight: 500;
    z-index: -1;
}

.image-placeholder {
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 16px;
    font-weight: 500;
    border: 1px dashed #ccc;
    min-height: 200px;
}

.hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
    object-fit: cover;
}

/* Navigation Panel Address */
.address_panel {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 135px;
  background-color: #faf8f5;
  padding: 20px;
}

.address-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
  width: 100%;
  max-width: 280px;
  margin-left: auto;
  margin-right: 20px;
}

.address-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 12px;
  text-align: right;
  width: 100%;
}

.phone-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  text-align: right;
  width: 100%;
  max-width: 220px;
  margin-left: auto;
  margin-right: 0;
}

.address-item i,
.phone-item i {
  font-size: 18px;
  color: #978667;
  margin-top: 2px;
  flex-shrink: 0;
}

.address-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-end;
}

.phone-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.address-text .street,
.address-text .area,
.address-text .city {
  font-size: 14px;
  color: #333;
  line-height: 1.3;
  font-weight: 500;
}

.address-text .area,
.address-text .city {
  font-size: 13px;
  color: #666;
  font-weight: 400;
}

.phone-text a {
  font-size: 15px;
  color: #978667;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone-text a:hover {
  color: #24262d;
}

/* Right alignment for all address elements */
.address-content > * {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

/* Responsive alignment for mobile */
@media (max-width: 767px) {
  .address_panel {
    height: 120px;
    padding: 15px;
  }
  
  .address-content {
    gap: 15px;
    max-width: 260px;
    margin-right: 15px;
  }
  
  .address-item i,
  .phone-item i {
    font-size: 16px;
  }
  
  .address-text .street {
    font-size: 13px;
  }
  
  .address-text .area,
  .address-text .city {
    font-size: 12px;
  }
  
  .phone-text a {
    font-size: 14px;
  }
}

/* Legacy logo panel styles for footer */
.logo_panel {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 135px;
  background-color: #faf8f5;
  padding: 20px;
}

.logo_panel img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Header Layout */
.header-content {
    position: relative;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: visible;
}

/* Navigation στέκεται αριστερά */
.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1001;
}

.nav-left .btn_1 {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    margin-left: 10px;
}

/* Logo στο κέντρο */
.logo-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 40px;
}

.logo-center img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Language Switcher - Ultra Minimal Dropdown */
.nav-right {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.language-switcher {
    position: relative;
    margin-left: 20px;
}

.language-select-minimal {
    background: none;
    border: 1px solid #978667;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    padding: 4px 20px 4px 8px;
    border-radius: 3px;
    font-family: inherit;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'><path fill='rgba(255,255,255,0.7)' d='m0 0 2 2 2-2z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 6px center;
    background-size: 8px;
    transition: all 0.2s ease;
}

.language-select-minimal:hover {
    color: white;
    border-color: #978667;
    background-color: rgba(151, 134, 103, 0.1);
}

.language-select-minimal:focus {
    outline: 1px solid #978667;
    outline-offset: 1px;
    border-color: #978667;
}

.language-select-minimal option {
    background: #333;
    color: white;
    padding: 8px;
}

/* Fixed header state - adapt colors for white background */
.header-fixed .language-select-minimal {
    border-color: #978667;
    color: #666;
    background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'><path fill='%23666' d='m0 0 2 2 2-2z'/></svg>");
}

.header-fixed .language-select-minimal:hover {
    color: #333;
    border-color: #978667;
    background-color: rgba(151, 134, 103, 0.1);
}

.header-fixed .language-select-minimal:focus {
    outline: 1px solid #978667;
    border-color: #978667;
}

.header-fixed .language-select-minimal option {
    background: white;
    color: #333;
    padding: 8px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .header-content {
        height: 60px;
    }
    
    .nav-left {
        gap: 15px;
        margin-left: 0;
        padding-left: 0;
    }
    
    .nav-left .btn_1 {
        padding: 10px 18px;
        font-size: 13px;
        margin-left: 8px;
    }
    
    .logo-center {
        width: 70px;
        height: 35px;
    }
    
    .logo-center img {
        max-width: 100%;
        max-height: 100%;
    }
    
    .nav-right {
        margin-left: 15px;
    }
    
    .language-switcher {
        margin-left: 15px;
    }
    
    .language-select-minimal {
        font-size: 13px;
        padding: 3px 18px 3px 6px;
        border: 1px solid #978667;
    }
    
    .header-fixed .language-select-minimal {
        border-color: #978667;
        color: #666;
    }
}

@media (max-width: 480px) {
    /* Mobile: Navigation δεξιά, Logo κέντρο */
    .header-content {
        position: relative;
        height: 60px;
    }
    
    .nav-left {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        gap: 10px;
        margin-left: 0;
        padding-left: 0;
        margin-right: 0;
        padding-right: 0;
    }
    
    .nav-left .btn_1 {
        padding: 6px 12px;
        font-size: 11px;
        margin-left: 5px;
        margin-right: 0;
    }
    
    .logo-center {
        position: absolute;
        left: 50%;
        top: 55%;
        transform: translate(-50%, -50%);
        z-index: 999;
    }
    
    .logo-center {
        width: 60px;
        height: 30px;
    }
    
    .logo-center img {
        max-width: 100%;
        max-height: 100%;
    }
    
    .nav-right {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        margin-left: 0;
        margin-right: 0;
    }
    
    .language-switcher {
        margin-left: 10px;
    }
    
    .language-select-minimal {
        font-size: 12px;
        padding: 2px 16px 2px 4px;
        border: 1px solid #978667;
    }
    
    .header-fixed .language-select-minimal {
        border-color: #978667;
        color: #666;
    }
}

/* Hero Video Responsive */
@media (max-width: 767px) {
    .hero-video, .hero-image {
        min-width: auto;
        min-height: auto;
        width: 100%;
        height: 100%;
    }
    
    .hero .wrapper h1 {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }
    
    .hero .wrapper .hero-description {
        font-size: 0.85rem !important;
        max-width: 95%;
    }
}
