body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #eda841;
    width:100vw;
}
h1 {
    font-family: 'Roboto', Arial, sans-serif;
    color: #333;
    text-align: center;
    margin-top: 50px;
}
header {
    background-color: rgba(51, 51, 51, 0.5);
    color: #fff;
    padding: 6px 0px;
    justify-content: center;
    position: fixed;
    top: -100px;
    width: 100%;
    z-index: 10;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.4s ease-in-out;
    animation: slideDown 1s ease-out forwards;
}
header.scrolled {
    background-color: #333;
}
@keyframes slideDown {
    to {
        top: 0;
    }
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    flex-wrap: wrap;
}
.logo h1 {
    margin: 0;
}
.logo img {
    transition: transform 0.3s;
}
.logo img:hover {
    transform: scale(1.1);
}
nav {
    flex-grow: 1;
    margin-left: 60px;
    margin-bottom: 10px;
}
.nav-list {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
}
.nav-item {
    position: relative;
    margin-right: 5px;
    font-size: 18px;
}
.nav-item a {
    color: #fff;
    font-weight:500;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    width: auto;
    text-align: center;
    margin-top: 9px;
    
}
.nav-item a:hover,
.nav-item:hover > a {
    background-color: #444;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #3d3d3d;
    width: 100vw;
    height: 8cm;
    color: white;
    padding: 20px;
    text-align: center;
    box-sizing: border-box;
    z-index: 4;
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.42);
}
.nav-item:hover .dropdown-menu {
    display: block;
}
.dropdown-menu li {
    border-bottom: 1px solid #555;
}
.dropdown-menu li a {
    padding: 10px 15px;
}
.dropdown-menu li a:hover {
    background-color: #555;
}
.phone-button a {
    background-color: #ffa200;
    color: #fff;
    text-outline: 1px solid #333;
    padding: 6px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-size: x-large;
    display: flex;
    align-items: center;
}
.phone-button a:hover {
    background-color: #fa7c05;
}
.contact-icon {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}
.phone-icon {
    height: 36px;
    margin-right: 5px;
    vertical-align: middle;
}
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.footer-icons a {
    display: inline-block;
    transition: transform 0.3s;
}
.footer-icons a:hover {
    transform: scale(1.2);
}
.footer-icons img {
    width: 50px;
    height: 50px;
}
.subnavbar {
    display: none;
}
.subnavbar-row {
    display: none;
}
.nav-item:hover .dropdown-square,
.dropdown-square:hover {
    display: block;
}
.dropdown-long-square {
    display: none;
    width: 13cm;
    height: 10cm;
    background-color: #3d3d3d;
    border-radius: 10px;
    position: absolute;
    top: 100%;
    margin-top: 10px;
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.42);
    z-index: 4;
    left: -108px;
}
.nav-item:hover .dropdown-long-square,
.dropdown-long-square:hover {
    display: block;
}
.dropdown-header {
    color: rgb(220, 121, 9);
    padding: 8px;
    text-align: left;
    font-weight: bold;
    font-size: 23px;
}
.dropdown-description {
    color: white;
    text-align: left;
    font-size: 17px;
    padding: 8px;
}
.dropdown-button {
    display: block;
    width: 90%;
    padding: 10px;
    background-color: #ffa200;
    color: white;
    border: none;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    margin-right: 25px;
    margin-left: 25px;
}
.dropdown-A_button {
    display: block;
    width: 90%;
    padding: 10px;
    background-color: #ffffff;
    outline: #333 solid 1px;
    color: rgb(6, 6, 6);
    border: none;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    margin-top: 14px;
    margin-right: 25px;
    margin-left: 25px;
}
.dropdown-button:hover {
    background-color: #fa7c05;
}
.panorama {
    position: relative;
    width: 100%;
    height: 17cm;
    overflow: hidden;
    
}
.panorama img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.panorama .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-color: rgba(0, 0, 0, 0.24);
}
.container {
    position: absolute;
    top: calc(50% - 1.5cm);
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    padding: 0 20px;
    max-width: 1200px;
    width: 100%;
    margin-left: 4px;
}
.headline {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 3.6em;
    font-weight: bold;
    color: #fff;
    opacity: 0;
    transform: translateX(-100%);
    animation: slideIn 1s ease-out forwards;
    margin: 0 4px; /* Add margin to the sides */
}
@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.intro-text {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1.2em;
    color: #d1d1d1;
    margin-top: 20px;
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
    margin: 0 4px;
}
.button-container {
    margin-top: 30px;
    display: flex;
    gap: 25px;
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}
.main-button {
    background-color: #ffa200;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    text-decoration: none;
    transition: background-color 0.3s;
}
.main-button:hover {
    background-color: #fa7c05;
}
.outline-button {
    background-color: rgba(65, 65, 65, 0.6);
    color: #ffa200;
    padding: 10px 20px;
    border: 2px solid #ffa200;
    border-radius: 5px;
    font-size: 18px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    animation: fadeIn 1s ease-in-out forwards;
}
.outline-button:hover {
    background-color: #ffa200;
    color: white;
}
.cards-container {
    display: flex;
    justify-content: center;
    position: relative;
    top: -3.2cm;
    margin-bottom: -2cm;
    animation: fadeIn 2s ease-in-out forwards;

}
.card {
    width: 9cm;
    height: 8cm;
    background-color: rgb(240, 240, 240);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
    color: #333;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
    border: 3px solid #cccccc;
    position: relative;
    max-width: 80%;
}
.card.visible {
    opacity: 1;
    transform: translateY(0);
}
@media (min-width: 768px) {
    .card:hover {
        transform: translateY(0) scale(1.05);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
}
.card h3 {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1.7em;
    margin-bottom: 10px;
    color: #ffa200;
    animation: fadeInText 2s ease-in-out forwards;
    text-shadow: #2a2a2a94 1px 1px 2px;

}
.card p {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1.03em;
    color: #4f4f4f;
    animation: fadeInText 2s ease-in-out forwards;
}
.card-icon {
    width: 150px;
    height: 150px;
    margin-top: 0px;
    animation: fadeInIcon 1.6s ease-in-out forwards;
}
.card-dropdown {
    display: none;
}
.card-dropdown button {
    display: none; 
}
.card-dropdown button:hover {
    display: none;
}
@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInIcon {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.content {
    font-family: 'Roboto', Arial, sans-serif;
    max-width: 100%;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    display: flex;
    gap: 20px;
}
.content-left {
    flex: 0.5;
}
.content-left img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.content-right {
    flex: 1;
}
.content h2 {
    font-family: 'Roboto', Arial, sans-serif;
    color: #333;
    font-size: 32px;
    margin-bottom: 20px;
}
.content p {
    font-family: 'Roboto', Arial, sans-serif;
    color: #5e5e5e;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 19px;
}
.content-buttons {
    display: flex;
    gap: 5px;
    margin-top: 20px;
}
.content-button {
    padding: 10px 20px;
    background-color: #ffa200;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-left: 10px;
}
.content-button:hover {
    background-color: #fa7305;
}
@media (max-width: 768px) {
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 10px;
    }
    .logo,
    nav {
        display: none;
    }
    .header-container::after {
        content: '☰';
        font-size: 28px;
        color: white;
        cursor: pointer;
        margin-right: 30px;
    }
    .header-container.expanded .logo,
    .header-container.expanded nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .header-container.expanded::after {
        content: '☰';  
    }
    .nav-list {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .nav-item {
        width: 100%;
        text-align: center;
    }
    .nav-item a {
        width: 100%;
        padding: 10px 0;
        max-width: 5cm;
    }

    .subnavbar-row {
        flex-direction: column;
        align-items: center;
    }
    .content {
        flex-direction: column;
        padding: 10px;
    }
    .content-left,
    .content-right {
        max-width: 100%;
    }
    .dropdown-menu {
        width: 100%;
    }
    .panorama {
        height: 12cm;
    }
    .container {
        top: 50%; 
        transform: translate(-50%, -50%);
        padding: 0 10px;
    }
    .headline {
        font-size: 2.5em; 
    }
    .intro-text {
        font-size: 1em; 
    }
    .button-container {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    .main-button,
    .outline-button {
        width: 100%;
        text-align: center;
    }
    .cards-container {
        flex-direction: column;
        align-items: center;
        top: -2cm;
        margin-bottom: 0;
    }
    .card {
        width: 95%;
        max-height:7.5cm;
        height: auto;
        margin-bottom: 0px;
    }
    .footer-content {
        padding: 10px;
    }
    .footer-icons {
        flex-direction: column;
        gap: 10px;
    }
    .header-container.expanded .nav-item a {
        max-width: 3cm;
        justify-content: center;
    }
    .cards-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 20px;
        top: 0;
    }

    .card {
        width: 90%;
        height: auto;
        padding: 0px;
    }

    .modal-content {
        width: calc(80% - 20px); /* Full width minus small padding */
        max-width: none; /* Remove any max-width constraint */
        padding: 15px;
        margin: 0 auto; /* Center the modal */
    }

    .modal-body {
        flex-direction: column;
        gap: 15px;
    }

    .modal-image img {
        max-width: 100%;
        max-height: 150px;
    }

    .close-modal-button {
        width: 100%;
        margin-top: 15px;
    }

    .modal-phone {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 50%;
        height: 90%;
        background-color: rgba(0, 0, 0, 0.8);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        overflow: auto;
    }

    .modal-phone .modal-content {
        width: 90%;
        background-color: white;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .modal-phone .modal-image img {
        max-width: 100%;
        max-height: 200px;
        border-radius: 10px;
        margin-top: 4px;
        margin-left: 55%;
    }

    .modal-phone .modal-text h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
        color: #333;
    }

    .modal-phone .modal-text p {
        font-size: 1rem;
        line-height: 1.6;
        color: #444;
    }

    .modal-phone .close-modal-button {
        width: 60%;
        padding: 10px;
        background-color: #fe9710;
        color: white;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        cursor: pointer;
        text-align: center;
    }

    .modal-phone .close-modal-button:hover {
        background-color: #fa7c05;
    }
}
@media (max-width: 480px) {
    .header-container {
        padding: 0 5px;
    }
    .nav-item a {
        padding: 8px 0;
    }
    .container {
        padding: 0 5px;
    }
    .button-container {
        gap: 5px;
    }
    .cards-container {
        top: -1cm;
    }
    .card {
        width: 95%;
    }
    .footer-content {
        padding: 5px;
    }
    .footer-icons {
        gap: 5px;
    }
}
#services {
    font-family: 'Roboto', Arial, sans-serif;
    max-width: 900px;
    margin: auto;
    padding: 20px;
    text-align: center;
}
#services h2 {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 32px;
    margin-bottom: 10px;
    color: #333;
}
.service-category {
    background: #f9f9f9;
    padding: 20px;
    margin: 15px 0;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.2s ease-in-out;
}
.service-category:hover {
    transform: scale(1.05);
}
.service-title {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}
.service-description {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 18px;
    color: #666;
}
#dropdown-link {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    cursor: pointer;
    margin-top: 9px;
}
#dropdown-content {
    display: none;
    width: 80vw;
    height: 6.2cm;
    background-color: #fcfcfc;
    color: white;
    padding: 20px;
    text-align: center;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-47%);
    z-index: 5;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    box-shadow: 2px 10px 19px rgba(0, 0, 0, 0.495);
    border-radius: 3px;
}
#dropdown-content2 {
    display: none;
    width: 45vw;
    height: auto;
    background-color: #fcfcfc;
    color: #333;
    padding: 8px;
    text-align: center;
    position: absolute;
    top: 100%;
    left: 80%;
    transform: translateX(-47%);
    z-index: 5;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    box-shadow: 2px 10px 19px rgba(0, 0, 0, 0.495);
    border-radius: 3px;
}
#dropdown-content3 {
    display: none;
    width: 24vw;
    height: 6cm;
    background-color: #fcfcfc;
    color: #333;
    padding: 20px;
    text-align: center;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-47%);
    z-index: 5;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    box-shadow: 2px 10px 19px rgba(0, 0, 0, 0.495);
    border-radius: 3px;
}
#dropdown-link:hover + #dropdown-content,
#dropdown-content:hover {
    display: block;
    opacity: 1;
}

#dropdown-link:hover + #dropdown-content2,
#dropdown-content2:hover {
    display: block;
    opacity: 1;
}
#dropdown-link:hover + #dropdown-content3,
#dropdown-content3:hover {
    display: block;
    opacity: 1;
}
.category-row {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}
.category {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #000000;
}
.category:hover {
    transform: scale(1.1);
}
.subcategory-list {
    font-family: 'Roboto', Arial, sans-serif;
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    color: #4f4f4f;
}
.subcategory-list li {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    margin: 5px 0;
}
#dropdown-content2 .subcategory-list li {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 18px;
    color: #333;
}
#dropdown-content2 .subcategory-list button {
    background-color: #ffa200;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}
#dropdown-content2 .subcategory-list button:hover {
    background-color: #fa7c05;
}
#dropdown-content3 .subcategory-list li {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 18px;
    color: #333;
}
#dropdown-content3 .subcategory-list button {
    background-color: #ffa200;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}
#dropdown-content3 .subcategory-list button:hover {
    background-color: #fa7c05;
}
#pricing {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 20px;
    background-color: #f4f4f4;
    border: 1px solid #ccc;
    border-radius: 10px;
    width: 70%;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}
#pricing h2 {
    color: #2a2a2a;
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 20px;
}
#pricing p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}
#pricing strong {
    font-weight: bold;
    color: #000;
}
#pricing button {
    background-color: #ffa200;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}
#pricing button:hover {
    background-color: #fa7c05;
}
.orange-line {
    width: 100%;
    height: 1.3cm;
    background-color: #ef9700;
    margin: 0px 0;
}

#kontakt {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
    font-family: 'Arial', sans-serif;
    font-size: 26px;
}
#kontakt h2 {
    color: #333;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}
.contact-info {
    flex: 1;
    padding: 20px;
    text-align: left;
}
.contact-info p {
    margin: 10px 0;
    font-size: 21px;
    color: #333;
}
.contact-form {
    flex: 1;
    max-width: 750px;
    margin: 0 20px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.contact-form button {
    background-color: #ffa200;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.contact-form button:hover {
    background-color: #fa7c05;
}
/* Gallery hover zoom effect */
#gallery-popup img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: zoom-in;
}

#gallery-popup img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Zoom modal background */
#zoomModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 3vh;
  z-index: 1000;
  animation: fadeIn 0.3s ease-in-out;
}

/* Zoomed image styling */
#zoomedImage {
  width: auto;
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 10px;
  box-shadow: 0 0 20px black;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

/* Fade animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


