@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

body {
   font-family: 'Lato', sans-serif;

   background-color: #4CAF50;
   
   background: no-repeat url(img/body-bg.png) !important;
   
   
background-attachment: fixed;
background-size: cover;
    margin: 0;
    padding: 20px;
    text-align: center;
    overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6{
	font-family: 'Caveat', cursive;
	 font-weight: 700;
	  color: #fff;
}

.well{
font-family: 'Caveat', cursive;
	 font-weight: 700;
	  color: #fff;
font-size:35px;
text-decoration:none;	  
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.logo {
    max-height: 100px;
	    background: #fff;
    padding: 10px;
}

.back-to-home {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(to right, #E9C46A, #2A9D8F); /* Gold to Deep Teal */
    color: white;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.back-to-home:hover {
    background: linear-gradient(to right, #2A9D8F, #E9C46A);
    color: #fff;
}

h1 {
    color: #264653; /* Deep Teal */
    font-size: 32px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn 1s ease-out forwards;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transform: perspective(1000px);
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 3px solid #fff; /* Deep Teal */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05) rotateX(10deg) rotateY(-10deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Custom hover cursor icon */
.gallery-item:hover::before {
    content: '→';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: #E9C46A; /* Gold */
    opacity: 0.85;
}

 