* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

header {
    background-color: #fff;
    color: #002ae08c;
    padding:.5rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

header.scrolled {
    background-color: rgba(51, 51, 51, 0.9);
    color:#fff;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
   
.logo {
   font-family: "Pacifico", cursive;
   font-weight: 400;
   font-style: normal;
   font-size:1.8rem;
 }

   
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    margin-right: -205px;
}

nav ul {
    list-style-type: none;
    display: flex;
}

nav i{
  margin-right: 8px;
}

nav ul li {
    margin-left: 1rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ffd700;
}

.parallax {
    background-image: url('art.jpeg');
    height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}
.parallax2{
  height: 10vh;
  background-image: url('art.jpeg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax3{
  height: 5vh;
  background-image: url('art.jpeg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax h1 {
    color: #fff;
    font-size: 3rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.content {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.content h2 {
    margin-bottom: 1rem;
}

.content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.gallery-slider {
    margin-bottom: 2rem;
}

.gallery-slider img {
    width: 100%;
    height: 400px;
    border-radius: 5px;
    object-fit: cover;
}
 
.content {
    position: relative;
    padding-bottom: 40px; /* Add some space at the bottom for the link */
}

.gallery-link {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: #007bff;
    color: white;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 10px;
    transition: background-color 0.3s ease;
}

.gallery-link:hover {
    background-color: #0056b3;
}
 
.slick-prev, .slick-next {
    z-index: 1;
}

.slick-prev {
    left: 10px;
}

.slick-next {
    right: 10px;
}
   
.contact-form {
    display: grid;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.5rem;
    font-size: 1rem;
}

.contact-form button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #555;
}

.card {
  max-width: 420px;
  width:90%;
  min-height:100px;
  margin: 20px;
  padding: 20px;
  gap:50px
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border:0.1px solid gray;
  border-radius: 5px;
}

.card-image {
  height: 150px;
  min-height: 80px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.container{
  display:flex;
  align-items: center;
  justify-content: center;
}
.card-content {
  padding: 20px;
}

.card-content h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 14px;
  margin-bottom: 20px;
}

.card-content a {
  background-color: #002ae08c;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.card-content a:hover {
  background-color: #000277;
}

@media screen and (max-width: 768px) {
  .container{
    display:block;
  }
}

footer {
    background-color: #333;
    color: #fff;
    padding: 2rem;
    text-align: center;
}

.social-icons {
    margin-top: 1rem;
}

.social-icons a {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ffd700;
}

.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: #fff;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    transition: background-color 0.3s ease;
}

.scroll-top:hover {
    background-color: #5555;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .menu-toggle {
display: block;
    }

    nav ul {
display: none;
flex-direction: column;
position: absolute;
top: 100%;
left: 0;
width: 100%;
background-color: #333;
    }

    nav ul.show {
display: flex;
    }

    nav ul li {
margin: 0;
text-align: center;
    }

    nav ul li a {
display: block;
padding: 1rem;
margin-left:0;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
       }
