
html {
  scroll-behavior: smooth;
}

body {
    font-family: Roboto, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--mdc-theme-background);
    color: var(--mdc-theme-text-primary-on-background);
    -webkit-font-smoothing: antialiased;
}

/* --- Custom Container (αντίστοιχο του MUI Container) --- */
.container {
    max-width: 1600px; /* maxWidth="lg" */
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}
.container-md {
    max-width: 960px; /* maxWidth="md" */
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    background-image: url('/images/header.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 0;
    text-align: center;
    display:flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 75vh;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.3); /* Overlay για να διαβάζεται το κείμενο */
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-logo {
    height: 314px;
    width: auto;
    margin-bottom: 24px;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}
.hero-title {
    font-size: 3rem; /* variant="h4" */
    font-weight: normal;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    margin:0;
    margin-bottom:32px;

}
.hero-subtitle{
    position: absolute;
    z-index: 2;
    bottom:0;
    left:0;
    right:0;
    background: #072a06;
    text-align: center;
    padding: 20px;
    color: white;
    font-size: 1.5rem;
}
@media (max-width: 1200px) {
    .hero-section { height: 100vh; }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.25rem; }
    .hero-logo { height: 260px; }
}

@media (max-width: 800px) {
    .hero-section { height: 100vh; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-logo { height: 200px; }
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.3s;
  z-index:2;
}

.scroll-down:hover {
  opacity: 1;
}

.scroll-down .arrow-wrapper {
  display: block;
  animation: bounce 6s infinite;
}

.scroll-down .arrow {
  display: block;
  width: 20px;
  height: 20px;
  margin: 0 auto 5px;
  border-left: 4px solid white;
  border-bottom: 4px solid white;
  transform: rotate(-45deg);
}
.scroll-down .text {
  padding-top: 10px;
  display: block;
  font-size: 1.25rem;
}

@keyframes bounce {
  0%   { transform: translateY(0); }
  10%  { transform: translateY(10px); }
  20%  { transform: translateY(0); }

  /* pause */
  100% { transform: translateY(0); }
}



/* --- Utilities & Layout --- */
.h4-title {
    font-size: 2.75rem;
    color: var(--mdc-theme-secondary);
    margin:0;
    margin-bottom: 24px;
    font-weight: normal;
}
.h4-title.--gray {
    color: #afafaf;
}
@media (max-width: 1200px) {
    .h4-title { font-size: 2.125rem; }
}

.body1 {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 16px;
}
.horizontal-stack {
    display: flex;
    gap: 64px;
    align-items: center;
}
@media (max-width: 900px) {
    .horizontal-stack { flex-direction: column; }
}
@media (max-width: 900px) {
    .horizontal-stack.--reverse-on-mobile { flex-direction: column-reverse; }
}

.flex-child { flex: 1; }

/* --- Table Styling (MDC Table) --- */
.mdc-data-table {
    overflow: hidden;
    width: 100%;
    border-radius: 8px !important;
    box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.2),
                0px 4px 5px 0px rgba(0,0,0,0.14),
                0px 1px 10px 0px rgba(0,0,0,0.12); /* elevation={4} */
}
.mdc-data-table__table {
    width: 100%;
}
.mdc-data-table__cell--bold {
    font-weight: bold;
    background-color: #f5f5f5;
}
.mdc-data-table__row:hover {
    background-color: inherit !important;
}
.text-right { text-align: right; }

/* --- Divider --- */
.divider {
    height: 1px;
    background-color: rgba(0, 0, 0, 0.12);
    margin: 64px 0; /* my: 8 */
}

/* --- Pricing & Contact Section --- */
.pricing-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0 16px;
}
.h3-title {
    font-size: 2.75rem;
    text-align: center;
    color: var(--mdc-theme-secondary);
    font-weight: normal;
    margin-top: 0;
    margin-bottom: 8px;
}
.h3-title.--white {
    color: #fff;
}
.price-tag {
    font-size: 5rem;
    text-align: center;
    font-weight: bold;
    color: #000;
}
.price-tag span{
    font-size: 2.5rem;
    font-weight: normal;
}
.price-vat {
    font-size: 1.25rem;
    color: rgba(0,0,0,0.6);
    font-weight: 400;
}
.price-card {
    background-color: #ffda9f;
    width: 250px;
    height: 250px;
    margin-top: 40px;
    margin-bottom: 80px;
    padding: 24px;
    border-radius: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    box-shadow: 0px 3px 1px -2px rgba(0,0,0,0.2),
                0px 2px 2px 0px rgba(0,0,0,0.14),
                0px 1px 5px 0px rgba(0,0,0,0.12);
}

.price-gift {
    position: absolute;
    bottom: -50px;
    right: -50px;
    background-color: #000;
    width: 140px;
    height: 140px;
    padding: 0px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.price-gift-title {
  color: rgba(255,255,255,0.8);
}
.price-gift-tag {
  color: white;
  font-size: 2rem;
}
.price-gift-tag span{
    font-size: 1.5rem;
    font-weight: normal;
}
.price-gift-subtitle {
  color: rgba(255,255,255,0.8);
}
@media (max-width: 600px) {
    .price-card { width: 180px; height: 180px; }
    .price-tag { font-size: 4rem; }
    .price-gift { width: 110px; height: 110px; bottom: -30px; right: -30px;}
    .price-gift-tag { font-size: 1.5rem;}
}

.contact-title{
  font-size: 1.75rem;
  text-align: center;
}
/* --- Contact Grid --- */
.contact-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex: 1;
    width:100%;
}

.contact-card {
    color: black;
    flex: 0 1 300px;
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0px 3px 1px -2px rgba(0,0,0,0.2),
                0px 2px 2px 0px rgba(0,0,0,0.14),
                0px 1px 5px 0px rgba(0,0,0,0.12);
}
.contact-icon {
    font-size: 40px;
    color: #10470e;
    margin-bottom: 8px;
}
.contact-detail { font-size: 1.25rem; font-weight: bold; margin: 4px 0 0 0; }
.contact-name {color: rgba(0,0,0,0.6); }

@media (max-width: 600px) {
    .contact-grid { flex-direction: column; align-items: center; }
    .contact-card { flex: 1; min-width: 200px;}
}



.footer-grid {
    display: flex;
    gap: 32px;
    flex: 1;
    width:100%;
}


.footer-card {
    flex: 0 1 400px;
}
.footer-title {

}
.footer-row {
    margin-bottom: 8px;
}
@media (max-width: 1200px) {
    .footer-grid { flex-direction: column; align-items: flex-start; }
    .footer-card { flex: 0; }
}

.w-line {
  padding-top: 200px;
  padding-bottom: 200px;
}
.bg-line {
  background-color: #e0e0e0;
  padding-top: 240px;
  padding-bottom: 240px;
}
.f1-line {
  background-color: #10470e;
  padding-top: 160px;
  padding-bottom: 160px;
  color: white;
}
.f2-line {
  background-color: #072a06;
  padding-top: 40px;
  padding-bottom: 60px;
  color:#fff;
}

.home-image {
  max-width:800px;
  width:100%;
}
.home-image.--shadow {
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.5));
}
