* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Inter, system-ui;
    font-optical-sizing: auto;
    font-style: normal;
    background-color: #2b2b2b;
}

.container {
    display: flex;
    height: 100vh;
}

.left-section {
    flex: 1;
    background-color: #2b2b2b;
    color: #fff;
    padding: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo img {
    width: 150px;
    margin-bottom: 30px;
}

h1 {
    font-size: 2rem;
    margin-bottom: 70px;
    font-weight: 700;
}

.columns {
    display: flex;
    justify-content: space-between;
}

.services, .contact {
    width: 45%;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

ul {
    list-style: none;
}

li {
    padding: 2px 0;
}

p {
    line-height: 1.5;
}


a {
    text-decoration-color: #888888;
    text-decoration-thickness: 2px;
    color: #ffffff;
}

a:hover {
    text-decoration-color: #dddddd;
}

a:focus {
    color: #666666;
    text-decoration-color: #666666;
}


/* Contact Button */
.button {
    padding: 15px 30px;
    font-size: 16px;
    color: #2b2b2b;
    background-color: #DDDDDD;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.1s ease;
}

.button:hover {
    background-color: #FFFFFF;
}


/* Modal Styles */

#contact-modal h2 {
    font-size: 2rem;
   }


.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2b2b2b;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.modal-content {
    padding: 20px;
    border-radius: 5px;
    position: relative;
    width: 95%;
    max-width: 600px;
}

.close {
    position: absolute;
    top: 25px;
    right: 25px;
    cursor: pointer;
}

.icon {
    position: absolute;
    top: 25px;
    left: 25px;
}

.icon img {
    width: 32px;
    height: 32px;
}

.close:hover {
    opacity: 0.5;
    transition: opacity 0.1s ease;
}


/* Social Icons */

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 40px; 
}

.icons {
  display: inline-block;
  opacity: 0.5; 
}

.icons img {
    width: 32px;
    height: 32px;
}

.icons:hover {
  opacity: 1;
  transition: opacity 0.1s; 
}

/* Form Styles */

form {
     margin-top: 30px;
}

.fejkfield {
     display:none;
}

input, select, textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #222222;
    border-radius: 10px;
    margin-bottom: 15px;
    box-sizing: border-box;
    background: #222222;
    color: #fff;
    font-size: 16px;
    font-family: Inter, system-ui;
    font-optical-sizing: auto;
    font-style: normal;
}

select {
    padding-right: 65px;
}

input:hover, select:hover, textarea:hover {
    border: 1px solid #444444;
}

input:focus, select:focus, textarea:focus {
    border-color: #999999;
    outline: none;
}


.right-section {
    flex: 1;
    position: relative;
    z-index: 1;
}

.slideshow-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
    opacity: 0;   
    transition: opacity 1.5s ease-in-out;
}
.slides:first-child {
    opacity: 1; 
    z-index: 55; 
}
.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
    .container {
        flex-direction: column;
        height: auto;
    }

    .left-section {
        padding: 75px;
    }

    .columns {
        flex-direction: column;
    }

    .services, .contact {
        width: 100%;
        margin-bottom: 20px;
    }

    .right-section {
        height: 400px;
        flex: auto;
    }

    .slideshow-container {
        height: 100%;
    }

    h1 {
        font-size: 1.5rem;
    }

    #contact-modal h2 {
    font-size: 1.8rem;
   }
}

@media (max-width: 768px) {
    .left-section {
        padding: 50px;
    }

    h1 {
        font-size: 1.6rem;
        margin-bottom: 40px;
    }

    #contact-modal h2 {
    font-size: 1.6rem;
   }

    li {
    font-size: 1.2rem;
    }

    p {
    font-size: 1.2rem;
    }

    .columns {
        flex-direction: column;
    }

    .services, .contact {
        width: 100%;
        margin-bottom: 30px;
    }

    .right-section {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        height: auto;
    }

    #contact-modal {
    padding-top: 90px;
   }

   #contact-modal h2 {
    font-size: 1.6rem;
   }

    .left-section {
        padding: 30px;
    }

    .columns {
        flex-direction: column;
    }

    .services, .contact {
        width: 100%;
        margin-bottom: 30px;
    }

    h1 {
        font-size: 1.6rem;
        margin-bottom: 40px;
    }

    li {
    font-size: 1.4rem;
    }

    p {
    font-size: 1.4rem;
    }

    .right-section {
        height: 250px;
    }

    .slideshow-container {
        height: 100%;
    }

    .button {
    width: 100%;
}
}