@font-face {
  font-family: "TheBoldFont";
  src: url("Fonts/THEBOLDFONT-FREEVERSION.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Coolvetica";
  src: url("Fonts/Coolvetica\ Rg.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Sunlight";
  src: url("Fonts/Sunlight\ Dreams.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Vogue";
  src: url("Fonts/Classyvogueregular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
*::before, *::after {
  box-sizing: border-box;
}
body {
    margin:0;
}
a {
    color: inherit;
    text-decoration: none;
    margin-top: 0px;
}
.image {
    margin:0px;
    width: 100%;
    height:100%;
    object-fit: contain;
    display:inline-block;
}
.TitleDiv {
    width:100%;
    height: 100px;
    margin:0px;
    display:flex;
    justify-content: space-between;
    margin:0;
}

.Title {
    font-family: "TheBoldFont", sans-serif;
    padding: 0px;
    font-size: 60px;
    margin-top:20px;
    margin-bottom:0px;
    margin-left:20px;
    margin-right:0;
}
.wrapper {
  display: flex;
  justify-content:center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 20px;
}
.slideArea{
    display: inline-block;
}

.carousel {
    width: 470px;
    height:560px;
    position: relative;
}
.carousel-button {
  position: absolute;
  background:none;
  border: none;
  font-size:3rem;
  top: 50%;
  transform: translateY(-50%);
  color:rgba(225,225,225,.5);
  cursor: pointer;
  border-radius: .35rem;
  padding: 0 .5rem;
  background-color: rgba(0,0,0,.1);
  z-index: 2;
}
.carousel-button:hover,.carousel-button:focus {
  color: white;
  background-color: rgba(0,0,0,.2);
}
.carousel-button:focus {
  outline:1px solid black;
}
.carousel-button.prev {
  left:1rem;
}
.carousel-button.next {
  right:1rem;
}
.carousel > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.slide > img {
  display: block;
  width:100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.slide {
  position:absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  transition: 200ms ease-in-out;
  transition-delay:200ms;
}
.slide[data-active] {
  opacity: 1;
  transition: 200ms ease-in-out;
  transition-delay:0ms;
}

.fillBox {
  width: 600px;
  height: 560px;    
  max-width: 100%;
  max-height: 100%;
  min-width: 30%;
  min-height: 30%;
  margin-left: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.Address {
  width: 300px;
  height: 40px;  
  border-radius: 20px;
  font-family:"Vogue";
  background-color: rgb(31, 21, 21);
  color: white;
  transition: 200ms;
  border: 2px solid black;
}
.Address:hover {
    background-color:rgb(31, 21, 21,0.7) ;
    transition: 200ms;
    box-shadow: 5px 2px 20px rgb(0, 0, 0,0.3);
}

.wrapper2 {
  width: 400px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 50px;
}
.wrapper3 {
   width: 400px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 50px;
}
.formWrapper{
  width: 400px;
  height: 450px;
  max-width: 100%;
  max-height: 100%;
  min-width: 50%;
  min-height: 50%;
  background-color:#1E2B2F;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  font-family: "Vogue";
  justify-content: center;
  flex-shrink: 2;
}

.form {
  width: 150px;
  height: 40px;
  border-radius: 20px;
  background-color: rgb(31, 21, 21);
  color: white;
  font-family:"Vogue";
  border: 2px solid black;
  transition: 200ms;
  flex-shrink: 2;
}    
.form:hover {
    background-color:rgb(31, 21, 21,0.7) ;
    transition: 200ms;
    box-shadow: 5px 2px 20px rgb(0, 0, 0,0.3);
}
::placeholder{
  color: rgb(228, 228, 228);
  font-family: "Vogue";
  transition: 200ms;
  box-shadow: 5px 2px 20px rgb(0, 0, 0,0.3);
}
.button {
    width: 180px;
    height: 50px;
    font-size: 20px;
    font-family: "Vogue";
    background-color: rgb(255, 255, 255);
    border: 0px solid;
    border-radius: 10px;
    margin-top: 0px;
    margin-left:40px;
    margin-bottom: 20px;
    transition: 200ms;
}
.button2 {
    width: 180px;
    height: 50px;
    font-size: 20px;
    font-family: "Vogue";
    color: white;
    background-color: rgb(31, 21, 21);
    border: 0px solid;
    border-radius: 10px;
    cursor: pointer;
}
.button:hover {
    transition: 200ms;
    background-color: rgb(219, 219, 219);
    box-shadow: 5px 2px 20px rgb(0, 0, 0,0.3);
}
.button2:hover {
    background-color: rgb(31, 21, 21,0.6);
    transition: 200ms;
    box-shadow: 5px 2px 20px rgb(0, 0, 0,0.3);
}
.icons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 20%;
  height: 100%;
  width: 20%;
}
.icons > a > p {
  font-family: "TheBoldFont";
  font-size: 20px;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* Footer Styles */
.footer {
    width: 100%;
    background-color: rgb(31, 21, 21);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px 80px;
    margin-top: 80px;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-left {
    flex: 1;
    max-width: 500px;
}

.footer-brand {
    font-family: "TheBoldFont", sans-serif;
    font-size: 36px;
    margin-top: 0;
    margin-bottom: 15px;
}

.footer-description {
    font-family: "Vogue", serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.footer-right {
    flex: 0;
    min-width: 200px;
}

.footer-title {
    font-family: "Vogue", serif;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-family: "Vogue", serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    transition: 200ms;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
    transition: 200ms;
}

/* ===== RESPONSIVE STYLES ===== */

/* Tablets and smaller */
@media (max-width: 1024px) {
    .Title {
        font-size: 50px;
    }
    
    .carousel {
        width: 400px;
        height: 480px;
    }
    
    .fillBox {
        width: 500px;
        height: 480px;
        margin-left: 30px;
    }
    
    .formWrapper {
        width: 350px;
        height: 400px;
    }
    
    .wrapper2 {
        width: 350px;
        gap: 30px;
    }
    
    .wrapper3 {
        width: 350px;
        gap: 30px;
    }
}

/* Mobile landscape and smaller tablets */
@media (max-width: 768px) {
    .Title {
        font-size: 42px;
        margin-left: 15px;
    }
    
    .TitleDiv {
        height: 80px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }
    
    .icons {
        width: 100%;
        justify-content: flex-start;
        padding-left: 15px;
        gap: 30px;
        margin-top: 10px;
    }
    
    .icons > a > p {
        font-size: 16px;
    }
    
    .wrapper {
        flex-direction: column;
        gap: 40px;
        padding: 30px 15px;
    }
    
    .carousel {
        width: 350px;
        height: 420px;
    }
    
    .carousel-button {
        font-size: 2rem;
    }
    
    .fillBox {
        width: 100%;
        max-width: 450px;
        height: auto;
        margin-left: 0;
    }
    
    .formWrapper {
        width: 90%;
        max-width: 400px;
        height: auto;
        padding: 30px 20px;
    }
    
    .wrapper2 {
        width: 100%;
        max-width: 350px;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .wrapper3 {
        width: 100%;
        max-width: 350px;
        gap: 30px;
    }
    
    .form {
        width: 140px;
    }
    
    .Address {
        width: 90%;
        max-width: 300px;
    }
    
    .button2 {
        margin-left: 0;
    }
    
    .footer {
        flex-direction: column;
        padding: 40px 30px;
        margin-top: 60px;
    }
    
    .footer-left {
        max-width: 100%;
    }
    
    .footer-brand {
        font-size: 32px;
    }
}

/* Mobile portrait */
@media (max-width: 480px) {
    .Title {
        font-size: 36px;
        margin-left: 10px;
    }
    
    .TitleDiv {
        height: 70px;
    }
    
    .icons > a > p {
        font-size: 14px;
    }
    
    .wrapper {
        padding: 20px 10px;
        gap: 30px;
    }
    
    .carousel {
        width: 300px;
        height: 360px;
    }
    
    .carousel-button {
        font-size: 1.5rem;
        padding: 0 .3rem;
    }
    
    .carousel-button.prev {
        left: 0.5rem;
    }
    
    .carousel-button.next {
        right: 0.5rem;
    }
    
    .fillBox {
        max-width: 320px;
    }
    
    .formWrapper {
        width: 95%;
        max-width: 320px;
        padding: 25px 15px;
        gap: 20px;
    }
    
    .wrapper2 {
        max-width: 280px;
        gap: 15px;
    }
    
    .wrapper3 {
        max-width: 280px;
        gap: 25px;
    }
    
    .form {
        width: 120px;
        height: 38px;
        font-size: 14px;
    }
    
    .Address {
        width: 95%;
        height: 38px;
        font-size: 14px;
    }
    
    .button2 {
        width: 160px;
        height: 45px;
        font-size: 18px;
    }
    
    .footer {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .footer-brand {
        font-size: 28px;
    }
    
    .footer-description {
        font-size: 14px;
    }
    
    .footer-title {
        font-size: 18px;
    }
    
    .footer-links a {
        font-size: 14px;
    }
}