
header {
    display: block; /* ensures vertical stacking */
}

/* TOP BAR (header1) scrolls normally */
.header1{
    height: 140px;
    background-color: #3B1F12;
    align-content: center;
    display: flex;
    justify-content: center;
    padding-top: 111px;    
    color: white;
    margin-bottom: 10px;
}
.nav-logo{
    margin-right: 400px;
    padding-top: 5px;
}
.navbar{
    background-color: white;
    height: 100px;
    border: solid;
    align-items: center;
    justify-content: space-evenly;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    z-index: 1000;
}

/* NAV LINKS */
.nav-cont {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 23px;
}

.nav-cont a {
    text-decoration: none;
    color: black;
    font-family:'Courier New', Courier, monospace;
}

.nav-cont a:hover {
    color: red;
    font-weight: bold;
}

/* DROPDOWNS */
.dropdown {
    position: relative;
    display: inline-block;
    font-family:'Courier New', Courier, monospace;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #D8C6B7;
    min-width: 220px;
    border-radius: 6px;
    z-index: 1000;
    border: solid;
}

.dropdown-content > a {
    color: black;
    padding: 12px 16px;
    display: block;
    font-size: 16px;
}

.dropdown-content a:hover {
    background-color: #684A38;
    font-weight: bolder;
    color: white;
}

/* Hover dropdown */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Nested dropdown */
.dropdown-content .dropdown {
    position: relative;
}

.dropdown-content .dropdown .dropdown-content {
    top: 0;
    left: 100%;
    display: none;
}

.dropdown-content .dropdown:hover > .dropdown-content {
    display: block;
}

/* MAIN CONTENT */
.about {
    background-color: #684A38;
    color: white;
    display: flex;
    justify-content: space-between;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 200px;
    padding-right: 200px;
    margin-left: 100px;
    margin-top: 50px;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    
}
.about-cont{
    font-family: arial;
    padding-top: 40px;
    padding-right: 70px;
}
.projects{
    margin-top: 50px;
    background-color: #281D13;
    color: white;
    /* margin-right: 100px;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px; */
    
    
}
.project-cont{
    padding-top: 50px;
}
/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* SECTION */
.projects-section {
    
    padding: 60px 0;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 100px;
}


/* WRAPPER */
.projects-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* TRACK */
.projects-track {
    display: flex;
    gap: 30px;
    animation: slide-left 8s linear infinite;
}
.projects-track a{
    text-decoration: none;
}
/* CARD */
.project-card {
    min-width: 300px;
    background-color: #D8C6B7;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    border: solid white;
}

.project-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.project-card h3 {
    text-align: center;
    padding: 12px;
    color: #281D13;
    font-size: 18px;
}

/* SLIDE ANIMATION */
@keyframes slide-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-95%);
    }
}

/* EDGE FADES */
.fade {
    position: absolute;
    top: 0;
    width: 140px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.fade.left {
    left: 0;
    background: linear-gradient(
        to right,
        #281D13 0%,
        rgba(40,29,19,0) 100%
    );
}

.fade.right {
    right: 0;
    background: linear-gradient(
        to left,
        #281D13 0%,
        rgba(40,29,19,0) 100%
    );
}

.projects-wrapper:hover .projects-track {
    animation-play-state: paused;
}
.why-choose-us{
    margin-top: 50px;
    padding-bottom: 700px;
    background-color: #684A38;
    color: white;
    margin-right: 100px;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
}
.why-choose-us-cont{
    padding-top: 50px;
    
}
footer{
    margin-top: 50px;
    height: 400px;
    background-color: white;
    border: solid black;
    border-radius: 10px;
    padding-left: 40px;
    padding-right: 40px;
}
.footer{
    padding-top: 30px;
    align-content: center;
    display: flex;
    justify-content: space-between;
    margin-left: 50px;
    margin-right: 150px;
}
.footer-social{
    display: flex;
    /* justify-content: space-evenly; */
    gap: 100px;
}
.footer-section a{
    text-decoration: none;
    font-size: 20px;
    color: black;
}
.footer-section a:hover{
    font-weight: bold;
}
.intro{
    padding-right: 200px;
}
.social-icons {
    position: fixed;      
    bottom: 30px;         
    right: 30px;           
    display: flex;
    flex-direction: column;
    gap: 15px;             
    z-index: 9999;         
}

.social-icons a img {
    background-color: white;
    width: 50px;           
    height: 50px;
    border-radius: 50%;    
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.social-icons a img:hover {
    transform: scale(1.2); 
}
.kitchen-cont{
    padding-left: 20px;
    padding-right: 20px;
}
.show1{
    background-color: #684A38;
    color: white;
    display: flex;
    justify-content: space-between;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 200px;
    padding-right: 200px;
    margin-left: 100px;
    margin-top: 50px;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
}
.show1 img{
    border: solid white;

}
.show2 img{
    border: solid white;

}
.show2{
    background-color: #684A38;
    color: white;
    display: flex;
    justify-content: space-between;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 200px;
    padding-right: 200px;
    margin-right: 100px;
    margin-top: 50px;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
}
.led2{
    background-color: #684A38;
    color: white;
    display: flex;
    justify-content: space-between;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 200px;
    padding-right: 200px;
    margin-right: 600px;
    margin-left: 100px;
    margin-top: 50px;
    /* border-top-right-radius: 40px; */
    border-bottom-right-radius: 40px;
    border-top-left-radius: 40px;
    /* border-bottom-left-radius: 40px; */
}
.led1{
    background-color: #684A38;
    color: white;
    display: flex;
    justify-content: space-between;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 200px;
    padding-right: 200px;
    margin-right: 100px;
    margin-left: 600px;
    margin-top: 50px;
    /* border-top-right-radius: 40px; */
    border-bottom-right-radius: 40px;
    border-top-left-radius: 40px;
    /* border-bottom-left-radius: 40px; */
}
.why-choose-us {
    background-color: #684A38;
    color: white;
    padding: 80px 100px;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background-color: #D8C6B7;
    color: #281D13;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.why-card p {
    font-size: 15px;
    line-height: 1.6;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}
.banner{
    background-color: #281D13;
    margin-left: 300px;
    margin-right: 300px;
    margin-top: 50px;
    margin-bottom: 50px;
    font-size: 50px;
    color: white;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
    border-radius: 40px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bolder;

}
.fur1{
    background-color: #F4F1EA;
    color: black;
    display: flex;
    justify-content: space-between;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 100px;
    padding-right: 200px;
    margin-right: 100px;
    margin-left: 300px;
    margin-top: 50px;
    /* border-top-right-radius: 40px; */
    border-bottom-right-radius: 40px;
    border-top-left-radius: 40px;
    /* border-bottom-left-radius: 40px; */

}
.fur1 img{
    border: solid black;
}
.fur2 img{
    border: solid white;
}
.fur2{
    background-color: #645043;
    color: white;
    display: flex;
    justify-content: space-evenly;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 100px;
    padding-right: 200px;
    margin-right: 300px;
    margin-left: 100px;
    margin-top: 50px;
    /* border-top-right-radius: 40px; */
    border-bottom-right-radius: 40px;
    border-top-left-radius: 40px;
    /* border-bottom-left-radius: 40px; */


}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, sans-serif;
}

/* SECTION */
.contact-section {
    background-color: #D8C6B7;
    padding: 80px 10%;
    text-align: center;
    border-radius: 40px;
    margin-left: 60px;
    margin-right: 60px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.contact-section h2 {
    font-size: 36px;
    color: #281D13;
}

.subtitle {
    margin: 10px 0 50px;
    color: #684A38;
}

/* CARDS */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}
 .contact-card {
    min-width: 0;
}
.contact-card p {
    word-break: break-word;
    overflow-wrap: anywhere;
}


.contact-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
}

.contact-card span {
    font-size: 32px;
    display: block;
    margin-bottom: 15px;
}

.contact-card h3 {
    color: #281D13;
    margin-bottom: 8px;
}

.contact-card p {
    color: #684A38;
    font-size: 16px;
}

/* MAP */
.map-section iframe {
    width: 100%;
    height: 380px;
    border: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 992px) {

  .about,
  .show1,
  .show2,
  .led1,
  .led2,
  .fur1,
  .fur2 {
    margin-left: 20px;
    margin-right: 20px;
    padding-left: 30px;
    padding-right: 30px;
  }

}
@media (max-width: 768px) {

  .about,
  .show1,
  .show2,
  .led1,
  .led2,
  .fur1,
  .fur2 {
    flex-direction: column;
    gap: 25px;
  }

}
@media (max-width: 768px) {

  .show1 img,
  .show2 img,
  .led1 img,
  .led2 img,
  .fur1 img,
  .fur2 img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

}
footer {
  height: auto;
}

@media (max-width: 900px) {

  .footer {
    flex-direction: column;
    gap: 40px;
    margin: 0;
  }

  .intro {
    padding-right: 0;
  }

  .footer-social {
    flex-direction: column;
    gap: 30px;
  }

}
/* Hide hamburger on desktop */
.hamburger {
  display: none;
}

/* Mobile navbar */
@media (max-width: 900px) {

  .hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
  }

  .hamburger span {
    width: 25px;
    height: 3px;
    background: black;
  }

  .nav-cont {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
  }

  #menu-toggle:checked ~ .nav-cont {
    display: flex;
  }

}
@media (max-width: 768px) {

  .about {
    text-align: center;
  }

  .about-cont {
    padding: 0;
  }

}
* {
  max-width: 100%;
}

body {
  overflow-x: hidden;
}
@media (max-width: 992px) {
  .why-choose-us {
    padding: 60px 30px;
  }
}
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .why-card {
    padding: 25px;
  }
}
.why-choose-us {
  overflow: hidden;
}
/* Hide the checkbox */
#menu-toggle {
    display: none;
}

/* ===== HAMBURGER BASIC ===== */
#menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: black;
    margin: 5px 0;
    display: block;
}
@media (max-width: 768px) {

    /* show hamburger */
    .hamburger {
        display: flex;
    }

    /* hide menu initially */
    .nav-cont {
        position: absolute;
        top: 100px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        display: none;
        padding: 20px 0;
    }

    /* toggle menu */
    #menu-toggle:checked ~ .nav-cont {
        display: flex;
    }
}
* {
    box-sizing: border-box;
}
@media (max-width: 768px) {
    .navbar {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 768px) {

    /* Hide social icons in navbar on mobile */
    .navbar .social {
        display: none;
    }

}
@media (max-width: 768px) {

    .navbar {
        padding-left: 15px;
        padding-right: 15px;
        border-width: 1px;
        width: 100%;
        box-sizing: border-box;
    }

    .nav-logo {
        margin-right: 0;   /* STOP OVERFLOW */
    }
}

/* Hide checkbox always */
#menu-toggle {
    display: none;
}

/* Hamburger default hidden (desktop) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: black;
    margin: 4px 0;
    border-radius: 2px;
}
@media (max-width: 768px) {

    .hamburger {
        display: flex;
    }

    .nav-cont {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        display: none;
        padding: 20px 0;
    }

    #menu-toggle:checked + .hamburger + .nav-cont {
        display: flex;
    }
}

/* Mobile view */
@media (max-width: 768px) {
    .about {
        flex-direction: column;
        padding: 20px;
        border-radius: 20px;
        text-align: center;
    }

    .about-cont {
        padding: 0;
        margin-top: 20px;
    }
}
@media (max-width: 768px) {
    .banner {
        font-size: 32px; /* smaller text on mobile */
        padding: 30px;
        border-radius: 20px;
        margin: 30px auto; /* reduced margin */
    }
}
@media (max-width: 768px) {
    .why-choose-us {
        padding: 40px 20px; /* reduce padding */
        margin: 30px auto;   /* center horizontally */
        border-radius: 20px;
        text-align: center;  /* center headings */
        max-width: 95%;      /* fit within mobile screen */
    }

    .why-choose-us h2 {
        font-size: 28px;     /* smaller font on mobile */
        margin-bottom: 30px;
    }

    .why-grid {
        display: grid;
        grid-template-columns: 1fr; /* stack cards vertically */
        gap: 20px;
        justify-items: center; /* center each card */
    }

    .why-card {
        width: 100%; /* make cards full width of grid cell */
        max-width: 350px; /* optional max width */
    }
}


.about-cont {
    max-width: 600px;        /* keeps text from stretching too much */
}
@media (max-width: 768px) {
    .about-video {
        height: 300px;
    }

    .wall-video {
        height: 400px;
    }
}
.about-video,
.wall-video {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
/* ===== TOUCH SCROLL FOR PROJECT SLIDER ===== */
@media (max-width: 992px) {
  .projects-track {
    animation: none !important;   /* stop auto-slide on mobile */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* smooth swipe on iOS */
    scroll-behavior: smooth;
    padding-bottom: 10px;         /* optional spacing */
  }

  .projects-wrapper {
    overflow: hidden; /* keeps fades intact */
  }

  .project-card {
    flex-shrink: 0;   /* prevents shrinking so cards scroll horizontally */
  }

  /* hide scrollbar */
  .projects-track::-webkit-scrollbar {
    display: none;
  }
  .projects-track {
    scrollbar-width: none; /* Firefox */
  }
}
/* ===== AUTO-SLIDE + TOUCH SCROLL ===== */
.projects-wrapper {
    overflow: hidden; /* keeps fade effect */
}

.projects-track {
    display: flex;
    gap: 30px;
    animation: slide-left 8s linear infinite; /* keeps your auto-slide */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* smooth swipe for iOS */
}

.projects-track::-webkit-scrollbar {
    display: none; /* hide scrollbar on Chrome/Safari */
}

.projects-track {
    scrollbar-width: none; /* hide scrollbar on Firefox */
}

.project-card {
    flex-shrink: 0; /* prevents cards from shrinking */
    min-width: 300px; /* ensures proper swipe width */
}
