
/*=============================RESET========================*/

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
* {
    margin: 0;
    padding: 0;
    font: inherit;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body, html {
    height: 100%;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture,
svg {
  max-width: 100%;
  display: block;
} 

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
   scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/*-----------------------------RESET END--------------------------------*/

/*-----------------------------FONT VARIABLES------------------------------------*/

/* === Fonts Setup === */



:root {
  --font-family1: "Noto Serif", serif;
  --font-family2: "Roboto", sans-serif;


  /* Font Sizes */
  --fs-body: 18px;
  --fs-h1: 34px;
  --fs-h2: 28px;

  /* Font Weights */
  --fw-normal: 400;
  --fw-bold: 600;
}

/* === Responsive Font Variables === */
@media (min-width: 768px) {
  :root {
    --fs-body: 18px;
    --fs-heading: 32px;
  }
}

@media (min-width: 1200px) {
  :root {
    --fs-body: 20px;
    --fs-heading: 36px;
    --fw-bold: 800;
  }
}

p{
  font-family: var(--font-family1);
  font-weight: var(--fw-normal);
  font-size: var(--fs-body);
}

h1{
  font-family: var(--font-family2);
  font-weight: var(--fw-bold);
  font-style: italic;
  font-size: var(--fs-body);
}

h2{
  font-family: var(--font-family2);
  font-weight: var(--fw-bold);
  font-style: italic;
  font-size: var(--fs-h2);
}

h3{
font-family: var(--font-family2);
font-weight: var(--fw-bold);
font-style: italic;
font-size: var(--fs-h1);
}

h4{
font-family: var(--font-family2);
font-size: var(--fs-h2);
}

/* Πως τα βάζω στο αρχείο

body {
  font-family: var(--font-base);
  font-size: var(--fs-body);
  font-weight: var(--fw-normal);
}

*/

/*----------------------------FONTS VARIABLES END---------------------------------*/

/*----------------------------COLOR VARIABLES---------------------------*/

:root {
  /* Κύρια Χρώματα */
  --color-primary: rgb(225, 197, 38);        /*ΧΡΥΣΟ*/
  --color-secondary: rgb(225, 197, 38, 0.3);      /*ΚΙΤΡΙΝΟ*/
  --color-third: #ecc97f;

  /* Κείμενο & Υπόβαθρο */
  --color-text: rgb(25, 24, 24);           
  --color-bg: #fff;

  /* Ειδικές Καταστάσεις */
  --color-error: #e74c3c;
  --color-warning: #f1c40f;
}


/*------------------------COLOR VARIABLES END---------------------------*/

/*-----------------------------NAV BAR-----------------------------------*/

/* Navigation bar */
.logo{
  display: flex;
  align-items: center;
  color: var(--color-primary);
}

.logo img {
  height: 80px;
  padding: 5px 0 10px 20px;
}

header {
  height: 80px;
  background-color: var(--color-text);
  padding: 0 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;

}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;

}

.nav_ul {
  display: flex;
  gap: 20px;
  margin: auto;
  font-size: 1.3rem;
  font-family: var(--font-family1);
}

.li_ul, a {
  list-style: none;
  text-decoration: none;
  color: var(--color-bg);
}

.li_ul:hover, a:hover {
  color:var(--color-third);
}

.menu {
  display: none;
  cursor: pointer;
}

.bars {
  margin: 5px auto;
  width: 25px;
  background-color: var(--color-bg);
  height: 3px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 1100px) {
  .menu {
    display: block;
    padding-right: 20px;
  }
  .menu.active .bars:nth-child(2) {
    opacity: 0;
  }
  .menu.active .bars:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu.active .bars:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  nav {
    position: fixed;
    top: 75px;
    left: 100%;
    flex-direction: column;
    margin: 5px 0;
    background-color: #ecc97f;
    width: 100%;
    z-index: 100;
  }
  nav.active {
    left: 0;
  }
  .nav_ul {
    flex-direction: column;
    margin: 10px 0;
    font-family: var(--font-family1);
  }
  .social_icons, .fa-bars {
    padding-bottom: 10px;
  }
  .social_icons a span, .fa-bars a span {
    padding-left: 10px;
    display: inline-block !important;
  }
  .li_ul:hover, a:hover {
    color: var(--color-text);
  }

}

@media only screen and (max-width: 768px){
  .logo h4{
    display: none;
  }
}

.social_icons, .fa-bars {
  font-size: 2rem;
  display: flex;
  padding-left: 5px;
}

.social_icons a, .fa-bars a {
  text-decoration: none;
  color: var(--color-bg);
  padding: 0 15px;
}

.social_icons a span, .fa-bars a span {
  display: none;
}

.social_icons a:hover, .fa-bars a:hover {
  transition: 0.5s;
}

.fa-square-facebook:hover{
  color: rgb(24, 119, 242);
}

.fa-instagram:hover{
  color: #E4405F;
}
.fa-tiktok:hover{
  color: #25F4EE;
}

/*-----------------------------NAV BAR END--------------------------------*/

section {
  padding: 30px 20px;
  max-width: 1280px;
  margin: auto;
  text-align: center;
}

section h2{
  font-size: var(--fs-h2);
  color: var(--color-text);
}

/*-----------------------------HERO SECTION--------------------------------*/
.hero_section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    height: 90%;
    max-width: 100%;
    color: var(--color-text);
    /* position: relative; */
    padding: 0;
    background: linear-gradient(to right, #ffffff, #ecd9ac, #ecc97f);


}


.column_right{
    flex: 1 1 300px;
    height: 100%;

    display: flex;
    justify-content: center;  
    align-items: center;

 
}

.column_left{
    flex: 1 1 300px;

    display: flex;                
    flex-direction: column;     
    justify-content: space-between;
    background-image: url("images/logo1.png");
    background-repeat: no-repeat;
    background-size: 50% auto ; 
    background-position: center;
    padding: 100px 0px;

}

.hero_section h1 {
    margin-bottom: 15px;
    color: var(--color-text);
    text-align: left;
    padding-left: 80px;
}
  
.hero_section h3 {
  text-align: left;
  padding-left: 80px;
}
.hero_section  p {
    font-size: var(--fs-body);
    margin-bottom: 20px;
    padding-left: 80px;
    text-align: left;
}
  

video{
    height: 90%;
    width: 80%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    object-fit: cover;
    border-radius: 3%;
}

.button_cont a{
  font-weight: 600;
}

.btn {
  display: inline-block;
  padding: 15px 15px;
  margin-top: 40px;
  border: 1px solid rgb(0, 0, 0);
  background-color: var(--color-primary);
  border-radius: 2em;
  text-decoration: none;
  font-family: var(--font-family2);
  font-weight: 300;
  color: var(--color-text);
  transition: all 0.3s;

}

.btn:hover {
  color: var(--color-text);
  transform: scale(1.05);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);

}




@media (max-width: 768px) {
    .hero_section{
      flex-direction: column;
      padding: 0;
      margin-bottom: 20px;
    }
    .column_right{
      position: absolute;
      width: 100%;
      height: 90%;

    }

    .column_left{
      z-index: 1;
      background-image: none;

    }

    .hero_text{
      background-color: rgb(0, 0, 0, 0.4);
      color: var(--color-bg);

    }
    video{
      height: 100%;
      width: 100%;
      object-fit: cover;
      border-radius: 0;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0);

    }
    .hero_section h1 {
      padding-left: 15px;
      color: var(--color-bg);
    }
    .hero_section p{
      padding-left: 15px;
    }
    .column_left h3{
      color: var(--color-primary);
      padding-left: 15px;
      text-align: center;
    }

}




/*-----------------------------HERO SECTION END--------------------------------*/

/*-----------------------------ABOUT SECTION----------------------------------*/

.about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.about-text {
  flex: 1 1 400px;
  padding: 5px 20px;
  
}

.about-text h2 {
  margin-bottom: 20px;
  color: var(--color-text);
}

.about-text p {
  color: var(--color-text);
  font-weight: var(--fw-normal);
}

.about-image {
  flex: 1 1 400px;
  padding: 20px;
}

.about-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    padding: 0;

  }
  .about-text{
    flex: 0;
  }
  .about-image {
    flex: 0;
    padding: 10px;
  }
}




/*---------------------------ABOUT SECTION END---------------------------------*/
/*---------------------------SOCIAL MEDIA--------------------------------------*/


.social-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--color-secondary);
  max-width: 100%;
}

.social-section h2 {
  margin-bottom: 10px;
}

.social-section p {
  color: var(--color-text);
  margin-bottom: 30px;
  max-width: 500px;
  /*font-family: "Noto Serif", serif;*/
  font-weight: var(--fw-normal);
  font-size: var(--fs-body);

}

.social-links {
  display: flex;
  gap: 30px;
}

.social-links a {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-secondary);
  transition: transform 0.3s ease, background 0.3s ease;
}

.social-links a i{
  font-size: 50px;
  
}

.social-links a:hover {
  background-color: var(--color-bg);
  transform: scale(1.2);
}

.contact-info{
  margin-top: 20px;
}

.contact-info span{
  margin-top: 60px;
  color: var(--color-text);
  font-family: var(--font-family1);
  font-weight: var(--fw-bold);
  font-size: var(--fs-body);

}



.contact-info a {
  color: var(--color-text);
  text-decoration: none;

}



/*--------------------------SOCIAL MEDIA END-----------------------------------*/

/*---------------------------GALLERY SECTION-----------------------------------*/

.gallery h2{
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  height: 450px;
  object-fit: cover;
}


/*---------------------------GALLERY SECTION END-------------------------------*/
/*---------------------------ΥΠΗΡΕΣΙΕΣ-----------------------------------------*/


.services-section {
  background-color: var(--color-secondary);
  max-width: 100%;
}

.services-section h2 {
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 0;
  background-color: var(--color-bg);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-item i {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 15px;
}

.service-item p {
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  color: var(--color-text);
}


/*---------------------------ΥΠΗΡΕΣΙΕΣ END-------------------------------------*/

/*---------------------------FORM---------------------------------------------*/

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
  padding-bottom: 50px;
}

input, textarea, button {
  padding: 12px;
  font-size: var(--fs-body);
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: var(--font-family1);
}


/* Spinner */
.spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #2e7d32;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* Modal βασικά */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background: white;
  padding: 35px 40px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transform: scale(0.8);
  animation: popUp 0.4s ease forwards;
}

.modal-content h2 {
  color: #2e7d32;
  margin: 15px 0 10px;
  font-size: 26px;
}

.modal-content p {
  color: #444;
  margin-bottom: 20px;

}


.modal-content button {
  background: #2e7d32;
  color: white;
  border: none;
  padding: 12px 22px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.modal-content button:hover {
  background: #1b5e20;
}

/* Animations */
@keyframes popUp {
  to { transform: scale(1); }
}

@keyframes fadeIn {
  from { background: rgba(0,0,0,0); }
  to { background: rgba(0,0,0,0.6); }
}

#contact {
  max-width: 100%;
}

#contact h2{
  margin-bottom: 40px;
}

label a{
  color: #f1c40f;
}

/*----------------------------FORM END----------------------------------------*/

/*----------------------------FOOTER------------------------------------------*/

footer {
  background-color: var(--color-text);
  color: var(--color-bg);
  padding: 30px 20px;
  text-align: center;
  
}

.socials a {
  color: var(--color-primary);
  margin: 0 10px;
  text-decoration: none;
}

.socials a:hover {
  text-decoration: underline;
}

/*-----------------------------FOOTER END-------------------------------------*/


  button {
    background-color: var(--color-text);
    color: var(--color-bg);
    border: none;
    cursor: pointer;
  }


  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .btn {
      padding: 10px 20px;
      font-size: 0.9rem;
    }
  
    section {
      padding: 20px 15px;
    }
  
    form {
      width: 90%;
    }
  }

