@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

:root {
	--primary-color: #000000;
	--secondary-color: #ecf0f1;
	--light-color: #f4f1ea;
	--accent-color: #e4a740;
	--text-dark: #000000;
	--text-light: #7f8c8d;
	--font-family-default: "Josefin Sans", sans-serif;
	--font-family-title: "Cinzel", serif;
}

body {
	font-family: var(--font-family-default);
	background-color: #ffffff;
	color: var(--text-dark);
	line-height: 1.5;
	font-weight: 300;
	font-size: 17px;
}

body.no-scroll {
	overflow: hidden;
}

.container.container-full {
    max-width: 100%;
}

img.logo-imgs {
    margin-top: 10px;
    margin-bottom: 10px;
    height: 80px;
}


.header-container {
	width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}
.box-header-social {
    display: flex;
    align-items: center;
   justify-content: flex-end;
}
.box-header-social a {
	color: var(--primary-color);
	margin-right: 10px;
    font-size: 22px;
}
.box-header-social a:hover {
	color: var(--accent-color);
}

.btn.btn-outline-primary {
    border: 1px solid var(--primary-color);
	color: 1px solid var(--primary-color);
}
.no-radius {
	border-radius: 0 !important;
}

.btn.btn-outline-primary:hover {
	border: 1px solid var(--primary-color);
	background: var(--primary-color);
	color: #fff;
}
.btn-small {
	font-size: 16px;
    padding: 3px 15px;
}

.box-header-menu .navbar-toggler{
	border-color: var(--primary-color);
	color: var(--primary-color);
	border-radius: 0;
}

.box-header-menu .header-menu-top {
	width: 100%;
}

.navbar {
	background-color: #ffffff;
	border-bottom: 1px solid #e9ecef;
	padding: 1rem 0;
}

.navbar-brand {
	font-size: 1.8rem;
	font-weight: bold;
	color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
	color: var(--text-dark) !important;
	font-weight: 500;
	margin: 0 1rem;
	transition: color 0.3s ease;
	font-family: var(--font-family-title);
}

.navbar-nav .nav-link:hover {
	color: var(--accent-color) !important;
	text-decoration: underline;
}

.hero-section {
	padding: 4rem 0;
}

.hero-title {
	font-size: 3rem;
	font-weight: bold;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.hero-subtitle {
	font-size: 1.3rem;
	color: var(--accent-color);
	margin-bottom: 2rem;
	font-style: italic;
}

.hero-description {
	font-size: 1.1rem;
	color: var(--text-dark);
	margin-bottom: 3rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.cta-buttons {
	margin-bottom: 3rem;
}

.btn {
	font-family: var(--font-family-title);
}

.btn-custom {
	padding: 12px 30px;
	margin: 0 10px;
	border-radius: 30px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-block;
}

.btn-primary-custom {
	background-color: var(--primary-color);
	color: white;
	border: 2px solid var(--primary-color);
}

.btn-primary-custom:hover {
	background-color: transparent;
	color: var(--primary-color);
}

.btn-outline-custom {
	background-color: transparent;
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
}

.btn-outline-custom:hover {
	background-color: var(--primary-color);
	color: white;
}

.gallery-section {
	padding: 3rem 0;
}

.gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	margin-bottom: 2rem;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
	transition: transform 0.3s ease;
}

.gallery-item:hover {
	transform: translateY(-5px);
}

.gallery-item img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.gallery-item:hover img {
	transform: scale(1.05);
}

.gallery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
	display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.gallery-name {
    color: #fff;
    font-size: 18px;
    text-align: center;
}
.gallery-overlay:hover {
    text-decoration: none;
}

.gallery-item:hover .gallery-overlay {
	opacity: 1;
}

.gallery-item-file {
    width: 100%;
    /*aspect-ratio: 2/3; */
    overflow: hidden;
    border-radius: 10px; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
	background: #fff;
}

.gallery-item-file img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-title {
	text-align: center;
	margin-bottom: 3rem;
	color: var(--primary-color);
	font-size: 46px;
	font-family: var(--font-family-title);
}

.footer {
	background: var(--light-color);
	color: var(--primary-color);
	padding: 3rem 0 1rem 0;
}

.footer h5 {
	color: var(--primary-color);
	margin-bottom: 1.5rem;
	font-family: var(--font-family-title);
}

.footer a {
	color: var(--primary-color);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer a:hover {
	color: var(--primary-color);
	text-decoration: underline;
}

.footer-bottom {
	border-top: 1px solid #e5e2db;
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
    color: var(--primary-color);
}

.social-icons a {
	display: inline-block;
	width: 40px;
	height: 40px;
	background-color: var(--primary-color);
	color: white;
	text-align: center;
	line-height: 44px;
	border-radius: 50%;
	margin: 0 5px;
	transition: background-color 0.3s ease;
}

.social-icons a:hover {
	background-color: var(--accent-color);
}

.content-delimiter {
	height: 1px;
	width: 100%;
	margin: 30px 0;
}
.section-subtitle {
    font-size: 22px;
    text-align: center;
	font-weight: 300;
}

img.img-columns {
    width: 100%;
}
.titlu-columns {
    color: var(--primary-color);
    font-size: 25px;
    font-family: var(--font-family-title);
    margin-bottom: 10px;
}
.content-columns {
	font-weight: 300;
}

img.img-banner.img-full {
    width: 100%;
}

.box-img-banner {
    margin-bottom: 30px;
}
.box-img-banner .img-banner {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	width: 100%;
}



.events-container {
	padding: 20px 15px;
}

.events-container .event-card {
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	transition: transform 0.4s, box-shadow 0.4s;
	background: #fff;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.events-container .event-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.events-container .event-card img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	transition: transform 0.4s;
}

.events-container .event-card:hover img {
	transform: scale(1.05);
}

.events-container .event-date-badge {
	position: absolute;
	top: 15px;
	left: 15px;
	background: linear-gradient(135deg, #ffa000, #ff7907);
	color: #fff;
	padding: 8px 14px;
	border-radius: 5px;
	font-weight: 600;
	font-size: 0.9rem;
	z-index: 2;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.events-container .card-body {
	padding: 20px;
}

.events-container .card-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 10px;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
	min-height: 50px;
}

.events-container .card-text {
	color: #555;
	font-size: 0.95rem;
	margin-bottom: 15px;
}

.page-eveniment-images img {
    border-radius: 30px;
    margin-bottom: 30px;
    width: 100%;
    max-height: 800px;
    object-fit: cover;
    transition: transform 0.3s ease;
}





.imobile {
    display: none;
}
.box-logo-mobile-menu img.logo-imgs {
    margin-top: -15px;
}

@media (max-width: 480px) {
	.box-header-social .btn-outline-primary {
		display: none;
	}
}

@media (max-width: 650px) {
	.social-icon-header {
		display: none;
	}
	.section-title {
		font-size: 30px;
	}
}


@media (max-width: 768px) {
	.hero-title {
		font-size: 2.2rem;
	}
	
	.hero-subtitle {
		font-size: 1.1rem;
	}
	
	.btn-custom {
		margin: 5px;
		display: block;
		width: 200px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.navbar-nav {
		text-align: center;
		margin-top: 30px;
	}
	
	.gallery-item img {
		height: 250px;
	}
	
	.img-columns {
		margin-top:20px;
	}
}

@media (max-width: 991.98px) {
	.imobile {
		display: block;
	}
	.navbar-collapse {
		position: fixed !important;
		top: 0;
		right: -100%;
		height: 100vh;
		width: 100%;
		background-color: var(--light-color);
		padding: 2rem;
		z-index: 1050;
		transition: right 0.3s ease-in-out;
		box-shadow: -5px 0 15px rgba(0,0,0,0.2);
	}
	.navbar-collapse.show {
		right: 0;
	}
	.box-header-menu {
		
	}
	.navbar-nav .nav-link {
		color: var(--primary-color);
		text-align: center;
		padding: 15px 0;
         font-size: 22px;
		display: inline-block;
	}
	.navbar-nav .dropdown-menu .nav-link 	{
		color: var(--text-dark) !important;
	}
	.navbar-nav .dropdown-menu {
		text-align: right;
	}
	.close-btn {
		position: absolute;
		top: 1rem;
		right: 1rem;
		font-size: 1.5rem;
		color: var(--primary-color);
	}
}


.contact-info {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
	height: 100%;
}



.contact-item {
	display: flex;
	align-items: flex-start;
}

.contact-item i {
	width: 20px;
	margin-top: 5px;
}

.contact-form .form-control,
.contact-form .form-select {
	border: 2px solid #e9ecef;
	border-radius: 8px;
	padding: 12px 15px;
	transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
	border-color: var(--accent-color);
	box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.contact-form .form-label {
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 8px;
}

.social-icons-contact a {
	display: inline-block;
	width: 35px;
	height: 35px;
	background-color: var(--primary-color);
	color: white;
	text-align: center;
	line-height: 38px;
	border-radius: 50%;
	transition: background-color 0.3s ease;
	text-decoration: none;
}

.social-icons-contact a:hover {
	
	background-color: var(--accent-color);
	color: white;
}

.alert-success {
	background-color: #d4edda;
	border-color: #c3e6cb;
	color: #155724;
	padding: 15px;
	border-radius: 8px;
	border-left: 4px solid #28a745;
}

.service-card {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid #f8f9fa;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-icon {
	margin-bottom: 1rem;
}

.about-philosophy {
	margin-top: 2rem;
}

.about-text p {
	margin-bottom: 1.5rem;
	text-align: justify;
}

.about-image img {
	border-radius: 15px;
	max-height: 450px;
}

/*General*/
#loadingWeb {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.10);
	z-index: 2000;
	display: none;
}
.loadingContent {
	position: fixed;
    top: calc(50% - 80px);
    left: calc(50% - 40px);
    font-size: 16px;
    text-align: center;
    background: #fff;
    padding: 3px;
    border-radius: 5px;
    user-select: none;
    width: 80px;
}
.text-gold{
	color: var(--accent-color) !important;
}
.navbar{
	padding: 0px;
}
a {
	color: var(--accent-color);
}

.delimiterTop{margin-top: 100px;}

.icon-result {
    font-size: 100px;
}
.page-content ul {
	margin-left: 40px;
}

/*end general*/


@media (max-width: 768px) {
	.contact-info, 
	.contact-form-wrapper {
		margin-bottom: 2rem;
	}
	.logo-imgs{height: 67px;}
}

