body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f0f0f0;
    color: #444;/*#1e2b6f*/
}

/* --- PAGE TRANSITION --- */
#page {
    opacity: 0;
    transition: opacity 0.15s ease; /* era 0.4s */
}

#page.show {
    opacity: 1;
}

/* HEADER */
header.banner {
    background: url('../images/bg-header-1920.webp?v=1.2') center center / cover no-repeat;
    text-align: center;
    padding: 30px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    color: white;
}

/* Stil pentru banner când este ascuns (la scroll down) */
header.banner.hide-banner {
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}

header.banner h1 {
    font-weight: bold;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 1);
    letter-spacing: 1px;
    margin: 10px auto;   /* auto → centrează pe orizontală */
    text-align: center;  /* centrează textul */
    max-width: 50vw;   /* aceeași limită */
    font-size: 1.5em;
}

@media (max-width: 1024px) {
    header.banner { background: url('../images/bg-header-1024.webp?v=1.2') center center / cover no-repeat; }
    header.banner h1 {
        max-width: 65vw;   /* aceeași limită */
        font-size: 1.5em;
    }
}
@media (max-width: 600px) {
    header.banner { background: url('../images/bg-header-600.webp?v=1.2') center center / cover no-repeat; }
    header.banner h1 {
        max-width: 85vw;   /* aceeași limită */
        font-size: 1.2em;
    }
}

@media (max-width: 450px) {
    header.banner h1 {
        max-width: 60vw;   /* aceeași limită */
        font-size: 1.2em;
    }
}

@media (max-width: 350px) {
    header.banner h1 {
        max-width: 80vw;   /* aceeași limită */
        font-size: 1.2em;
    }
}

header.banner::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /*background: rgba(0, 0, 0, 0.1);*/
    z-index: 1;
}
header.banner .logo-container, header.banner h1, header.banner p {
    position: relative;
    z-index: 2;
}

.monami-logo {
    width: 360px;      /* dimensiunea afișată */
    height: auto;      /* păstrează proporția */
    max-width: 100%;   /* responsive */
    display: block;
    margin: 0 auto;
    image-rendering: auto; /* clar pe ecrane retina */
}

/* NAVBAR */
nav {
    background-color: #1E4F8C;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    gap: 30px;
    position: sticky;
    top: 0;
    z-index: 1000;
        /* 🔥 UMBRA SUB NAV */
    box-shadow: 0 12px 25px -12px rgba(0, 0, 0, 0.5);
}

nav a {
    color: #FAFAFA; /* aproape identic cu alb */
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.35);
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 4px;
    transition: 0.3s;
    white-space: nowrap;
}

/* Hover + Active */
nav a:hover {
    background: rgba(255,255,255,0.15); /* ușor mai deschis */
}

nav a.active {
    background: rgba(255,255,255,0.25); /* alb transparent, ca în poză */
    color: #ffffff;
}


/* CONTENT GENERAL */
.content {
    max-width: 780px;
    margin: 40px auto;
    padding: 0 20px 40px 20px;
}

/* Card */
.card {
  background: linear-gradient(145deg, #ffffff, #f9fbff);
  border-radius: 20px;
  padding: 20px 20px;
  box-shadow: 0 8px 20px rgba(0, 27, 77, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 40px;
  overflow: hidden;
  position: relative;
}
.card h2 {
    text-align: center;
    color: #001b4d;
    margin-bottom: 20px;
}

/* Efect de hover subtil */
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 27, 77, 0.12);
}

/* Linie sub titlu */
.card .underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #00c0ff);
  border-radius: 2px;
  margin: 0 auto 25px auto;
}

/* Text */
.card p {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.card em {
  color: #005baa;
  font-style: normal;
  font-weight: 500;
}
.card-content p {margin-bottom: 18px; font-size: 16px; color: #444; line-height: 1.4; }





/* SERVICE CARD */
.service-card { margin-top: 20px; }
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  text-align: left;
}
.service-item strong {
  display: block;
  font-size: 14px;
  color: #001b4d;
  margin-bottom: 4px;
}
.service-item p { margin: 0; font-size: 14px; color: #444; line-height: 1.4; }

/* CONTACTS */
.contacts {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}
.contact-item {
    margin-bottom: 15px;
    text-align: center;
}
.contact-flag {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.flag-icon {
   aspect-ratio: 50 / 26; /* ex. pentru steaguri */
   width: 50px;
   height: auto;
   border-radius: 4px;
}
.country-name {
    font-weight: bold;
    color: #001b4d;
}

/* ICONS */
.icons, .contact-item .icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 8px;
}
.icons img {
    width: 28px;
    height: 28px;
    transition: transform 0.2s;
}
.icons img:hover { transform: scale(1.15); }

/* BUTTONS */
.rezerva-btn-container,
.rezerva-btn-container-header {
  text-align: center;
}

.rezerva-btn {
  display: inline-block;
  background: #FF7700;
  color: #FEFEFE; /* aproape alb, contrast puțin mai mare */
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.35);
  font-weight: bold;
  padding: 14px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;

  /* 🔹 Adăugări noi */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25); /* umbră discretă */
  border: 1px solid rgba(0, 0, 0, 0.15); /* contur fin pentru claritate */
}

.rezerva-btn:hover {
  background: #cf6000;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.35); /* umbră puțin mai pronunțată la hover */
}

@media (max-width: 1024px) {
   .rezerva-btn {
      font-size: 18px;
      padding: 14px 30px;
   }
}
@media (max-width: 600px) {
   .rezerva-btn {
      font-size: 14px;
      padding: 10px 22px;
   }
}

/* ===== FOOTER PREMIUM ===== */
.site-footer {
    background-color: #1E4F8C;
    color: white;
    padding: 40px 20px 20px;
    font-size: 14px;
    margin-top: 40px;
    box-shadow: 0 -24px 24px rgba(0, 0, 0, 0.20);  
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-section {
    flex: 1 1 240px;
    min-width: 220px;
}

.footer-section .footer-title {
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: bold;
    color: #ffffff;
}

.footer-section p {
    line-height: 1.5;
    margin: 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

/* Linkuri */
.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.25s;
}

.footer-section a:hover {
    opacity: 0.75;
}

/* Iconițe sociale */
.footer-social .social-icons {
    display: flex;
    gap: 14px;
    margin-top: 10px;
}

.footer-social img {
    width: 32px;
    height: 32px;
    transition: transform .3s ease, opacity .3s ease;
}

.footer-social a:hover img {
    transform: scale(1.12);
    opacity: 0.85;
}

/* Legal */
.footer-legal {
    text-align: center;
    font-size: 13px;
    opacity: 0.9;
    border-top: 1px solid rgba(255,255,255,0.25);
    margin-top: 30px;
    padding-top: 15px;
}

.footer-legal a {
    color: #fff;
    text-decoration: underline;
}

/* ===== TABLETĂ ===== */
@media (max-width: 900px) {
    .footer-container {
        justify-content: center;
        text-align: center;
    }

    .footer-section {
        flex: 1 1 45%;
    }

    .footer-social .social-icons {
        justify-content: center;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .footer-section {
        width: 100%;
        margin-bottom: 5px;
    }

    .site-footer {
        padding: 25px 15px;
    }
}




/* === Buton Scroll Up === */
#scrollUpBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #1E4F8C;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 1500;
  display: flex;
  justify-content: center;
  align-items: center;
}

#scrollUpBtn svg {
  width: 22px;
  height: 22px;
  fill: white;
  transition: transform 0.2s ease;
}

#scrollUpBtn:hover svg {
  transform: translateY(-2px);
}

#scrollUpBtn.show {
  opacity: 1;
  visibility: visible;
  bottom: 35px;
}

/* === Floating Chat Widget (Bottom-Left Version) === */
.chat-float {
  position: fixed;
  bottom: 25px;
  left: 25px;       /* ⬅️ Moved to left side */
  right: auto;
  z-index: 2000;
}

/* Main Chat Button */
.main-chat-btn {
  width: 60px;
  height: 60px;
  background: #28a745;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  animation: pulse 2.5s infinite;
}

.main-chat-btn:hover {
  background: #218838;
  transform: scale(1.1);
}

/* Options (hidden initially) */
.chat-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: absolute;
  bottom: 70px;
  left: 0;          /* ⬅️ Align options with left side */
  right: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

/* Each small chat icon */
.chat-btn {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, background 0.25s ease;
}

.chat-btn img {
  width: 28px;
  height: 28px;
}

/* Colors for each platform */
.chat-btn.phone:hover {
  background: #007bff; /* Blue for phone */
}

.chat-btn.whatsapp:hover {
  background: #25D366;
}

.chat-btn.viber:hover {
  background: #7360f2;
}

/* Show when active */
.chat-float.active .chat-options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Optional gentle pulse animation */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(40, 167, 69, 0); }
  100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
}


