/* Hava Durumu Panel */
.weather-panel {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 15px 30px;
    z-index: 100;
    color: white;
    width: 600px;
    height: 60px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .weather-panel:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: translateX(-50%) translateY(-2px);
    }

.panel-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.location-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-icon {
    width: 16px;
    height: 16px;
    opacity: 0.8;
}

.location-text {
    font-size: 14px;
    font-weight: 500;
}

.current-time {
    font-size: 16px;
    font-weight: 600;
    color: #f4d03f;
}

.weather-main {
    display: flex;
    align-items: center;
    gap: 10px;
}

.weather-temp {
    font-size: 24px;
    font-weight: 300;
    color: #f4d03f;
}

.weather-icon {
    width: 32px;
    height: 32px;
}

    .weather-icon svg {
        width: 100%;
        height: 100%;
    }

.weather-details {
    display: flex;
    gap: 20px;
    font-size: 12px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.9;
}

.detail-label {
    opacity: 0.8;
    font-size: 10px;
}

.detail-value {
    font-weight: 500;
}

/* Sol taraf - koyu gri */
.left-side {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( 135deg, rgba(25, 42, 86, 0.95) 0%, rgba(15, 30, 65, 0.95) 100% );
    clip-path: polygon(0 0, 65% 0, 35% 100%, 0 100%);
    z-index: 1;
}

/* Sağ taraf - beyaz */
.right-side {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 50%, #e8e8e8 100%);
    clip-path: polygon(65% 0, 100% 0, 100% 100%, 35% 100%);
    z-index: 1;
}

/* Sol taraf 3D şekiller */
.left-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Video arka plan - Sol tarafı tam kaplayacak şekilde ayarlandı */
.background-video {
    width: 85%;
    height: 100%;
    object-fit: cover;
    object-position: -310px center; /* Video içeriğini sola kaydırır */
    z-index: 0;
    opacity: 0.4;
}

/* Video container için overlay */
.video-overlay {
    position: absolute;
    top: -10%;
    left: -5%;
    width: 150%;
    height: 120%;
    background: rgba(25, 42, 86, 0.8); /* Koyu lacivert gölge */
    z-index: 1;
    clip-path: polygon(0 0, 85% 0, 45% 100%, 0 100%);
    pointer-events: none;
}

/* Sağ taraf soru işaretleri */
.right-shapes {
    position: absolute;
    width: 50%;
    height: 100%;
    right: 0;
    overflow: hidden;
}

.question-mark {
    position: absolute;
    font-size: 60px;
    color: #ccc;
    font-weight: bold;
    filter: drop-shadow(2px 4px 8px rgba(0, 0, 0, 0.15));
    animation: questionFloat 4s ease-in-out infinite;
}

.question-1 {
    top: 10%;
    right: 10%;
    font-size: 80px;
    color: #e0e0e0;
    animation-delay: 0s;
}

.question-2 {
    top: 30%;
    right: 25%;
    font-size: 65px;
    color: #d5d5d5;
    animation-delay: 1.5s;
}

.question-3 {
    top: 50%;
    right: 15%;
    font-size: 75px;
    color: #f0f0f0;
    animation-delay: 3s;
}

.question-4 {
    top: 20%;
    right: 35%;
    font-size: 55px;
    color: #e8e8e8;
    animation-delay: 0.5s;
}

.question-5 {
    top: 65%;
    right: 30%;
    font-size: 70px;
    color: #ddd;
    animation-delay: 2s;
}

.question-6 {
    top: 40%;
    right: 40%;
    font-size: 60px;
    color: #e5e5e5;
    animation-delay: 2.5s;
}

.question-7 {
    top: 75%;
    right: 20%;
    font-size: 65px;
    color: #d8d8d8;
    animation-delay: 1s;
}

/* Merkez logo alanı */
.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f4d03f, #f39c12, #e67e22);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

.logo-circle {
    width: 120px;
    height: 120px;
    border: 0px solid #fff;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    background: #ffffff;
    overflow: hidden;
}

    .logo-circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

.text-area-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Sol taraf yazılar */
.left-text {
    position: absolute;
    top: 40%;
    left: 10%;
    color: #ffffff;
    z-index: 5;
}

.left-title {
    font-size: 4rem;
    font-weight: 300;
    line-height: 0.9;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* Buton Stilleri */
.left-button,
.right-button {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 25px;
    z-index: 1;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.left-button {
    border: 2px solid #ffffff;
    background: transparent;
    color: #ffffff;
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
}

    .left-button:hover {
        background: rgba(255, 255, 255, 0.1);
    }

/* Sağ taraf yazılar */
.right-text {
    position: absolute;
    top: 40%;
    right: 10%;
    color: #2a2a2a;
    z-index: 5;
    text-align: right;
}

.right-title {
    font-size: 4rem;
    font-weight: 300;
    line-height: 0.9;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.8);
}

.right-button {
    border: 2px solid #000000;
    background: transparent;
    color: #000000;
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
}

    .right-button:hover {
        background: rgba(0, 0, 0, 0.1);
    }

.right-subtitle {
    font-size: 12px;
    color: #666;
    margin-top: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Üst navigation */
.top-nav {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}

.logo-text {
    color: #f4d03f;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
}

.play-reel {
    color: #f4d03f;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .play-reel:hover {
        color: #fff;
    }

/* Animasyonlar */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(var(--rotation, 0deg));
    }

    50% {
        transform: translateY(-20px) rotate(var(--rotation, 0deg));
    }
}

@keyframes questionFloat {
    0%, 100% {
        transform: translateY(0px) rotate(-15deg) scale(1);
        opacity: 0.6;
    }

    25% {
        transform: translateY(-25px) rotate(10deg) scale(1.1);
        opacity: 0.9;
    }

    50% {
        transform: translateY(-10px) rotate(-5deg) scale(0.95);
        opacity: 1;
    }

    75% {
        transform: translateY(-30px) rotate(20deg) scale(1.05);
        opacity: 0.8;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(45deg);
    }

    100% {
        transform: rotate(405deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinReverse {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@media (max-width: 1400px) {
    .left-title,
    .right-title {
        font-size: 4rem;
        letter-spacing: 2.5px;
    }

    .left-text {
        left: 5%;
        top: 50%;
        transform: translateY(-50%);
    }

    .right-text {
        right: 5%;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (max-width: 1200px) {
    .left-title,
    .right-title {
        font-size: 3rem;
        letter-spacing: 2.5px;
    }

    .background-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 60% center;
    }
}

/* Large tablets and small desktops */
@media (max-width: 992px) {
    .left-title,
    .right-title {
        font-size: 2.5rem;
        letter-spacing: 2.5px;
    }
}

/* Medium tablets */
@media (max-width: 768px) and (min-width: 481px) {
    .left-side {
        clip-path: polygon(100% 0, 0 0, 0 100%);
    }

    .right-side {
        clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    }

    .video-overlay {
        clip-path: polygon(100% 0, 0 0, 0 100%);
    }
}

@media (max-width: 768px) {
    .left-title,
    .right-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .left-text {
        top: 25%; /* Yukarıya taşındı */
    }

    .right-text {
        bottom: 15%; /* Aşağıya taşındı */
        top: auto;
    }

    .center-logo {
        width: 90px;
        height: 90px;
    }

    .logo-circle {
        width: 90px;
        height: 90px;
        font-size: 18px;
    }

    .background-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 60% center;
    }

    .left-side {
        clip-path: polygon(100% 0, 0 0, 0 100%);
    }

    .right-side {
        clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    }

    .weather-panel {
        top: 10px;
        width: 95%;
        max-width: 500px;
        padding: 10px 15px;
        height: 50px;
        flex-wrap: wrap;
        gap: 10px;
        border-radius: 20px;
    }

    .weather-details {
        gap: 10px;
        font-size: 10px;
    }

    .weather-temp {
        font-size: 18px;
    }

    .weather-icon {
        width: 24px;
        height: 24px;
    }

    .current-time {
        font-size: 14px;
    }

    .location-text {
        font-size: 12px;
    }

    .question-mark {
        font-size: 40px;
    }

    .question-1 {
        font-size: 50px;
    }

    .question-2 {
        font-size: 42px;
    }

    .question-3 {
        font-size: 48px;
    }

    .question-4 {
        font-size: 35px;
    }

    .question-5 {
        font-size: 45px;
    }

    .question-6 {
        font-size: 38px;
    }

    .question-7 {
        font-size: 42px;
    }

    .left-button,
    .right-button {
        padding: 10px 20px;
        font-size: 11px;
        letter-spacing: 1px;
        border-radius: 20px;
    }
}

@media (max-width: 576px) {
    .left-text {
        top: 30%; /* Yukarıya taşındı */
    }

    .right-text {
        bottom: 10%; /* Aşağıya taşındı */
        top: auto;
    }
}

@media (max-width: 480px) {
    .left-title,
    .right-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .left-text {
        left: 4%;
        top: 30%; /* Daha da yukarıya taşındı */
    }

    .right-text {
        right: 4%;
        bottom: 10%; /* Daha da aşağıya taşındı */
        top: auto;
    }

    .center-logo {
        width: 70px;
        height: 70px;
    }

    .logo-circle {
        width: 70px;
        height: 70px;
        font-size: 16px;
    }

    .weather-panel {
        top: 5px;
        width: 98%;
        padding: 8px 12px;
        height: 45px;
        font-size: 11px;
    }

    .weather-main {
        gap: 6px;
    }

    .weather-temp {
        font-size: 16px;
    }

    .weather-icon {
        width: 20px;
        height: 20px;
    }

    .weather-details {
        gap: 8px;
        font-size: 9px;
    }

    .current-time {
        font-size: 12px;
    }

    .location-text {
        font-size: 11px;
    }

    .location-icon {
        width: 12px;
        height: 12px;
    }

    .panel-section {
        gap: 10px;
    }

    .question-mark {
        font-size: 30px;
    }

    .question-1 {
        font-size: 40px;
    }

    .question-2 {
        font-size: 32px;
    }

    .question-3 {
        font-size: 36px;
    }

    .question-4 {
        font-size: 28px;
    }

    .question-5 {
        font-size: 34px;
    }

    .question-6 {
        font-size: 30px;
    }

    .question-7 {
        font-size: 32px;
    }

    .left-button,
    .right-button {
        padding: 8px 16px;
        font-size: 10px;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 360px) {
    .left-title,
    .right-title {
        font-size: 1.5rem;
    }

    .weather-panel {
        height: 40px;
        padding: 6px 10px;
    }

    .weather-details {
        display: none;
    }

    .center-logo {
        width: 60px;
        height: 60px;
    }

    .logo-circle {
        width: 60px;
        height: 60px;
        font-size: 14px;
    }
}
