/* Base Reset and Layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html {
    scrollbar-width: none;
}

body {
    overflow: auto;
    min-height: 100vh;
    background: rgb(23, 23, 23);
    background-size: cover;
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    display: none;
}

/* Header */
header {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    min-height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    transition: transform 0.3s ease-in-out;
    transform: translateY(0);
}

.logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin-top: 9px;
}/* 🎨 استایل منو در حالت دسکتاپ */
/* منوی دسکتاپ */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

/* منوی اصلی */
nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 20px;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

nav ul li a:hover {
    color: #FFC107;
}

/* دکمه همبرگر - فقط توی موبایل دیده میشه */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

/* ریسپانسیو برای موبایل */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav#main-nav {
        display: none;
        width: 100%;
    }

    nav#main-nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        background-color: #2c2c2c98; /* یا رنگ دلخواه تو */
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        padding: 10px 0;
        margin-right: 0px;
    }

    nav ul li {
        margin: 10px 0;
    }

    nav ul li a {
        font-size: 18px;
    }
}

/* دکمه همبرگر - فقط توی موبایل دیده میشه */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

/* ریسپانسیو برای موبایل */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav#main-nav {
        display: none;
        width: 100%;
    }

    nav#main-nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        background-color: #2c2c2c98; /* یا رنگ دلخواه تو */
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        padding: 10px 0;
        margin-right: 0px;
    }

    nav ul li {
        margin: 10px 0;
    }

    nav ul li a {
        font-size: 18px;
    }
}


.about-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #181818;
    margin-top: 100px; /* Ensure content is not hidden under fixed header */
}

.about-container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
    text-align: left;
}

.about-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.about-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ffffff;
}

.about-image img {
    width: 369px;
    height: 537px;
    border-radius: 9px;
}

@media (max-width: 768px) {
    header {
        padding: 0 20px;
    }
    .about-container {
        flex-direction: column;
        padding: 20px;
    }
    .about-image img {
        width: 100%;
        max-width: 396px;
        margin: 0 auto;
    }
    .about-text {
        text-align: center;
    }
    .about-section h1 {
        font-size: 1.8rem;
    }
    .about-section p {
        font-size: 1rem;
    }
    nav ul li {
        margin-left: 10px;
    }
    nav ul li a {
        font-size: medium;
    }
}

#contact {
    background: rgba(28, 37, 38, 0.72);
    background-image: url('../images/background-images/contact-background.jpg');
    background-size: 36px;
    color: #ffffff;
    padding: 20px;
    position: relative;
    text-align: left;
    font-size: 24px;
    height: 117px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 18px;
    margin-left: 0%;
    width: 100%;
}

#contact h2 {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 15px;
}

#contact .social-icons {
    position: absolute;
    bottom: 10px;
    left: 20px;
    display: flex;
    gap: 15px;
}

#contact .social-icons img {
    width: 30px;
    margin-right: 0;
    vertical-align: middle;
    transition: transform 0.2s ease;
}

#contact .social-icons img:hover {
    transform: scale(1.1);
}

.whatsapp-icon,
.instagram-icon,
.pinterest-icon,
.linkedin-icon,
.behance-icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-left: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #visual-tour {
        height: auto;
        padding: 15px;
    }

    .image-links img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .image-wrapper img {
        width: 100%;
        height: auto;
    }

    #contact {
        padding: 15px;
        height: auto;
    }

    #contact h2 {
        font-size: 28px;
    }

    #contact .social-icons {
        gap: 10px;
        bottom: 5px;
    }

    #contact .social-icons img {
        width: 25px;
    }
}