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

body {
  font-family: 'Georgia', serif;
  background-color: #000;
  color: #fff;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  padding: 2rem 4rem;
  position: sticky;
  top: 0;
  height: 111px;
  z-index: 999;
}

.logo img {
  height: 40px; 
  width: auto;
}
.logo img:hover{
  transform: scale(1.05);
  transition: all 0.3s ease;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 3rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  position: relative;
}

nav a.active::after,
nav a:hover::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #fff;
}

section {
  margin: 0;
}


.image-section {
  position: relative;
}

.image-section img {
  width: 100%;
  height: auto;
  display: block;

    transition: filter 0.5s ease;
}


.image-section .quote {
  position: absolute;
  top: 60%;
  left: 190px;
  transform: translateY(-50%);
  color: white;
  font-size: 1.2rem;
  line-height: 1.5;
  max-width: 550px;
  text-align: left;
    z-index: 2;
  cursor: pointer;
}

.image-section:hover img {
  filter: grayscale(100%) brightness(40%);
}

.quote.h1{
    font-family: andora;
    margin-bottom: 20px;
}

.image-section.right .quote {
  left: auto;
  right: 190px;
  text-align: right;
  max-width: 650px;
  justify-content: center;
  margin-top: -130px;
}



footer {
  background: #292A29;
  padding: 2rem;
  text-align: left;
}

.footer-content {
  max-width: 440px;
margin-left: 130px;
}

.contact h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #ccc;
  margin-bottom: 0.3rem;
}
.footer-line {
  border: none;
  border-top: 1px solid #ccc;
  margin-top: 2rem;
  width: 1680px;
  margin-bottom: 1rem;
  margin-left: -160px;
}

footer p {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: #ccc;
}

@font-face {
    font-family:andora ;
    src: url(fonts/Andora\ Modern\ Serif.otf);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.5s ease-out forwards;
  animation-delay: 0.3s;
}


@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.reveal {
  opacity: 0;
  transform: translateX(0);
}


.reveal.active.fade-left {
  animation: fadeInLeft 1s ease-out forwards;
}

.reveal.active.fade-right {
  animation: fadeInRight 1s ease-out forwards;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
