* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  width: 500px;
  position: relative;
  margin: auto;
  padding-top: 4px;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  margin-top: -10px;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@font-face {
  font-family: JMH_Arkham;
  src: url(JMH_Arkham.ttf);
}

body{
	background-color: #130a0a;
	background-image: url('images/background.png');
	background-repeat: no-repeat;
	background-size: 100%;
	cursor: url(images/cursor.gif), auto;
        }
        body a{
        cursor: url(images/cursor_click.gif), auto;
        }
        body input{
        cursor: url(images/cursor.gif), auto;
}

main{
	background-image: url('images/main.png');
	width: 922px;
	height: 596px;
	margin-left: auto;
	margin-right: auto;
	overflow:auto
}

nav{
	margin-top: 38px;
	margin-left: 120px;
	float: left;
}

nav a{
	display: block;
	background-image: url('images/button_normal.png');
	width: 182px;
	height: 54px;
	text-align: center;
	line-height: 52px;
	text-decoration: none;
	font-family: JMH_Arkham;
	color: #fff;
	font-size: 20px;
	margin-top: 13px;
	margin-bottom: 13px;
	text-shadow: 0 0 3px #000000;
	
	-webkit-transition: background-image 0.3s ease-out;
	-moz-transition: background-image 0.3s ease-out;
	-o-transition: background-image 0.3s ease-out;
	transition: background-image 0.3s ease-out;
}

nav a:hover{
	background-image: url('images/button_over.png');
}

#play_button a{
	display: block;
	background-image: url('images/play_button.png');
	width: 101px;
	height: 102px;
	margin-top: 56px;
	margin-left: 681px;
	
	-webkit-transition: background-image 0.3s ease-out;
	-moz-transition: background-image 0.3s ease-out;
	-o-transition: background-image 0.3s ease-out;
	transition: background-image 0.3s ease-out;
}

#play_button a:hover{
	background-image: url('images/play_button_over.png');
}

#desc{
	width: 541px;
    margin-left: 315px;
	margin-top: 19px;
	color: #fff;
	text-align: justify;
	text-shadow: 0 0 2px #000000;
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; 
	font-size: 14px;
	height: 87px;
}

#slider_box{
	display: block;
	background-image: url('images/frame.png');
	width: 521px;
	height: 273px;
	margin-left: 326px;
}

#slider_box .title {
	color: #fff;
	text-shadow: 0 0 2px #000000;
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; 
	font-size: 14px;
	text-align: center;
	padding-top: 9px;
}

.copyRight img {
    padding-top: 25px;
    padding-bottom: 25px;
}

.site-footer {
	padding: 20px 10px;
	text-align: center;
	margin-top: 30px;
	box-sizing: border-box;
	width: 100%;
    align-self: auto; /* Aceasta este valoarea implicită și respectă align-items al părintelui. N-ar trebui să pui aici altceva gen flex-start. */
    text-align: center; /* Pentru a centra conținutul DIN interior (imaginea) */
}

/* --- Stiluri pentru imaginea din footer cu NOU Efect de Hover --- */
.site-footer img {
	max-width: 100%;
	height: auto;
	opacity: 0.7; /* Păstrează opacitatea inițială */


    /* Adaugă/Actualizează Tranziția pentru noile efecte */
	transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; /* Tranziție pentru opacitate, mărire (transform) și umbră (box-shadow) */

    /* Definește starea inițială pentru noile efecte (util pentru a avea de unde porni tranziția) */
    transform: scale(1); /* Pornește de la mărimea normală (100%) */
    box-shadow: none; /* Pornește fără umbră */

}

.site-footer img:hover {
	opacity: 1; /* Devine complet vizibilă la hover */

    /* --- Noile Efecte de Hover --- */
    transform: scale(1.03); /* Se mărește cu 3% la hover */
    
    /* Ajustează culoarea și mărimea umbrei (0 0 20px = fără offset, rază blur 20px) */

    /* Nu este nevoie să repeți cursor: pointer; aici dacă l-ai setat mai sus */
}

