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

body {
    font-family: "Raleway", sans-serif !important;
    padding-top: 100px;
}

header nav ul li {
    display: inline-flex;
    margin-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
}

header nav ul {
    margin-bottom: 2px;
}

.navbar {
    padding: 0 !important;
}

.header-icon {
    text-decoration: none;
    color: #333;
    font-size: 12px;
    background-color: #01DEBB;
    padding: 5px;
    color: white;
    border-radius: 2px;
}

.header-contact {
    color: #2581c4;
    font-size: 12px;
    text-decoration: none;
}

.navbar-brand {
    font-size: 16px !important;
}

.nav-link {

    font-size: 14px !important;
}

.nav-link:hover {
    color: #01DEBB !important;
    font-size: 14px !important;
}

.lang-switcher button {
    border-radius: 2px;
    font-size: 12px;
    padding: 4px 10px;
    color: #2581c4;
    font-weight: 600;
    border: none;
    background-color: white;
    transition: all 0.3s ease-in-out;
}

.lang-switcher button:hover {
    background-color: #2581c4;
    color: white;
}

.bg-heading {
    background-image: url('/assets/img/hero1.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 300px;
    line-height: 100px;
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
}

.information-text {
    color: #626262;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

th,
td {
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #2581c4 !important;
    color: white;
}

tr:hover {
    background-color: #f1f1f1;
}

@media (max-width: 768px) {

    table,
    tbody,
    tr,
    td {
        display: block;
        width: 100%;
    }

    tr {
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 6px;
    }

    td {
        padding: 10px;
        text-align: right;
        position: relative;
    }

    td::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        font-weight: bold;
        text-align: left;
    }

    th {
        display: none;
    }
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.gallery-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.15);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.caption {
    padding: 15px;
    font-size: 14px;
    color: #333;
    text-align: center;
}

@media (max-width: 600px) {
    .gallery-item img {
        height: 180px;
    }
}

.accordion-button:not(.collapsed) {
    color: #2581c4 !important;
    background-color: #CBD501 !important;
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.accordion-button:focus {
    box-shadow: none !important;
}

.language-select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    padding: 4px 8px !important;
    font-size: 0.9rem !important;
    height: auto !important;
    background-image: none !important;
    background-color: transparent !important;
    border: none !important;
    color: #000;
    font-weight: 500 !important;
    margin-top: 2px !important;
    line-height: 1.5 !important;
}


.language-select:focus {
    outline: none;
    box-shadow: none;
}


.lang-switcher {
    display: flex;
    align-items: center;
    height: 100%;
}

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

body {
    font-family: "Raleway", sans-serif !important;
}

header nav ul li {
    display: inline-flex;
    margin-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
}

header nav ul {
    margin-bottom: 2px;
}

.navbar {
    padding: 0 !important;
}

.header-icon {
    text-decoration: none;
    color: #333;
    font-size: 12px;
    background-color: #01DEBB;
    padding: 5px;
    color: white;
    border-radius: 2px;
}

.header-contact {
    color: #133D4D;
    font-size: 12px;
    text-decoration: none;
}

.navbar-brand {
    font-size: 16px !important;
}

.nav-link {

    font-size: 14px !important;
}

.nav-link:hover {
    color: #BED734 !important;
    font-size: 14px !important;
}


.carousel-item {
    position: relative;
    overflow: hidden;
    height: calc(100vh - 80px);

}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    animation: slowZoom 60s linear infinite;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.4);
    }
}


.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.062);
    /* koyuluk oranı ayarlanabilir */
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}


.carousel-overlay h1 {
    color: #ffffff;
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    z-index: 11;
}

.rezervasyon-btn {
    z-index: 11;
    transition: all 0.3s ease-in-out;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border: 2px solid #ffffff;
    background: transparent;
    color: #fff;
    border-radius: 0;
}

.rezervasyon-btn:hover {
    transform: scale(1.05);
    background-color: #ffffffcc;
    color: #000;
    border: none;
}

/* === Responsive === */
@media (max-width: 768px) {
    .carousel-overlay h1 {
        font-size: 1.6rem;
        line-height: 50px !important;
    }

    .rezervasyon-btn {
        font-size: 0.9rem;
        padding: 0.6rem 1.4rem;
    }
}

.carousel-item {
    position: relative;
    overflow: hidden;
    height: calc(100vh - 80px);
    /* header varsa */
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    animation: slowZoom 60s linear infinite;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.5);
    }
}

.navbar-toggler {
    border: none !important;
    box-shadow: none !important;
}

.btn-outline-light:hover {
    background-color: #133D4D !important;
}

.lang-switcher button {
    border-radius: 2px;
    font-size: 12px;
    padding: 4px 10px;
    color: #133D4D;
    font-weight: 600;
    border: none;
    background-color: white;
    transition: all 0.3s ease-in-out;
}

.lang-switcher button:hover {
    background-color: #133D4D;
    color: white;
}

.btn-primary {
    background-color: #133D4D !important;
    border-color: #133D4D !important;
}

.text-green {
    color: #BED734 !important;
}

.accordion-button:not(.collapsed) {
    color: #133D4D !important;
    background-color: #BED734 !important;
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.accordion-button:focus {
    box-shadow: none !important;
}

.secondary-color {
    color: #133D4D !important;
}

.btn-outline-primary {
    color: #133D4D !important;
    border-color: #133D4D !important;
}

.btn-outline-primary:hover {
    color: #133D4D !important;
    border-color: #BED734 !important;
    background-color: #BED734 !important;
}

.heading-line::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #BED734;

}

@keyframes sail {
    0% {
        offset-distance: 0%;
    }

    100% {
        offset-distance: 100%;
    }
}

#boat {
    offset-path: path("M50 300 Q 150 200, 250 250 T 450 150");
    offset-rotate: auto;
    animation: sail 10s linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0.5deg);
    }

    50% {
        transform: translateY(-10px) rotate(-0.5deg);
    }

    100% {
        transform: translateY(0px) rotate(0.5deg);
    }
}

.footer-bg {
    background-color: #133D4D !important;
}

h1 {
    font-size: 1.4rem !important;
    display: inline-block !important;
}

.language-select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    padding: 4px 8px !important;
    font-size: 0.9rem !important;
    height: auto !important;
    background-image: none !important;
    background-color: transparent !important;
    border: none !important;
    color: #000;
    font-weight: 500 !important;
    margin-top: 2px !important;
    line-height: 1.5 !important;
}

.heading-badge {
    display: inline;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 1rem;
    margin: 0;
}

.language-select:focus {
    outline: none;
    box-shadow: none;
}


.lang-switcher {
    display: flex;
    align-items: center;
    height: 100%;
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px dashed #ddd;
    font-size: 1rem;
    line-height: 1.5;
}

.spec-list li span {
    font-weight: 600;
    color: #333;
    max-width: 50%;
}

.spec-list li {
    flex-wrap: wrap;
}

.spec-list li span,
.spec-list li {
    word-break: break-word;
}

.yacht-specs {
    padding: 1rem 0;
}

.btn-green {
    background-color: #BED734 !important;
    font-size: 1rem !important;
}

.dropdown-menu.show {
    display: block;
    font-size: 12px !important;
}

.btn-green {
    background-color: #BED734 !important;
    font-size: 1rem !important;

}

/* Responsive navbar için mobil düzenlemeler */
@media (max-width: 576px) {
    .navbar-collapse {
        flex-direction: column;
        align-items: flex-start !important;
        padding: 1rem 0;
    }

    .navbar-nav {
        width: 100%;
        flex-direction: column !important;
        gap: 0.5rem;
    }

    .navbar-nav.align-items-center {
        flex-direction: row !important;
        justify-content: space-between;
        width: 100%;
        margin-top: 1rem;
    }

    .language-select {
        width: 100%;
        max-width: 120px;
        font-size: 0.9rem;
    }

    .lang-switcher {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link {
        padding-left: 0;
    }

    .bi-instagram {
        font-size: 1.2rem;
    }

    .btn-green {
        background-color: #B8D533;
        color: white;
    }
}

.reservation{
    color: #BED734 !important;
  }