﻿/* TEMA IDENTICA CU PAGINA DE INREGISTRARE */
        :root {
            --primary-color: #2C3E50;
            --secondary-color: #E74C3C;
            --accent-color: #3498DB;
            --success-color: #27AE60;
            --warning-color: #F39C12;
            --light-bg: #ECF0F1;
            --text-color: #333333;
            --border-color: #DDDDDD;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        /* CONTAINER PRINCIPAL */
        .main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* HEADER */
        .site-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            margin-bottom: 30px;
            border-bottom: 2px solid var(--accent-color);
        }
        
        .logo-section {
            flex: 1;
        }
        
        .site-title {
            color: var(--primary-color);
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 5px;
            text-decoration: none;
            display: inline-block;
        }
        
        .site-tagline {
            color: var(--accent-color);
            font-size: 14px;
        }
        
        .nav-section {
            flex: 1;
            text-align: right;
        }
        
        .nav-menu {
            display: flex;
            gap: 15px;
            justify-content: flex-end;
            flex-wrap: wrap;
        }
        
        .nav-btn {
            background-color: var(--accent-color);
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            display: inline-block;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 14px;
        }
        
        .nav-btn:hover {
            background-color: #2980B9;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        /* HERO SECTION - LARGIMEA COMPLETA */
        .hero-section {
            height: 250px;
            background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)),
                        url('https://www.giurgiuveanul.ro/stiri/wp-content/uploads/2015/02/20130312-Portul-Giurgiu-2.jpg');
            background-size: cover;
            background-position: center;
            border-radius: 10px;
            margin: 20px 0 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            width: 100%;
        }
        
        .hero-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(52, 152, 219, 0.3), rgba(231, 76, 60, 0.3));
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            color: white;
            text-align: center;
            padding: 20px;
        }
        
        .hero-title {
            font-size: 36px;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        .hero-subtitle {
            font-size: 18px;
            opacity: 0.9;
        }
        
        /* SEARCH FORM - LARGIME COMPLETA, ELEMENTE PE O LINIE */
        .search-container {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            padding: 30px;
            margin: 40px 0;
            width: 100%;
        }
        
        .form-title {
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 25px;
            font-size: 24px;
        }
        
        .info-box {
            background-color: #f8f9fa;
            border-left: 4px solid var(--accent-color);
            padding: 15px;
            margin-bottom: 25px;
            font-size: 14px;
            border-radius: 0 5px 5px 0;
        }
        
        /* FORMULAR PE O SINGURA LINIE */
        .inline-search-form {
            display: flex;
            gap: 15px;
            align-items: flex-end;
            flex-wrap: nowrap;
            width: 100%;
        }
        
        .form-group {
            flex: 1;
            min-width: 0; /* Important pentru flexbox shrink */
            margin-bottom: 0;
        }
        
        .form-label {
            display: block;
            margin-bottom: 8px;
            color: var(--primary-color);
            font-weight: bold;
            font-size: 14px;
            white-space: nowrap;
        }
        
        .form-input {
            width: 100%;
            padding: 14px;
            border: 2px solid var(--border-color);
            border-radius: 6px;
            font-size: 16px;
            transition: all 0.3s;
            background-color: #fcfdfe;
            min-width: 120px;
        }
        
        .form-input:focus {
            border-color: var(--accent-color);
            outline: none;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
            background-color: white;
        }
        
        /* BUTON PE ACEAASI LINIE */
        .inline-submit-btn {
            background-color: var(--success-color);
            color: white;
            padding: 14px 30px;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            height: 50px; /* Aceeasi inaltime cu input-urile */
            min-width: 140px;
            margin-top: 24px; /* Compensare pentru label */
            white-space: nowrap;
        }
        
        .inline-submit-btn:hover {
            background-color: #229954;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(39, 174, 96, 0.2);
        }
        
        /* CONTENT AREA */
        .content-area {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            padding: 30px;
            margin: 40px 0;
            min-height: 300px;
        }
        
        /* FOOTER */
        .site-footer {
            background-color: var(--primary-color);
            color: white;
            padding: 30px;
            text-align: center;
            border-radius: 10px;
            margin-top: 40px;
        }
        
        .footer-text {
            margin-bottom: 15px;
            font-size: 16px;
        }
        
        .footer-subtext {
            margin-top: 15px;
            font-size: 14px;
            opacity: 0.8;
        }
        
        /* RESPONSIVE - PENTRU FORMULAR PE O LINIE */
        @media (max-width: 992px) {
            .inline-search-form {
                flex-wrap: wrap;
                gap: 20px;
            }
            
            .form-group {
                flex: 1 1 calc(50% - 10px);
            }
            
            .inline-submit-btn {
                flex: 1 1 100%;
                margin-top: 0;
                height: auto;
            }
        }
        
        @media (max-width: 768px) {
            .site-header {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            
            .logo-section, .nav-section {
                width: 100%;
                text-align: center;
            }
            
            .nav-menu {
                justify-content: center;
            }
            
            .hero-section {
                height: 200px;
                margin: 15px 0 30px;
            }
            
            .hero-title {
                font-size: 28px;
            }
            
            .hero-subtitle {
                font-size: 16px;
            }
            
            .form-group {
                flex: 1 1 100%;
            }
            
            .inline-submit-btn {
                flex: 1 1 100%;
            }
            
            .search-container, .content-area {
                padding: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .site-title {
                font-size: 24px;
            }
            
            .nav-btn {
                padding: 8px 15px;
                font-size: 13px;
            }
            
            .hero-section {
                height: 150px;
            }
            
            .hero-title {
                font-size: 22px;
            }
            
            .hero-subtitle {
                font-size: 14px;
            }
            
            .form-title {
                font-size: 20px;
            }
            
            .form-input, .inline-submit-btn {
                padding: 12px;
                font-size: 14px;
            }
            
            .inline-submit-btn {
                min-width: 120px;
            }
        }
        
        /* UTILITY */
        a {
            text-decoration: none;
            color: inherit;
        }
        
        .text-center {
            text-align: center;
        }
        
        .mb-20 {
            margin-bottom: 20px;
        }
        
        .mt-20 {
            margin-top: 20px;
        }
        
        /* DATE INPUT STYLING */
        input[type="date"] {
            position: relative;
        }
        
        input[type="date"]::-webkit-calendar-picker-indicator {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            opacity: 0.7;
        }
        
        input[type="date"]::-webkit-calendar-picker-indicator:hover {
            opacity: 1;
        }
#body {
    font-family: Arial, sans-serif;
    #background: linear-gradient(to bottom, #003F92 1px, transparent 800px);
    color: #000;
}
#chenarprincipal{
	max-width: 1400px;
	min-width: 800px;
	height: auto;
	margin: auto;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	padding: 0px;
	border: 1px solid #000;
    border-radius: 5px;
}
#header {
	height: 200px;
    background-color: #003F92; /* Albastru */
    padding: 10px;
	color: fff;
}
#containeheader{
    margin: auto;
	width: 100%;
	height: 140px;
    #padding: 10px;
	display: flex;
    justify-content: space-between; /* Distribuie input-urile pe orizontala */
    gap: 10px; /* Spatiu intre elemente */
	background: #003F92 110px, transparent 800px;
	#border: 1px solid #fff;
    #border-radius: 5px;
}
#container2{
    margin: auto;
	width: 100%;
	#height: 140px;
    #padding: 10px;
	display: flex;
    justify-content: space-between; /* Distribuie input-urile pe orizontala */
    gap: 10px; /* Spatiu intre elemente */
	background: #003F92 110px, transparent 800px;
	#border: 1px solid #fff;
    #border-radius: 5px;
}
nav {
    width: 100%;
    text-align: center;
}
nav1 {
    width: 100%;
	margin: auto;
    text-align: center;
	display: flex;
    #justify-content: space-between; /* Distribuie input-urile pe orizontala */
    #gap: 10px; /* Spatiu intre elemente */
	background: #003F92 110px, transparent 800px;
	border: 1px solid #fff;
    border-radius: 5px;
}
#stanga {
    text-align: left; /* Aliniaza textul la stanga */
    margin-left: 10px; /* Optional, pentru a da un mic spatiu la stanga */
    padding: 10px;
}
#dreapta {
    text-align: right; /* Aliniaza textul la dreapta */
    margin-right: 10px; /* Optional, pentru a da un mic spatiu la stanga */
    padding: 10px;
}
#p1{
    text-align: center;
	color: #fff;
	font-size: 22px;
	font-weight: bold;
	margin-top: 40px;
	margin-bottom: 0;
	text-decoration: none;
}
#p2{
    text-align: center;
	color: #fff;
	font-size: 16px;
	margin: 0;
}
#p3{
	#width: 80px;
    padding: 10px;
	margin: 0;
	display: flex;
    justify-content: space-between; /* Distribuie input-urile pe orizontala */
    gap: 10px; /* Spatiu intre elemente */
	align-items: center;     /* aliniere verticală */
	justify-content: flex-start; /* aliniere orizontală la stânga */
	font-family: Arial, sans-serif;
    font-size: 14px;
	background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%; /* Asigura ca input-urile se potrivesc in spatiul alocat */
}
#p4{
	#width: 110px;
	#height: 40px;
    padding: 4px;
	#margin-top: 6px;
	text-align: center;
	font-family: Arial, sans-serif;
    font-size: 14px;
	background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%; /* Asigura ca input-urile se potrivesc in spatiul alocat */
}
#p5{
	margin-bottom: 4px;
    background-color: #E5E5E5; /* Galben */
	padding: 1px;
    display: flex;
    justify-content: space-between; /* Distribuie input-urile pe orizontala */
    gap: 2px; /* Spatiu intre elemente */
	border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%; /* Asigura ca input-urile se potrivesc in spatiul alocat */
}
#p6{
	width: 240px;
	#height: 40px;
    padding: 4px;
	margin-top: 2px;
	text-align: center;
	font-family: Arial, sans-serif;
    font-size: 14px;
	background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    #width: 100%; /* Asigura ca input-urile se potrivesc in spatiul alocat */
}
#p7{
	width: 140px;
	#height: 40px;
    padding: 4px;
	margin-top: 2px;
	text-align: center;
	font-family: Arial, sans-serif;
    font-size: 14px;
	background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    #width: 100%; /* Asigura ca input-urile se potrivesc in spatiul alocat */
}
#p8{
	width: 90%;
	#height: 40px;
    padding: 4px;
	#margin-top: 2px;
	text-align: center;
	font-family: Arial, sans-serif;
    font-size: 14px;
	background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%; /* Asigura ca input-urile se potrivesc in spatiul alocat */
}
#p9{
	width: 80%;
	#height: 40px;
    padding: 4px;
	margin-top: 2px;
	text-align: center;
	font-family: Arial, sans-serif;
    font-size: 14px;
	background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    #width: 100%; /* Asigura ca input-urile se potrivesc in spatiul alocat */
}
#p10{
	max-width: 300px;
	#height: 40px;
    padding: 4px;
	#margin-top: 6px;
	text-align: center;
	font-family: Arial, sans-serif;
    font-size: 14px;
	background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%; /* Asigura ca input-urile se potrivesc in spatiul alocat */
}
#btn1 {
    #background-color: #ffcc00; /* Galben */
	font-size: 14px;
    color: #fff;
    padding: 10px;
    cursor: pointer;
	border: 1px solid #fff;
    border-radius: 5px;
	text-decoration: none;
}

#btn1:hover {
    background-color: #ffcc00; /* Galben */
	font-size: 14px;
	border: 1px solid #fff;
    border-radius: 5px;
	text-decoration: none;
	color: #000;
}
#btn2 {
	height: 60px;
	margin: 2px;
    background-color: #fff;
	font-size: 14px;
    color: #000;
	font-weight: bold;
    padding: 10px;
    cursor: pointer;
	border: 1px solid #ccc;
    border-radius: 5px;
	text-decoration: none;
}

#btn2:hover {
	height: 60px;
	margin: 2px;
    background-color: #FFB532; 
	font-size: 14px;
	border: 1px solid #000;
    border-radius: 5px;
	text-decoration: none;
	color: #fff;
}
#btn3 {
	#width: 15%;
	height: 40px;
	padding: 10px 20px;
	background-color: #003F92;
	color: white;
	cursor: pointer;
	font-size: 16px;
	border: 1px solid #fff;
    border-radius: 5px;
}
#btn3:hover {
	height: 40px;
	#background-color: #c0392b;
	border: 1px solid #000;
    border-radius: 5px;
}
#img1{
	#background-color: #003F92;
	margin: auto;
	text-align: center;
	padding: 28px;
}
#foto1{
	max-width: 100px;
	max-height: 100px;
	#aspect-ratio: 4/3;
    overflow: hidden;
    padding: 4px;
	#background-color: #fff;
    #border: 1px solid #ccc;
    #border-radius: 5px;
    #width: 100%; /* Asigura ca input-urile se potrivesc in spatiul alocat */
}
#form1 {
	background-color: #FFB532; /* Galben */
	padding: 4px;
    display: flex;
    justify-content: space-between; /* Distribuie input-urile pe orizontala */
    gap: 10px; /* Spatiu intre elemente */
	border: 1px solid #ccc;
    border-radius: 5px;
}
#form2 {
	width: 300px;
	margin: auto;
	text-align: center;
	padding: 4px;
	#border: 1px solid #ccc;
    #border-radius: 5px;
}
#form3{
	#background-color: #FFB532; /* Galben */
	#padding: 4px;
	text-align: center;
    #display: flex;
    justify-content: space-between; /* Distribuie input-urile pe orizontala */
    gap: 10px; /* Spatiu intre elemente */
	#border: 1px solid #ccc;
    #border-radius: 5px;
}
#form4{
	
	text-align: center;
    background-color: #fff; 
	font-size: 14px;
	border: 1px solid #c1c1c1;
    border-radius: 5px;
	text-decoration: none;
	color: #000;
}
#inputprincipal {
	max-width: 300px;
    padding: 10px;
    #margin: 10px;
	font-family: Arial, sans-serif;
    font-size: 14px;
	text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%; /* Asigura ca input-urile se potrivesc in spatiul alocat */
}
#inputprincipal:hover {
    #background-color: #FFB532; 
	font-size: 14px;
	border: 1px solid #000;
    border-radius: 5px;
	text-decoration: none;
	color: #000;
}
#input1 {
	width: 46%;
    padding: 10px;
	font-family: Arial, sans-serif;
    font-size: 14px;
	text-align: center;
	margin: 4px;
	#display: flex;
    #justify-content: space-between; /* Distribuie input-urile pe orizontala */
    #gap: 10px; /* Spatiu intre elemente */
	#align-items: center;     /* aliniere verticală */
    border: 1px solid #ccc;
    border-radius: 5px;
    #width: 100%; /* Asigura ca input-urile se potrivesc in spatiul alocat */
}
#input1:hover {
    #background-color: #FFB532; 
	font-size: 14px;
	border: 1px solid #000;
    border-radius: 5px;
	text-decoration: none;
	color: #000;
}
#input2 {
	width: 20%;
    padding: 10px;
	font-family: Arial, sans-serif;
    font-size: 14px;
	text-align: center;
	margin: 4px;
	#display: flex;
    #justify-content: space-between; /* Distribuie input-urile pe orizontala */
    #gap: 10px; /* Spatiu intre elemente */
	#align-items: center;     /* aliniere verticală */
    border: 1px solid #ccc;
    border-radius: 5px;
    #width: 100%; /* Asigura ca input-urile se potrivesc in spatiul alocat */
}
#input2:hover {
    #background-color: #FFB532; 
	font-size: 14px;
	border: 1px solid #000;
    border-radius: 5px;
	text-decoration: none;
	color: #000;
}
#input3 {
	width: 20%;
    padding: 10px;
	font-family: Arial, sans-serif;
    font-size: 14px;
	text-align: center;
	margin: 4px;
	#display: flex;
    #justify-content: space-between; /* Distribuie input-urile pe orizontala */
    #gap: 10px; /* Spatiu intre elemente */
	#align-items: center;     /* aliniere verticală */
    border: 1px solid #ccc;
    border-radius: 5px;
    #width: 100%; /* Asigura ca input-urile se potrivesc in spatiul alocat */
}
#input3:hover {
    #background-color: #FFB532; 
	font-size: 14px;
	border: 1px solid #000;
    border-radius: 5px;
	text-decoration: none;
	color: #000;
}
#input4 {
	width: 90%;
    padding: 10px;
	font-family: Arial, sans-serif;
    font-size: 14px;
	text-align: center;
	margin: 4px;
	#display: flex;
    #justify-content: space-between; /* Distribuie input-urile pe orizontala */
    #gap: 10px; /* Spatiu intre elemente */
	#align-items: center;     /* aliniere verticală */
    border: 1px solid #ccc;
    border-radius: 5px;
    #width: 100%; /* Asigura ca input-urile se potrivesc in spatiul alocat */
}
#input4:hover {
    #background-color: #FFB532; 
	font-size: 14px;
	border: 1px solid #000;
    border-radius: 5px;
	text-decoration: none;
	color: #000;
}
#input5 {
	width: 80%;
    padding: 10px;
	font-family: Arial, sans-serif;
    font-size: 14px;
	text-align: center;
	margin: 4px;
	#display: flex;
    #justify-content: space-between; /* Distribuie input-urile pe orizontala */
    #gap: 10px; /* Spatiu intre elemente */
	#align-items: center;     /* aliniere verticală */
    border: 1px solid #ccc;
    border-radius: 5px;
    #width: 100%; /* Asigura ca input-urile se potrivesc in spatiul alocat */
}
#input5:hover {
    #background-color: #FFB532; 
	font-size: 14px;
	border: 1px solid #000;
    border-radius: 5px;
	text-decoration: none;
	color: #000;
}
#input6 {
	width: 80%;
    padding: 10px;
	font-family: Arial, sans-serif;
    font-size: 14px;
	text-align: center;
	margin: 4px;
	#display: flex;
    #justify-content: space-between; /* Distribuie input-urile pe orizontala */
    #gap: 10px; /* Spatiu intre elemente */
	#align-items: center;     /* aliniere verticală */
    border: 1px solid #ccc;
    border-radius: 5px;
    #width: 100%; /* Asigura ca input-urile se potrivesc in spatiul alocat */
}
#input6:hover {
    #background-color: #FFB532; 
	font-size: 14px;
	border: 1px solid #000;
    border-radius: 5px;
	text-decoration: none;
	color: #000;
}
#input7 {
	width: 90%;
    padding: 10px;
	font-family: Arial, sans-serif;
    font-size: 14px;
	text-align: center;
	margin: 4px;
	#display: flex;
    #justify-content: space-between; /* Distribuie input-urile pe orizontala */
    #gap: 10px; /* Spatiu intre elemente */
	#align-items: center;     /* aliniere verticală */
    border: 1px solid #ccc;
    border-radius: 5px;
    #width: 100%; /* Asigura ca input-urile se potrivesc in spatiul alocat */
}
#input7:hover {
    #background-color: #FFB532; 
	font-size: 14px;
	border: 1px solid #000;
    border-radius: 5px;
	text-decoration: none;
	color: #000;
}
#textarea1 {
	width: 87%;
	height: 150px;
    padding: 10px;
	font-family: Arial, sans-serif;
    font-size: 14px;
	text-align: center;
	margin: 4px;
	#display: flex;
    #justify-content: space-between; /* Distribuie input-urile pe orizontala */
    #gap: 10px; /* Spatiu intre elemente */
	#align-items: center;     /* aliniere verticală */
    border: 1px solid #ccc;
    border-radius: 5px;
    #width: 100%; /* Asigura ca input-urile se potrivesc in spatiul alocat */
}
#textarea1:hover {
    #background-color: #FFB532; 
	font-size: 14px;
	border: 1px solid #000;
    border-radius: 5px;
	text-decoration: none;
	color: #000;
}
.checkbox1 {
  width: 20px;   /* Lățime personalizată */
  height: 20px;  /* Înălțime personalizată */
  cursor: pointer;
}
#facilitati2{
	#background-color: #c1c1c1; 
	display: flex;
    justify-content: space-between; /* Distribuie input-urile pe orizontala */
    gap: 4px; /* Spatiu intre elemente */
	align-items: center;     /* aliniere verticală */
	justify-content: flex-start; /* aliniere orizontală la stânga */
}
#facilitati1{
	background-color: #c1c1c1;
    display: flex;
    justify-content: center; /* Centrează pe orizontală */
    align-items: center;    /* Centrează pe verticală */
    gap: 4px;              /* Spațiu între elemente */
    flex-wrap: wrap;       /* Permite elementelor să treacă pe linie nouă dacă nu încap */
}
#inputmic {
	width: 60px;
    padding: 10px;
	font-family: Arial, sans-serif;
    font-size: 14px;
	text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#continut {
	margin: auto;
	width: 97%;
	height: auto;
    padding: 4px;
	#border: 1px solid #000;
    #border-radius: 5px;
}

#option1 {
    height: auto;
	font-family: Arial, sans-serif;
    font-size: 14px;
	text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.notification {
      position: fixed;
      top: 300px;
      left: 50%;
      transform: translateX(-50%);
      color: white;
      padding: 15px 30px;
      border-radius: 5px;
	  text-align: center;
      font-family: Arial, sans-serif;
      font-size: 16px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.5s, visibility 0.5s ease-in-out;
      z-index: 9999;
    }
    /* Când notificarea este activă */
.notification.show.yes {
      opacity: 1;
      visibility: visible;
	  background-color: #fff; /* Culoare verde pentru succes */
	  text-align: center;
	  border: 1px solid #28a745;
    }
.notification.show.no {
      opacity: 1;
      visibility: visible;
	  background-color: #fff; /* Culoare alb pentru insucces */
	  text-align: center;
	  border: 1px solid red;
    }
a{
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}

.logout-btn {
	#width: 15%;
	padding: 10px 20px;
	background-color: #003F92;
	color: white;
	cursor: pointer;
	font-size: 16px;
	border: 1px solid #fff;
    border-radius: 5px;
}
.logout-btn:hover {
	#background-color: #c0392b;
	border: 1px solid #000;
    border-radius: 5px;
}
 .gallery-container {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
			#border: 1px solid #c1c1c1;
        }
        
        .gallery-item {
            width: calc(20% - 15px); /* 5 imagini pe rând */
            display: flex;
            flex-direction: column;
            align-items: center;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            background-color: #f5f5f5;
            padding-bottom: 10px;
			border: 1px solid #c1c1c1;
        }
        
        .gallery-img-container {
            width: 100%;
            aspect-ratio: 4/3;
            overflow: hidden;
			
        }
        
        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 0.3s, transform 0.3s;
        }
        
        .gallery-btn {
            margin-top: 10px;
            padding: 6px 12px;
            background-color: #EE4026;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            transition: background-color 0.3s;
        }
        
        .gallery-btn:hover {
            background-color: #45a049;
        }
        
        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        
        .gallery-item:hover .gallery-img {
            transform: scale(1.05);
        }
        
        /* Stiluri responsive */
        @media (max-width: 1024px) {
            .gallery-item {
                width: calc(25% - 15px); /* 4 imagini pe rând */
            }
        }
        
        @media (max-width: 768px) {
            .gallery-item {
                width: calc(33.333% - 15px); /* 3 imagini pe rând */
            }
        }
        
        @media (max-width: 480px) {
            .gallery-item {
                width: calc(50% - 15px); /* 2 imagini pe rând */
            }
        }
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        .container {
            max-width: 100%;
            width: 100%;
            padding: 0 15px;
        }
        
        @media (min-width: 768px) {
            .container {
                max-width: 750px;
                margin: 0 auto;
            }
        }
        
        @media (min-width: 992px) {
            .container {
                max-width: 970px;
            }
        }
        
        @media (min-width: 1200px) {
            .container {
                max-width: 1170px;
            }
        }
        
        .auth-box {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            padding: 30px;
            margin: 50px auto;
            max-width: 500px;
            width: 100%;
        }
        
        .logo {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .logo h1 {
            color: <?php echo $primaryColor; ?>;
            font-size: 28px;
            margin-bottom: 5px;
        }
        
        .logo p {
            color: <?php echo $accentColor; ?>;
            font-size: 14px;
        }
        
        h2 {
            color: <?php echo $primaryColor; ?>;
            text-align: center;
            margin-bottom: 20px;
            font-size: 22px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        label {
            display: block;
            margin-bottom: 5px;
            color: <?php echo $primaryColor; ?>;
            font-weight: bold;
        }
        
        .form-input {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        
        .form-input:focus {
            border-color: <?php echo $accentColor; ?>;
            outline: none;
        }
        
        .form-input.error {
            border-color: <?php echo $secondaryColor; ?>;
        }
        
        .btn {
            display: block;
            width: 100%;
            padding: 14px;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
            text-align: center;
            text-decoration: none;
        }
        
        .btn-primary {
            background-color: <?php echo $accentColor; ?>;
            color: white;
        }
        
        .btn-primary:hover {
            background-color: #2980B9;
        }
        
        .btn-secondary {
            background-color: <?php echo $lightBg; ?>;
            color: <?php echo $primaryColor; ?>;
            border: 2px solid #ddd;
            margin-top: 10px;
        }
        
        .btn-secondary:hover {
            background-color: #ddd;
        }
        
        .alert {
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .alert-warning {
            background-color: rgba(<?php echo hexdec(substr($warningColor,1,2)).','.hexdec(substr($warningColor,3,2)).','.hexdec(substr($warningColor,5,2)); ?>, 0.1);
            border-left: 4px solid <?php echo $warningColor; ?>;
            color: #8a6d3b;
        }
        
        .alert-danger {
            background-color: rgba(<?php echo hexdec(substr($secondaryColor,1,2)).','.hexdec(substr($secondaryColor,3,2)).','.hexdec(substr($secondaryColor,5,2)); ?>, 0.1);
            border-left: 4px solid <?php echo $secondaryColor; ?>;
            color: #a94442;
        }
        
        .alert-success {
            background-color: rgba(<?php echo hexdec(substr($successColor,1,2)).','.hexdec(substr($successColor,3,2)).','.hexdec(substr($successColor,5,2)); ?>, 0.1);
            border-left: 4px solid <?php echo $successColor; ?>;
            color: #3c763d;
        }
        
        .code-info {
            text-align: center;
            margin: 20px 0;
            font-size: 14px;
            color: <?php echo $primaryColor; ?>;
        }
        
        .attempts-info {
            text-align: center;
            margin-top: 15px;
            font-size: 14px;
            color: <?php echo $warningColor; ?>;
        }
        
        .timer {
            font-weight: bold;
            color: <?php echo $secondaryColor; ?>;
        }
        
        .back-link {
            text-align: center;
            margin-top: 20px;
        }
        
        .back-link a {
            color: <?php echo $accentColor; ?>;
            text-decoration: none;
        }
        
        .back-link a:hover {
            text-decoration: underline;
        }
        
        .hidden {
            display: none;
        }
        
        .info-box {
            background-color: #f8f9fa;
            border-left: 4px solid <?php echo $accentColor; ?>;
            padding: 15px;
            margin-bottom: 20px;
            font-size: 14px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 576px) {
            .auth-box {
                padding: 20px;
                margin: 20px auto;
            }
            
            .logo h1 {
                font-size: 24px;
            }
            
            h2 {
                font-size: 18px;
            }
            
            .form-input {
                padding: 10px;
                font-size: 14px;
            }
            
            .btn {
                padding: 12px;
                font-size: 14px;
            }
        }
/* pagina login */
.btn4 {
            display: block;
            width: 100%;
            padding: 14px;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
            text-align: center;
            text-decoration: none;
        }
        
        .btn4-primary {
            background-color: #3498DB;
            color: white;
        }
        
        .btn4-primary:hover {
            background-color: #2980B9;
        }
        
        .btn4-secondary {
            background-color: #ECF0F1;
            color: #2C3E50;
            border: 2px solid #ddd;
            margin-top: 10px;
        }
        
        .btn4-secondary:hover {
            background-color: #ddd;
        }
        
        .alert {
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .alert-warning {
            background-color: #F39C12,1,2
            border-left: 4px solid #F39C12;
            color: #8a6d3b;
        }
        
        .alert-danger {
            background-color: #E74C3C;
            border-left: 4px solid #E74C3C;
            color: #a94442;
        }
        
        .alert-success {
            background-color: #27AE60;
            border-left: 4px solid #27AE60;
            color: #3c763d;
        }
        
        .code-info {
            text-align: center;
            margin: 20px 0;
            font-size: 14px;
            color: 2C3E50;
        }
        
        .attempts-info {
            text-align: center;
            margin-top: 15px;
            font-size: 14px;
            color: #F39C12;
        }
        
        .timer {
            font-weight: bold;
            color: #E74C3C;
        }
        
        .back-link {
            text-align: center;
            margin-top: 20px;
        }
        
        .back-link a {
            color: #3498DB;
            text-decoration: none;
        }
        
        .back-link a:hover {
            text-decoration: underline;
        }
        
        .hidden {
            display: none;
        }
        
        .info-box {
            background-color: #f8f9fa;
            border-left: 4px solid #3498DB;
            padding: 15px;
            margin-bottom: 20px;
            font-size: 14px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 576px) {
            .auth-box {
                padding: 20px;
                margin: 20px auto;
            }
            
            .logo h1 {
                font-size: 24px;
            }
            
            h2 {
                font-size: 18px;
            }
            
            .form-input {
                padding: 10px;
                font-size: 14px;
            }
            
            .btn4 {
                padding: 12px;
                font-size: 14px;
            }
        }
/* pagina detaliu */
/* STELE - MAI MICI PENTRU 250px */
.stele-container {
        display: inline-flex;
        gap: 4px;
        align-items: center;
        background: white;
        padding: 5px 10px;
        border-radius: 6px;
        border: 1px solid #f1f1f1;
        height: 32px;
        box-sizing: border-box;
    }
.stea {
        color: #FFD700;
        font-size: 20px;
        font-weight: bold;
        line-height: 1.5;
        display: inline-block;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }
    
    .stea.goala {
        color: #888888;
        text-shadow: none;
        font-size: 20px;
    }
    /* FACILITATI - COMPACTE PENTRU 250px */
    .facilitati {
        margin: 6px 0px;
        flex-shrink: 0;
    }
    
    .facilitati-title {
        font-size: 11px;
        font-weight: bold;
        color: #666;
        margin-bottom: 4px;
    }
    
    .facilitati-list {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }
	.badge {
		font-size: 0.9rem;
		padding: 0.5rem 1rem;
	}   
    .facilitate-badge {
		margin-bottom: 10px;
        display: inline-block;
        background: #e8f4fc;
        color: #3498DB;
        padding: 8px;
        font-size: 14px;
        white-space: nowrap;
        border: 1px solid #cce5ff;
		border-radius: 6px;
    }
/* Stiluri pentru tabelul galeriei */
.gallery-table {
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.gallery-table td {
    border: 1px solid #ddd !important;
    padding: 2px;
    vertical-align: middle;
    text-align: center;
    position: relative;
}

/* Celula principala (imaginea 1) */
.main-cell {
    height: 350px;
    background-color: #f8f9fa;
}

/* Celule laterale (imagini 2 si 3) */
.side-cell {
    height: 175px;
    background-color: #f8f9fa;
}

/* Celule pentru thumbnail-uri */
.thumb-cell {
    height: 100px;
    width: 16.66%; /* 100% / 6 celule */
    background-color: #f8f9fa;
}

/* Imagini din galerie */
.gallery-img {
    cursor: pointer;
    transition: all 0.3s ease;
    object-fit: cover;
    border: 1px solid #ddd;
    background-color: white;
}

.gallery-img:hover {
    opacity: 0.9;
    transform: scale(1.02);
    border-color: #007bff;
}

/* Placeholder pentru imagini lipsa */
.placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e9ecef;
    color: #6c757d;
    font-weight: bold;
    font-size: 1.2rem;
}

.thumb-placeholder {
    font-size: 1rem;
}

/* Responsive pentru mobil */
@media (max-width: 768px) {
    .main-cell {
        height: 250px;
    }
    
    .side-cell {
        height: 125px;
    }
    
    .thumb-cell {
        height: 70px;
    }
    
    .gallery-table {
        font-size: 0.8rem;
    }
}

/* Stiluri generale */
.descriere-content {
	padding: 8px;
    line-height: 1.4;
    #font-size: 1.1rem;
	#text-transform: capitalize; /* Transforma prima litera a fiecarui cuvânt în majuscula */
	#text-align: justify;        /* Aliniaza textul la margini (justificare completa) */
	text-indent: 30px;          /* Adauga un alineat de 30px la începutul fiecarui paragraf */
	margin-bottom: 15px; 
}

.card-header {
    border-radius: 0.375rem 0.375rem 0 0 !important;
}



/* Animation for smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Hover effects for lists */
.list-unstyled li {
    transition: transform 0.2s;
}

.list-unstyled li:hover {
    transform: translateX(5px);
}

/* Container galerie */
/*.gallery-container {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}*/

/* Buton pentru toate imaginile */
.btn-outline-primary {
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,123,255,0.2);
}

/* Lightbox styling */
#lightboxImage {
    max-height: 70vh;
    object-fit: contain;
}

/* Table responsive */
@media (max-width: 576px) {
    .gallery-table {
        display: block;
        overflow-x: auto;
    }
    
    .gallery-table td {
        min-width: 80px;
    }
}