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

.navbar {
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: grid;
    grid-template-rows: 20% 80%;
    width: 100%;
    height: 100vh;
}

.navbar-default {
    width: 100%;
}

.navbar-line {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    height: 10vw;
}

.navbar-left {
    justify-self: end;
}

.menu {
    display: flex;
    gap: 3rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.logo img {
    height: 10vw;
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-text {
    background-color: rgba(0, 0, 0, 0.5); /* yazının okunabilirliği için */
    padding: 2rem;
    border-radius: 10px;
    max-width: 90%;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Great Vibes', cursive;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-family: 'Great Vibes', cursive;
}

.hero-button {
    display: inline-block;
    background-color: #ffffff;
    color: #000000;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.hero-button:hover {
    background-color: #e0e0e0;
}

.mobile-icons {
    display: none;
}

.navbar-line i {
    display: none;
}

.tour-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 80%;
    margin: 5vw auto;
    height: auto;
}

.tour-section h2 {
    text-align: center;
    align-self: center;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.tour-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.tour-container-reversed {
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
}

.tour-container-image {
    width: 50%;
    max-height: 30vw;
}

.tour-container-image img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit:cover;
}

.tour-container-description {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tour-container-description h3 {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.tour-container-description p {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

.tour-container-button {
    background-color: black;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    padding: 3% 0;
    text-align: center;
    width: 40%;
}

.tour-photo {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.photo-div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.faq-section {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

.footer {
    background-color: #000;
    color: #fff;
    padding: 3rem 1rem 1rem;
    font-family: "Inter", sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    gap: 2rem;
}

.footer-container h3,
.footer-container h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-container p,
.footer-container li,
.footer-container a {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
    text-decoration: none;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-contact i {
    margin-right: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #444;
    font-size: 0.8rem;
    color: #999;
}

.contact-section {
    background-color: #f9f9f9;
    padding: 5vw 0;
    font-family: "Inter", sans-serif;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5vw;
    width: 80%;
    margin: auto;
}

.contact-info {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.contact-info h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    color: #444;
}

.contact-info li {
    margin: 0.8rem 0;
    font-size: 1rem;
}

.contact-info i {
    margin-right: 10px;
    color: #000;
}

.contact-form {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
    resize: vertical;
}

.contact-form button {
    margin-top: 1.5rem;
    padding: 0.8rem;
    background-color: black;
    color: white;
    border: none;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background-color: #333;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to bottom, #ffffff, #e6f0ff);
    z-index: 9999;
    flex-direction: column;
    padding: 2rem 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mobile-menu.show {
    display: flex;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.mobile-logo img {
    height: 100px;
}

.close-menu {
    font-size: 2rem;
    cursor: pointer;
    color: #333;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.mobile-menu li {
    margin: 1rem 0;
    text-align: center;
}

.mobile-menu a {
    text-decoration: none;
    color: #004080;
    font-weight: 600;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: #0077cc;
}

.default-text {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        display: grid;
        grid-template-rows: 10% 90%;
        width: 100%;
        height: 100vh;
    }

    .navbar-line {
        display: grid;
        grid-template-columns: 20% 60% 20%;
        gap: 0px;
        height: 25vw;
    }

    .navbar-left,
    .navbar-right {
        display: none;
    }

    .logo img {
        height: 25vw;
        margin: 0;
    }

    .mobile-icons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mobile-icons > * {
        padding: 5px;
    }

    .mobile-info {
        display: flex;
        align-items: center;
    }

    .mobile-info > * {
        padding: 5px;
    }

    .mobile-info p {
        font-size: small;
    }

    .navbar-line i {
        display: block;
        justify-self: center;
    }

    .tour-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .tour-container-reversed {
        flex-direction: column;
    }

    .tour-container-image {
        width: 100%;
        height: auto;
        max-height: unset;
    }

    .tour-container-image img {
        width: 100%;
        height: auto;
        max-height: 50vh;
        object-fit: cover;
        border-radius: 10px;
    }

    .tour-container-description {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 5vw;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .mobile-menu.show {
        display: flex;
    }

}