:root {
    --primary-color: #769d91;
    --secondary-color: #c1bca3;
    --text-color: #373a36;
    --text-soft-color: #bcbec0;
    --red-bg: #8B0000;
    --white: #ffffff;
}

@font-face {
    font-family: 'neu';
    src: url('./font/neu.woff2') format('woff2'),
         url('./font/neu.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'avenir';
    src: url('./font/avenir.woff2') format('woff2'),
         url('./font/avenir.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'basker';
    src: url('./font/Baskerville.woff2') format('woff2'),
         url('./font/Baskerville.woff') format('woff');
    font-display: swap;
}

.filterwhite {
    filter: brightness(0) invert(1);
}

body {
    font-family: 'basker', sans-serif;
    margin: 0;
    padding: 0;
}

header {
    height: 14vh;
}

header .logo {
    height: 12vh;
}

main {
    min-height: 85vh;
}

h2 {
    font-size: 4rem;
    font-family: 'warbler-banner', serif;
}

.topbanner {
    right: 20%;
    width: 30%;
    z-index: 2;
    animation: topbanner 1s ease-in-out;
}

@keyframes topbanner {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0%);
    }
}

.footerbanner {
    width: 30%;
    z-index: 2;
    animation: topbanner 1s ease-in-out;
    margin-top: 50px;
}

.ot {
    right: 15%;
    z-index: 3;
    position: absolute;
    top: 100px;
    width: 180px;
    height: 180px;
    text-align: center;
    vertical-align: middle;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: "proxima-nova", sans-serif;
    animation: ot 1s ease-in-out;
}

@keyframes ot {
    0% {
        transform: translateY(-100%);
    }
}

.ot img {
    margin-top: -10px;
}

.ot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/circ.svg);
    background-repeat: no-repeat;
    background-size: contain;
    animation: rotateCircle 10s linear infinite;
    z-index: -1;
}

@keyframes rotateCircle {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.s1 {
    font-family: big-caslon, serif;
    color: var(--white);
    font-size: 1.7rem;
    line-height: 0.8;
}

.s2 {
    font-family: Baskerville, serif;
    color: var(--white);
    font-size: 0.9rem;
}

.s3 {
    font-family: big-caslon, serif;
    color: var(--white);
    font-size: 1.5rem;
    line-height: 0.6;
}
.onda-item img{width: 350px;}

.header-language {
    list-style: none;
    display: flex;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.header-language a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.header-language a:hover,
.header-language a.active {
    color: var(--text-color);
}

.header-contact {
    display: flex;
    gap: 0;
    margin: 0px;
    padding: 0px 20px;
    flex-direction: column;
}

.header-contact img {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.header-contact img:hover {
    filter: brightness(0) invert(0);
    transform: scale(1.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: white;
    font-size: 0.8rem;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.control-dot.active {
    background: var(--white);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.control-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

.siziarayalim {
    width: 20.4%;
    position: fixed;
    bottom: 0;
    left: 0;
    animation: siziarayalim 1s ease-in-out;
    z-index: 2;
}

@keyframes siziarayalim {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(0%);
    }
}

.siziarayalim p {
    position: absolute;
    top: 45%;
    left: 35%;
    font-size: 1.2rem;
    color: var(--white);
    font-family: "proxima-nova", sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.siziarayalim:hover p {
    transform: scale(1.05);
}

.contact-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: all 0.3s ease;
}

.contact-form-overlay.show {
    display: flex;
    opacity: 1;
    align-items: flex-end;
    justify-content: flex-start;
}

.contact-form-container {
    background: #769d91;
    width: 22%;
    height: 85vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
    position: relative;
}

.contact-form-overlay.show .contact-form-container {
    transform: translateX(0);
}

.contact-form-left {
    width: 100%;
    height: 100%;
    padding: 60px 0px 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form-content {
    width: 100%;
    max-width: 400px;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
}

.contact-form-content::-webkit-scrollbar {
    width: 3px;
}

.contact-form-content::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
}

.contact-form-content::-webkit-scrollbar-track {
    background: transparent;
}

.contact-form-content h2 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    font-family: "neu", sans-serif;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #bcbec0;
    color: white;
    font-size: 1rem;
    font-family: "avenir", sans-serif;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #fff;
    font-size: 0.8rem;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: white;
}

.submit-btn {
    width: 100%;
    padding: 10px;
    background: #5a7a6f;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.submit-btn:hover {
    background: #4a6a5f;
    transform: translateY(-2px);
}

.legal-text {
    font-size: 0.8rem;
    color: #bcbec0;
    line-height: 1.4;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 2px;
}

.checkbox-label span {
    color: white;
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

#contactFormNew {
    padding-right: 40px;
}

.info-box {
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 30px;
    animation: infoBox 1s ease-in-out;
}

@keyframes infoBox {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

.info-box-image {
    width: 100%;
    height: 500px;
    background-position: center;
    background-size: cover;
    transition: all 0.3s ease;
    position: relative;
}

.info-box h3 {
    font-family: "big-caslon", serif;
    color: var(--white);
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
    line-height: 1.2;
}

.info-box-content {
    font-family: "basker", sans-serif;
    color: var(--text-color);
    padding: 5px;
    transition: all 0.3s ease;
    margin-top: -5px;
}

.info-box-content p {
    margin-top: 20px;
    font-size: 1rem;
}

.goster {
    position: absolute;
    text-align: center;
    top: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
    font-family: "big-caslon", serif;
    color: var(--white);
    font-size: 2rem;
    font-weight: 300;
    margin: 0;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.h_goster {
    display: none;
    right: 20px;
    z-index: 2;
    font-family: "big-caslon", serif;
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 300;
    margin: 0;
    text-align: left;
    line-height: 1.2;
    transition: all 0.5s ease;
    margin-top: 20px;
}

.top-ot {
    right: 15%;
    z-index: 3;
    position: absolute;
    top: 100px;
    width: 180px;
    height: 180px;
    text-align: center;
    vertical-align: middle;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: "proxima-nova", sans-serif;
    animation: topOt 1s ease-in-out;
}

@keyframes topOt {
    0% {
        transform: translateY(-100%);
    }
}

.top-ot img {
    margin-top: -10px;
    width: 25%;
}

.top-ot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/circ.svg);
    background-repeat: no-repeat;
    background-size: contain;
    animation: rotateCircle 10s linear infinite;
    z-index: -1;
}

.footer-ot {
    width: 180px;
    height: 180px;
    position: absolute;
    right: 30%;
    z-index: 9;
}

.footer-ot img {
    margin-top: 18px;
    margin-left: 70px;
}

.footer-ot:before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background: url(../images/circ.svg);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
    text-align: center;
}

.footer-ot div {
    text-align: center;
}

.mobileform {
    display: none;
    font-family: avenir, sans-serif;
}

.mobile_header {
    display: none;
}

.header-contact a {
    margin: 0px 5px;
    color: black;
    text-decoration: none;
}

.header-phone a {
    font-size: 1.8rem;
    letter-spacing: 5.5px;
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'neu', monospace;
}

a.phone {
    font-size: 1.3rem;
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'neu', monospace;
}

.siziarayalim-mobile {
    font-family: 'neu', monospace;
}

.mobileform .checkbox-label {
    margin: 5px 0 0 0;
}

/* Slider Styles */
.pagemodal {
    z-index: 9999 !important;
}

.header-language-link {
    font-family: 'proxima-nova', monospace;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 86vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    background-size: 110%;
    background-position: center;
    opacity: 0;
    transition: opacity 3s ease-in-out;
    animation: kenBurns 10s ease-in-out infinite;
}

.slide.active {
    opacity: 1;
}

@keyframes kenBurns {
    0% {
        background-size: 100%;
        background-position: center center;
    }
    50% {
        background-size: 120%;
        background-position: center center;
    }
    100% {
        background-size: 100%;
        background-position: center center;
    }
}

.slide-1 {
    background-image: url("../images/s1.jpg");
}

.slide-2 {
    background-image: url("../images/s3.jpg");
}

.slide-3 {
    background-image: url("../images/s5.jpg");
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 3s ease-in-out;
    z-index: 1;
    background-size: 110%;
    background-position: center;
}

.slide-1::before {
    background-image: url("../images/s2.jpg");
}

.slide-1.animating::before {
    opacity: 1;
}

.slide-2::before {
    background-image: url("../images/s4.jpg");
}

.slide-2.animating::before {
    opacity: 1;
}

.slide-3::before {
    background-image: url("../images/s6.jpg");
}

.slide-3.animating::before {
    opacity: 1;
}

.left-panel {
    width: auto;
    height: 100%;
    position: relative;
    z-index: 2;
}

.left-panel img {
    height: 100%;
    width: auto;
    transition: all 3s ease-in-out;
}

.left-img-1 {
    opacity: 1;
    transform: translateX(0);
}

.left-img-2 {
    opacity: 0;
    transform: translateX(-100%);
    position: absolute;
    top: 0;
    left: 0;
}

.left-panel.animating .left-img-1 {
    opacity: 0;
    transform: translateX(-100%);
}

.left-panel.animating .left-img-2 {
    opacity: 1;
    transform: translateX(0);
}

.right-panel {
    flex: 1;
    position: static;
    z-index: 2;
}

.content-container {
    position: absolute;
    top: 20%;
    left: 22%;
    width: 80%;
    display: flex;
    flex-direction: column;
    z-index: 10;
}

.content-item {
    width: 100%;
    position: absolute;
    margin-top: 30px;
}

.content-item img {
    max-width: 100%;
    height: auto;
}

.slogan-text {
    width: 300px;
    text-align: right;
    margin-top: -5px;
    margin-left: 10px;
}

.slogan-item-start {
    opacity: 1;
    transition: opacity 3s ease-in-out;
}

.slogan-item-end {
    opacity: 0;
    transition: opacity 3s ease-in-out;
    margin-top: 10px;
}

.slogan-item-start.hidden {
    opacity: 0;
}

.slogan-item-end.visible {
    opacity: 1;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background-color: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 1);
    transform: scale(1.3);
}

