/* Import font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');
:root {
    /*--main-color: #2e2e2e;      /* Primary color (black)*/
    /*--main-color: #1a2b4c;      /* Primary color (navy)*/
    --main-color: #003333;      /* Primary color (teal)*/
    /*--main-color: #1b3a2f;      /* Primary color (dark green)*/
    /*--main-color: #2e4d2b;      /* Primary color (dark olive) */
    /*--main-color:#1d4736;       /* Primary color (pine green) */
    /*--main-color: #2c5f2d ;        /* Primary color (hunter green) */
    --secondary-color: #f0cf6f; /* Secondary color(gold) */
    --text-color: var(--main-color);      
    --third-color: #dccca3;/* White text color */
}
@media (prefers-color-scheme: dark) {
      :root {
        --main-color: #003333;  
      }
    }
/* Reset and body */
html, body {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    font-size: 1.2rem;
    color: var(--main-color); /* default text color */
    font-family: 'Inter', Arial, sans-serif;
}
.bg-interior {
    position: relative;
    background-color: rgba(255, 255, 255, 0.92);
    border-radius: 0;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1;
}

/* Footer */
footer {
    background-color: var(--main-color); 
    padding: 20px 0;
    color: #fff;
    text-align: center;
}

/* Scroll snapping on body */
body {
    scroll-snap-type: y proximity;
    font-size: 1rem;
  font-family: 'Minion Pro', sans-serif;
  /* font-family: 'Trajan-Pro', serif; */
  
}
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: var(--main-color);
    color: var(--text-color);
}
h1, h2, h3, #brand-text {
  font-family: 'Trajan Pro', 'Cinzel', serif;
  font-weight: 400;
  letter-spacing: 1px;
}


/* Map iframe styling */
iframe {
    width: 100%;
    height: 350px;
    border: 1px solid #ccc;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .bg-interior { padding: 20px; }
}

/* Remove border-radius on all other elements */
* {
    border-radius: 0 !important;
}

/* Lista de fișiere */

 .contact-info p {
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--main-color), var(--secondary-color);/* text elegant, nu albastru */
  text-decoration: none;          /* elimină sublinierea */
  transition: color 0.2s ease;
  font-size: 1rem;
}

.contact-info a:hover,
.contact-info a:focus {
  color: var(--main-color, var(--secondary-color)); /* navy / gold după paleta ta */
}

.contact-info img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.text-justify {
  text-align: justify !important;
}
.text-indent {
  text-indent: 2em;
}
.trajan {
  font-family: 'Trajan Pro', serif;
}
.main-color {
  color: var(--main-color) !important;
}
.secondary-color {
  color: var(--secondary-color) !important;
}
.fancy-link {
  color: white; /* Default text color */
  text-decoration: none;
  position: relative; /* So ::after positions relative to the link */
  transition: color 0.3s ease;
}

.fancy-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}

.fancy-link:hover {
  color: var(--secondary-color);
}

.fancy-link:hover::after {
  width: 100%;
}
.fancy-link-simplu {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}

/* Subtle top border to separate sections */
.footer-section-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1rem;
  margin-top: 1rem;
}

/* Subtle top border between main content and copyright row */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Optional: remove borders on mobile if needed */
@media (max-width: 767.98px) {
  .footer-section-divider {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
  }
}





