@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body {
min-height: 100vh;
background-color: rgb(248, 234, 216);
background-size: cover;
background-position: center;
}


.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.3rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0, .1);
    backdrop-filter: blur(50px);
    z-index: -1;
}

.header::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 53, 103, 0.527),
    transparent);
    transition: .2s;
}

.header:hover:after {
    left: 100%;

} 

.logo-top img {
  width: 80px;      
  height: 70px;    
  margin-left: -100%;
}
.logo-bottom img {
  width: 80px;      
  height: 70px;     
}
.navbar a {
    font-size: 1.15rem;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-left: 2.5rem;
}

#check {
    display: none;
}

.icons {
    position: absolute;
    right: 5%;
    font-size: 2.8rem;
    color: #fff;
    cursor: pointer;
    display: none;
}

/*brealpoint*/
@media (max-width: 992px) {
    .header {
        padding: 1.3rem 5%;
    }
}

@media (max-width: 768px) {
    .icons {
        display: inline-flex;
    }

    #check:checked~.icons #menu-icon {
        display: none;
    }

    .icons #close-icon {
        display: none;
    }

    #check:checked~.icons #close-icon {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height:  0;
        background: rgb(0, 0, 0, .1);
        backdrop-filter: blur(50px);
        box-shadow: 0 .5rem 1rem rgb(0, 0, 0, .1);
        overflow: hidden;
        transition: .3s ease;
    }

    #check:checked~.navbar {
        height:  17.7rem;
    }

    .navbar a {
        display: block;
        font-size: 1.1rem;
        margin: 1.5rem 0;
        text-align: center;
        transform: translateY(-50px);
        opacity: 0;
        transition: .3s ease;
    }

    #check:checked~.navbar a {
        transform: translateY(0);
        opacity: 1;
        transition-delay: calc(.15s * var(--i));
    }
}
.navbar-text {
    height: calc(100vh);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

#div h1 {
    font-size: 3rem;
    margin-bottom: 3rem;
}


.banner {
position: relative;
width: 100%;
max-height: 400px;
overflow: hidden;
  min-height: 75vh;
}

.banner img {
width: 100%;
height: auto;
display: block;
padding-top: 90px;
}

/* Teks di atas gambar */
.banner-text {
position: absolute;
top: 70%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
text-align: center;
padding: 10px;
border-radius: 8px;
}

.banner-text h1 {
font-size: 36px;
margin-bottom: 5px;
}

.banner-text p {
font-size: 18px;
}


.intro {
background-color: #700e01; /* Warna latar lembut */
padding: 60px 20px;
text-align: center;
margin-top: 90px;
}

.intro .containerr {
max-width: 800px;
margin: 0 auto;

}

.intro h2 {
font-size: 28px;
margin-bottom: 20px;
color: #ffffff;
}

.intro p {
font-size: 16px;
color: #ffffff;
line-height: 1.6;
}

.text p{
text-align: center;
font-size: 30px;
}


.featured {
  font-family: 'Great Vibes', cursive;
  font-size: 50px;
  text-align: center;
  padding-bottom: 10px;
  margin-top: 70px;
  margin-bottom: -100px;
  color:#700e01;
}


.wrapper {
display: flex;
justify-content: center;
align-items: center;
min-height: 75vh; 
text-align: justify;  
}

.carousel-container {
background: white;
width: 90%;
max-width: 1000px;
overflow: hidden;
padding: 10px;
position: relative;
display: flex;
align-items: center;
border-radius: 10px;
margin-top: 5%;
}


.arrow {
cursor: pointer;
font-size: 2rem;
user-select: none;
z-index: 1;
transition: opacity 0.5s ease;
padding: 10px;
}

.arrow:hover {
opacity: 0.6;
}

.carousel-track {
display: flex;
transition: transform 0.6s ease;
scroll-behavior: smooth;
overflow-x: auto;
scroll-snap-type: x mandatory;
-webkit-overflow-scrolling: touch;
gap: 20px;
}


.cardd {
background: #fff;
display: flex;
width: 100%;
min-width: 100%;
scroll-snap-align: start;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
overflow: hidden;
}

.cardd .image {
width: 55%;
background-color: #ddd;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
font-size: 2rem;
}

.cardd .content {
padding: 20px;
font-size: 14px;
text-align: center;
display: flex;
justify-content: center;
flex-direction: column;
width: 50%;
}


footer {
background-color: #650101;
color: #fff;
padding: 30px 20px 10px;
margin-top: 20px;
font-size: 14px;  
}
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  padding: 0 50px;
}

.left {
  text-align: left;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.logo {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-column p {
  font-size: 13px;
  color: #ccc;
  text-align: justify;
}

.footer-links a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 5px;
}

.footer-links a:hover {
  color: #ffffff;
}

.social-icons {
  display: inline-flex;
  justify-content: end;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  font-size: 22px;
  color: white;
}

.social-icons a:hover {
  color: #ffffff;
}

.footer-divider {
  border-top: 1px solid #999;
  margin: 30px auto 10px;
  width: 90%;
}

.footer-bottom {
  text-align: center;
  color: #ccc;
  font-size: 13px;
  margin-top: 10px; 
}

.footer-bottom a {
  color: #ffffff;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.link-title {
  color: #ffffff;
  font-weight: bold;
  padding-top: 10px;
  margin-bottom: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.link-title::before {
  content: "|";
  margin-right: 5px;
  color: #ffffff;
  font-size: 13px;  
  display: inline-block;
}


/*about*/
.about-title {
  font-family: 'Great Vibes', cursive;
  font-size: 50px;
  text-align: left;
  padding: 20px;
  margin-top: 100px;
  color:#851000;
}


/*===========ABOUT===========*/

.textt {
    text-align: left;
    color: #851000; 
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
}

.card {
    position: relative;
    width: 500px;
    height: 230px;
    padding: 15px;
    background: #fff;
    overflow: hidden;
    margin-bottom: 2rem;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.card h2 {
    z-index: 99;
    position: absolute;
    bottom: 25px;
    right: 130px;
    font-size: 50px;
    font-weight: 600;
    color: #fff;
    pointer-events: none;
    transition: 0.2s ease;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.card p {
    z-index: 99;
    position: absolute;
    bottom: 30px;
    right: 130px;
    width: 150px;
    color: #fff;
    opacity: 0;
    font-size: 12px;
    text-align: justify;
    letter-spacing: 1px;
    transition: 0.2 ease;
}

.card span {
    z-index: 99;
    position: absolute;
    top: 60px;
    right: 35px;
    color: #333;
    font-size: 12px;
    letter-spacing: 1px;
    writing-mode: vertical-lr;
    opacity: 1;
    transition: 0.2s ease;
}

.card .pic {
    z-index: 100;
    width: 395px;
    height: 200px;
    background-image: url(winter.gif);
    background-size: cover;
    border-radius: 12px;
    filter: grayscale(100%);
    transition: 0.3s ease;
}

.card2 .pic {
    z-index: 100;
    width: 395px;
    height: 200px;
    background-image: url(Spring.gif);
    background-size: cover;
    border-radius: 12px;
    filter: grayscale(100%);
    transition: 0.3s ease;
}

.card3 .pic {
    z-index: 100;
    width: 395px;
    height: 200px;
    background-image: url(Summer.gif);
    background-size: cover;
    border-radius: 12px;
    filter: grayscale(100%);
    transition: 0.3s ease;
}

.card4 .pic {
    z-index: 100;
    width: 395px;
    height: 200px;
    background-image: url(Autumn.gif);
    background-size: cover;
    border-radius: 12px;
    filter: grayscale(100%);
    transition: 0.3s ease;
}

.card button {
    position: absolute;
    right: 30px;
    bottom: 40px;
    width: 30px;
    height: 30px;
    background: #8f1010;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    opacity: 1;
    transition: 0.3s ease;
}

.card:hover button {
    transform: scale(16.5);
    opacity: 0.5;
}

.card:hover h2 {
    bottom: 100px;
    right: 50px;
}

.card:hover p {
    bottom: 40px;
    right: 60px;
    opacity: 1;
}

.card:hover span {
    opacity: 0;
}

.card:hover .pic {
    filter: grayscale(0);
    width: 470px;
}


/*galery*/

/* Container section */
.gallery-section {
  background-color: #f9f6ea;
  padding: 40px 20px;
}

/* Header: Logo kiri, galery kanan */
.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 30px auto;
}

/* Logo */
.logo-box {
  background-color: #600000;
  color: white;
  padding: 30px 40px;
  font-size: 24px;
  text-align: center;
  font-family: 'Belleza', sans-serif;
}

/* Galery title */
.gallery-title {
  font-family: 'Great Vibes', cursive;
  font-size: 40px;
  color: black;
}

/* Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


.contact {
  position: relative;
  min-height: 100vh;
  padding: 10px 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  flex-direction: column;
  background: #690d01; /* Warna latar lembut */
}
.contact .content {
  max-width: 800px;
  text-align: center;
}
.contact .content {
  font-size: 1.3em;
  color: hsl(0, 0%, 100%);
  font-weight: 500;
  font-family: 'Belleza', sans-serif;
}
.container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-top: 30px;
}
.container .contactInfo {
  width: 50%;
  display: flex;
  flex-direction: column;
}
.container .contactInfo .box {
  position: relative;
  padding: 20px 0;
  display: flex;
  cursor: pointer;
}
.container .contactInfo .box .icon {
  min-width: 60px;
  height: 60px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  transition: 0.5s;
}
.container .contactInfo .box:hover .icon {
  background: #f50808be;
  color: #ffffff;
}
.container .contactInfo .box .text {
  display: flex;
  flex-direction: column;
  margin-left: 20px;
  font-size: 1.1em;
  font-weight: 300;
  color: #ffffff;
}
.container .contactInfo .box .text p {
  font-size: 1.4em; 
  color: #ffffff;  
  margin-left: 3px;
}

.container .contactInfo .box .text h3 {
  font-size: 1.4em;
  font-weight: bold;
  font-family: 'Belleza', sans-serif;
  color: #ffffff;
}
.sci {
  position: relative;
  display: flex;
  gap: 10px;
  margin: 20px 0;
}
.sci li {
  list-style: none;
}
.sci li a {
  color: #ffffff;
  font-size: 2em;
  transition: 0.5s;
}
.sci li a:hover {
  color: #ef0000;
}

.container .contactForm {
  position: relative;
  width: 40%;
  background: #f1eeee;
  min-height: 100px;
  padding: 50px;
  border-radius: 10px;
}
.container .contactForm .inputBox {
  position: relative;
  width: 100%;
  margin-top: 20px;
}
.container .contactForm .inputBox input,
.container .contactForm .inputBox textarea {
  width: 100%;
  padding: 5px 0;
  font-size: 0.9em;
  margin: 10px 0;
  border: none;
  border-bottom: 2px solid #582929;
  outline: none;
  resize: none;
}
.container .contactForm .inputBox span {
  position: absolute;
  left: 10px;
  pointer-events: none;
  padding: 5px 0;
  margin: 10px 0;
  font-size: 0.9em;
  color: #000000;
  transition: 0.5s;
}
.container .contactForm .inputBox input:focus ~ span,
.container .contactForm .inputBox textarea:focus ~ span,
.container .contactForm .inputBox input:valid ~ span,
.container .contactForm .inputBox textarea:valid ~ span {
  color: #ff0368;
  font-size: 0.9em;
  transform: translateY(-20px);
}
.container .contactForm .inputBox input[type="submit"] {
  width: 100px;
  background: #8b1414;
  color: #ffffff;
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: 1.1em;
  font-weight: 500;
}

/* lets make it responsive */
@media (max-width: 991px) {
  .contact {
    padding: 50px;
  }
  .container {
    flex-direction: column;
  }
  .container .contactInfo,
  .container .contactForm {
    width: 100%;
  }
  .container .contactForm {
    padding: 50px 30px;
  }
}