/* Variables CSS */
:root {
  --blue-primary: #1E52AD; /* Bleu principal */
  --blue-light: #EBF2FF;
  --blue-dark: #0A3A8F;
  --blue-hover: #194990;
  --blue-50: #F0F5FF;
  --blue-100: #D6E4FF;
  --blue-600: #1E52AD;
  --blue-700: #0A3A8F;
  
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  
  --font-playfair: 'Playfair Display', serif;
  --font-roboto: 'Roboto', sans-serif;
}

.hero2 {
background: #1E52AD;
color: white;
padding: 100px 20px;
text-align: center;
}

.hero2-text h1 {
font-size: 48px;
margin-bottom: 10px;
color: white;
}

.hero2-text p {
font-size: 20px;
color: #ccc;
}

.container2 {
max-width: 1200px;
margin: auto;
padding: 40px 20px;
}

.intro {
display: flex;
flex-wrap: wrap;
gap: 40px;
background: #fff;
}

.left-column {
flex: 1;
min-width: 280px;
}

.right-column {
flex: 1;
min-width: 280px;
display: flex;
flex-direction: column;
gap: 20px;
}

.icon-box {
background: #f1f1f1;
padding: 20px;
border-left: 5px solid #1E52AD;
}

.icon-box i {
font-size: 28px;
color: #1E52AD;
}

.grid {
display: flex;
flex-wrap: wrap;
gap: 30px;
justify-content: space-between;
}

.feature {
background: white;
border-radius: 12px;
padding: 30px;
flex: 1 1 30%;
border-left: 4px solid #1E52AD;
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
transform: translateY(-10px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature i {
font-size: 36px;
color: #1E52AD;
margin-bottom: 15px;
}

.gallery-grid {
display: flex;
flex-wrap: wrap;
gap: 20px;
}

.gallery-grid img {
width: 100%;
max-width: 100%; 
display: flex;
height: auto;
border-radius: 15px;
padding: 3px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
object-fit: cover;
/* display: flex;
flex-wrap: wrap;
margin-bottom: var(--spacing-large);
width: calc(100% / 3);
padding-right: var(--spacing-small);
padding-left: var(--spacing-small);
margin-bottom: var(--spacing-medium); */
}

/* Animatii de baza */
@keyframes fadeInUp {
from {
  opacity: 0;
  transform: translateY(30px);
}
to {
  opacity: 1;
  transform: translateY(0);
}
}

.reveal {
opacity: 0;
transform: translateY(30px);
transition: all 0.6s ease;
transition-delay: var(--delay, 0s); /* Folosim delay-ul setat inline */
}

.reveal.active {
opacity: 1;
transform: translateY(0);
}

/* Hover pe icon-box */
.icon-box {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-box:hover {
transform: translateY(-10px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Optional: animatie la heading */
.hero2-text h1 {
animation: fadeInUp 1s ease-out forwards;
}