@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');
*{
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
html{
    overflow-x: hidden;
}
body{
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(to right, rgb(255,255,255), rgb(254,215,173));
    overflow-y: scroll; /* Enables vertical scrolling */

    
}
nav{
    width: 100%;
    height: 10vh;
    position: sticky;
}
.nav-container{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.logo{
    color: black;
    font-size: 2rem;
    font-weight: bolder;
}
.logo span{
    color: rgb(109,67, 0);
    text-shadow: 0 0 10px rgb(109,67, 0);
}
.hamburg, .cancel{
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 10px;
    color: black;
    font-size: 2rem;
    display: none;
}
.nav-container .links {
    display: flex;
    gap: 3rem;
    align-items: center;
}
.nav-container .links a{
    position: relative;
    font-size: 1.2rem;
    color: black;
    text-decoration: none;
    font-weight: 500;
    transform: 0.3s linear;
}
.nav-container .links a::before{
    position: absolute;
    content: "";
    bottom: -3px;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: rgb(109,67, 0);
    transition: 0.2s linear;
}
.nav-container .links a:hover::before{
    width: 100%;
}
.nav-container .contact-btn{
    background-color: transparent;
    padding: 5px 20px;
    border-radius: 20px;
    border: 2px solid rgb(109,67, 0);
    transition: 0.2s linear;
}
.nav-container .contact-btn a{
    color: rgb(109,67, 0);
    transition: 0.3s linear;
}
.nav-container .contact-btn:hover, .nav-container .contact-btn:hover a{
    background-color: rgb(109,67, 0);
    color: white;
}
.nav-container .links a:hover{
    color: rgb(109,67, 0);
}
.dropdown{
    z-index: 100;
    position: absolute;
    top: 0;
    transform: translateY(-500px);
    width: 100%;
    height: auto;
    backdrop-filter: brightness(40%) blur(3px);
    box-shadow: 0 0 20px black;
    transition: 0.2s linear;
}
.dropdown .links a{
    color: white;
    display: flex;
    text-decoration: none;
    justify-content: center;
    padding: 15px 0;
    align-items: center;
    transition: 0.2s linear;
}
.dropdown .links a:hover{
    background-color: rgb(109,67, 0);
}

@media (max-width:768px) {
    body{
        overflow-y: visible;
    }
    nav .logo{
        position: absolute;
        top: 16px;
        left: 15px;
        font-size: 1.5rem;
    }
    .main-container{
        
        flex-direction: column;
    }
    .nav-container .links{
        display: none;
    }
    .hamburg,.cancel{
        display: block;
    }
    .main-container .content{
        width: 80%;
    }
    .social-links i{
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.5rem;
    }
    .cancel{
        color: white;
    }
    .main-container .image{
        width: 80%;
        margin-bottom: 0px;
    }
    .prev, .next {
        font-size: 13px;
        padding: 8px;
        
    }
  
    .caption-container {
        font-size: 12px;
        padding: 8px;
    }
  
    .column img {
        width: 60px;
    }

    .slideshow-container {
        width: 80%;
    }

}

/*Slideshow*/
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

  
/* Center the entire project section */
.w3-container {
    text-align: center;
}

.w3-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    width: 100%;
    margin: auto;
    opacity: 0;
    transform: scale(0.8);
    animation: zoomIn 1.5s ease-out forwards;
}

.tool-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-left: 5px;
}
  
.tools-inline {
    display: inline-flex; 
    vertical-align: middle;
    gap: 5px;
}
  
  

/* Center each slide */
.mySlides {
    display: none;
    text-align: center;
    width: 100%;
    
}


@keyframes borderAnimation {
    0% {
        border-color: rgb(109, 67, 0);
    }
    25% {
        border-color: rgb(243, 199, 127);
    }
    50% {
        border-color: rgb(255,255,255);
    }
    75% {
        border-color: rgb(243, 199, 127);
    }
    100% {
        border-color: rgb(109,67, 0);
    }
}

/* Center images inside slides */
.mySlides img {
    width: 70%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: auto;
    border-radius: 10px;
    position: relative;
    padding: 10px;
    border: 3px solid red;
    animation: borderAnimation 3s linear infinite;
}

/* Style text inside slides */
.slide-text {
    text-align: center;
    margin-top: 10px;
}

.slide-text h2 {
    font-weight: bold;
    color: rgb(109, 67, 0);
    text-shadow: 2px 2px 5px rgb(226, 124, 14);
}

.slide-text p{
    font-style: italic;
    color: black;

}

.slide-text span{
    text-shadow: 2px 2px 5px rgb(233, 142, 38);
    color: rgb(109,67, 0);
}

/* Buttons styling */
.w3-button {
    margin-top: 10px;
    background-color: rgb(109, 67, 0);
    color: white;
    padding: 10px 50px;
    border-radius: 5px;
    text-decoration: none;
}

/* Slide buttons (next & prev) */
.slide-btn {
    background: none;
    border: none;
    font-size: 30px;
    color: black;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px;
}

.slide-btn:hover {
    color: rgba(255, 255, 255, 0.7);
}

.prev {
    left: 10%;
}

.next {
    right: 10%;
}

/* Hover effects */
.w3-button:hover {
    background:transparent;
    border: 2px solid rgb(109,67, 0);
    color: rgb(109,67, 0);
    font-weight: bold;
}

@media (max-width: 768px) {
    .w3-content {
        max-width: 95%; /* Reduce width for small screens */
        transform: scale(1); /* Remove initial scaling effect */
    }

    .mySlides img {
        width: 90%; /* Make images more responsive */
        padding: 5px;
        border: 2px solid red; /* Reduce border thickness */
    }

    .slide-text h2 {
        font-size: 20px; /* Adjust heading size */
    }

    .slide-text p {
        font-size: 16px; /* Adjust paragraph size */
    }

    .slide-btn {
        font-size: 25px; /* Reduce button size */
        padding: 5px;
    }

    .prev {
        left: 5%;
    }

    .next {
        right: 5%;
    }

    .w3-button {
        padding: 8px 30px; /* Reduce button padding */
        font-size: 14px;
    }
}

