* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  color: #EAE4D5;
  background-color: #000;
  overflow-x: hidden;
}

header {
  position: fixed;
  top: 5%;
  width: 90%;
  padding: 0px 40px;
  margin: 0 5%;
  background: rgb(0, 0, 0);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}
.logo img {
  height: 80px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 50px;
}
nav ul li a {
  text-decoration: none;
  color: #EAE4D5;
  font-size: 13px;
  transition: color 0.3s;
  font-weight: bold;
}
nav ul li a:hover,
nav ul li a.active {
  color: #541212;
}
.slideshow-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}

.dot {
  height: 12px;
  width: 12px;
  background-color: none;
  border-radius: 50%;
  border: 2px solid #EAE4D5;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.4s ease, transform 0.3s ease;
}

.dot.active {
  background-color: #EAE4D5;
  transform: scale(1.2);
}

.slideshow {
 position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.slideshow img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
}
.fade {
  animation: fadeEffect 1s ease-in-out;
}

@keyframes fadeEffect {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
  z-index: 20;
}
.hamburger span {
  display: block;
  height: 3px;
  background: #EAE4D5;
  border-radius: 2px;
  transition: all 0.3s ease;
}

nav {
  transition: right 0.3s ease;
}
nav ul {
  transition: max-height 0.3s ease;
}

@media (max-width: 768px) {
  header {
    padding: 0 20px;
  }

  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #000;
    width: 40%;
    height: 100vh;
    gap: 30px;
    transition: right 0.3s ease;
  }

  nav ul.show {
    right: 0;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 480px) {
  nav ul li a {
    font-size: 11px;
  }
  .logo img {
    height: 60px;
  }
}

/* About Section */
.about {
  position: relative;
  background: #000;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px;
  overflow: hidden;
}

.about-bg img {
  min-width: 1150px;
  height: 450px;
  object-fit: cover; 
  margin-inline: 10%;
}

.about-title {
  position: absolute;
  top: 50px;
  right: 60px;
  width: 280px; 
}

.about-box {
  position: absolute;
  bottom: 70px;
  right:  60px;
  max-width: 430px;
  background: #541212;
  color: #EAE4D5;
  padding: 30px 30px;
  font-size: 14px;
  line-height: 1.6;
  border-top-right-radius: 75px;
  border-bottom-left-radius: 75px;
}

@media (max-width: 1024px) {
  .about {
    padding: 40px 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .about-bg img {
    min-width: auto;
    width: 100%;
    height: auto;
    margin-inline: 0;
  }

  .about-title {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 20px;
    width: 220px;
  }

  .about-box {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 20px;
    max-width: 80%;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .about {
    padding: 30px 15px;
  }

  .about-title {
    width: 180px;
    margin-top: 15px;
  }

  .about-box {
    padding: 20px;
    font-size: 13px;
    line-height: 1.5;
    margin-top: -20px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
  }
}
@media (max-width: 400px) {
  .about-title {
    width: 150px;
  }

  .about-box {
    max-width: 95%;
    font-size: 12px;
    padding: 15px;

  }
}

/* History Section */
.history {
  position: relative;
  background: #000;
  color: #EAE4D5;
  padding: 10px 10px;
  margin-bottom: 30px;
}
.history-title {
  position: absolute;
  top: -80px; 
  left: 45%; 
  transform: translateX(-50%); 
  width: 280px; 
  z-index: 5;    
}
.history-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin: 40px auto;
  max-width: 1100px; 
  gap: 0px;
  margin-bottom: -40px;
}

.history-img.parallax {
  flex: 1;
  min-width: 350px;
  height: 500px;
  background-size: cover;
  background-position: center ;
}

.history-img.static-img {
  flex: 1;
  min-width: 350px;
}
.history-img.static-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.history-text {
  flex: 1;
  min-width: 350px;
  background: #541212;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.8;
  font-size: 16px;
  text-align: left;
}
@media (max-width: 1024px) {
  .history {
    padding: 20px;
  }

  .history-title {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 20px auto;
    display: block;
    width: 220px;
    text-align: center;
  }

  .history-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 10px;
    max-width: 100%;
    margin: 20px auto;
  }

  .history-img.parallax,
  .history-img.static-img {
    min-width: auto;
    height: 300px;
  }

  .history-text {
    min-width: auto;
    font-size: 14px;
    line-height: 1.6;
    padding: 15px;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .history-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .history-img.parallax,
  .history-img.static-img {
    height: 220px;
  }

  .history-text {
    font-size: 13px;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .history-title {
    width: 160px;
  }

  .history-row {
    grid-template-columns: 1fr;
  }

  .history-img.parallax,
  .history-img.static-img {
    height: 200px;
  }
}

/* Collection Section */
.collection {
  text-align: center;
  padding: 10px 0px;
  background: #000;
}

.collection-title {
  width: 450px;
  margin-bottom: -150px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.collection-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.collection-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.collection-item:nth-child(1) { transition-delay: 0.1s; }
.collection-item:nth-child(2) { transition-delay: 0.3s; }
.collection-item:nth-child(3) { transition-delay: 0.5s; }
.collection-item:nth-child(4) { transition-delay: 0.7s; }
.collection-item:nth-child(5) { transition-delay: 0.9s; }
.collection-item:nth-child(6) { transition-delay: 1.1s; }

.collection-item img {
  width: 100%;
  height: 300px; 
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.collection-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(102, 4, 4, 0.301);
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#overlay img {
  max-width: 80%;
  max-height: 80%;
  animation: fadeIn 0.5s ease;
}

#close-btn {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: #EAE4D5;
  cursor: pointer;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 1024px) {
  .collection-title {
    width: 350px;
    margin-bottom: -100px;
  }

  .collection-grid {
    gap: 20px;
    max-width: 900px;
  }

  .collection-item img {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .collection-title {
    width: 280px;
    margin-bottom: -80px;
  }

  .collection-grid {
    gap: 15px;
    max-width: 100%;
    padding: 0 15px;
  }

  .collection-item img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .collection-title {
    width: 220px;
    margin-bottom: -60px;
  }

  .collection-grid {
    gap: 10px;
    padding: 0 10px;
  }

  .collection-item img {
    height: 140px;
  }
}


/* Visit Us Section */
.visit {
  position: relative;
  width: 100%;
  text-align: center;
  overflow: hidden;
}

.visit-red-top {
  width: 80%;
  margin: 0 auto;
  height: 100px; 
  background: #541212;
  z-index: 1;
}
.visit-red-bottom {
  height: 420px;
  width: 80%;
  margin: 0 auto;
  background: #541212; 
  z-index: 1;
}

.visit-bg {
  width: 80%;
  height: 400px; 
  margin: 0 auto;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 2;
}

.visit-title {
  position: relative;
  width: 380px;
  margin: 0 auto; 
  margin-bottom: -180px;
  z-index: 3;
  display: block;
}

.visit-box {
  position: relative;
  background: #000;
  margin: 40px auto;
  margin-top: -500px;
  padding: 40px 60px;
  max-width: 350px;
  height: 350px;
  color: #EAE4D5;
  z-index: 3;
  box-shadow: 0 10px 20px rgba(9, 0, 0, 0.403);
}

.visit-item {
  display: flex;
  align-items: flex-start;
  text-align: left;
  margin: 20px 0;
  line-height: 1.6;
}

.visit-icon {
  width: 28px;
  height: 28px;
  margin-right: 15px;
}

.visit-title,
.visit-box {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.visit-title.visible,
.visit-box.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .visit-title {
    width: 300px;
    margin-bottom: -140px;
  }

  .visit-red-top,
  .visit-red-bottom,
  .visit-bg {
    width: 90%;
  }

  .visit-bg {
    height: 400px;
  }

  .visit-box {
    margin-top: -420px;
    max-width: 300px;
    height: auto;
    padding: 30px 40px;
  }

  .visit-item {
    margin: 15px 0;
  }
}

@media (max-width: 768px) {
  .visit-title {
    width: 240px;
    margin-bottom: -100px;
  }

  .visit-red-top,
  .visit-red-bottom,
  .visit-bg {
    width: 95%;
  }

  .visit-red-top {
    height: 70px;
  }

  .visit-bg {
    height: 300px;
  }

  .visit-red-bottom {
    height: 300px;
  }

  .visit-box {
    margin-top: -330px;
    max-width: 260px;
    padding: 25px 30px;
    font-size: 14px;
  }

  .visit-icon {
    width: 22px;
    height: 22px;
    margin-right: 10px;
  }
}

@media (max-width: 480px) {
  .visit-title {
    width: 180px;
    margin-bottom: -70px;
  }

  .visit-red-top {
    height: 50px;
  }

  .visit-bg {
    height: 220px;
  }

  .visit-red-bottom {
    height: 220px;
  }

  .visit-box {
    margin-top: -250px;
    max-width: 220px;
    padding: 20px;
    font-size: 13px;
  }

  .visit-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .visit-icon {
    margin-bottom: 6px;
  }
}

/* Contact Section */
.contact {
  display: flex;
  min-height: 90vh;
  background: #000;
  color: #EAE4D5;
}

.contact-left {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  max-width: 700px;
  margin-inline: 10%;
  background: url("img/feedback-img.png") center center/cover no-repeat;
}

.contact-left .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65); 
  z-index: 1;
}

.contact-text {
  position: relative;
  z-index: 2;
  max-width: 420px;
  text-align: left;
}

.feedback-title {
  max-width: 100%;
  margin-bottom: 20px;
  margin-top: -200px;
}

.contact-left p {
  font-size: 14px;
  line-height: 1.6;
  color: #EAE4D5;
  margin-top: -150px;
}

.contact-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
}

.contact-right form {
  width: 100%;
  max-width: 400px;
  margin-left: -200px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-right input,
.contact-right textarea {
  background: transparent;
  border: 1px solid #EAE4D5;
  padding: 12px;
  color: #EAE4D5;
  font-size: 14px;
  outline: none;
  transition: border 0.3s;
}

.contact-right input:focus,
.contact-right textarea:focus {
  border-color: #EAE4D5;
}

.contact-right button {
  background: transparent;
  border: 1px solid #EAE4D5;
  padding: 12px;
  color: #EAE4D5;
  cursor: pointer;
  font-size: 14px;
  margin: 0 auto;
  width: 60%;
  transition: all 0.3s;
}

.contact-right button:hover {
  background: #541212;
  border-color: #541212;
}

.footer {
  display: flex;
  justify-content: center; 
  align-items: center;
  background: #000;
  padding: 30px 20px;
  color: #EAE4D5;
  gap: 40px; 
}

.footer-left {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: -30px;
}

.footer-logo {
  height: 120px; 
}

.footer-info {
  font-size: 12px;
  text-align: left;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .contact {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
  }

  .contact-left {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    height: auto;
    padding: 30px 20px;
  }

  .feedback-title {
    margin-top: -100px;
    max-width: 280px;
  }

  .contact-left p {
    margin-top: -80px;
    font-size: 13px;
  }

  .contact-right {
    width: 100%;
    margin-top: 30px;
  }

  .contact-right form {
    margin-left: 0;
    max-width: 500px;
    width: 90%;
  }
}

@media (max-width: 768px) {
  .feedback-title {
    margin-top: -60px;
    max-width: 220px;
  }

  .contact-left p {
    margin-top: -40px;
    font-size: 13px;
    text-align: center;
  }

  .contact-text {
    text-align: center;
    margin: 0 auto;
  }

  .contact-right form {
    width: 100%;
    max-width: 400px;
    padding: 0 15px;
  }

  .contact-right input,
  .contact-right textarea {
    font-size: 13px;
  }

  .contact-right button {
    width: 70%;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .feedback-title {
    max-width: 180px;
    margin-top: -30px;
  }

  .contact-left p {
    margin-top: -50px;
    font-size: 12px;
  }

  .contact-right form {
    gap: 15px;
  }

  .contact-right button {
    width: 80%;
  }

  .footer {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-left {
    margin-right: 0;
  }

  .footer-logo {
    height: 80px;
  }

  .footer-info {
    font-size: 11px;
    line-height: 1.4;
    margin-top: -20px;
  }
}


#success-message {
  position: fixed;
  top: 30px;
  right: 30px;
  background: #541212;
  color: #EAE4D5;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateY(-20px);
  z-index: 2000;
}

#success-message.show {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 120px; 
}

section:target {
  animation: sectionFocus 0.8s ease;
}

@keyframes sectionFocus {
  from { transform: scale(0.98); opacity: 0.6; }
  to { transform: scale(1); opacity: 1; }
}

