/* Font Ayarları ve Renk Paleti */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

:root {
    --primary-color: #D4AF37; /* Altın sarısı */
    --secondary-color: #2C3E50; /* Koyu lacivert */
    --light-color: #ECF0F1; /* Açık gri */
    --dark-color: #34495E; /* Koyu gri */
    --font-family: 'Poppins', sans-serif;
}


/* Genel Stil Ayarları */
body {
    margin: 0;
    font-family: var(--font-family);
    color: var(--dark-color);
    background-color: var(--light-color);
}

/* Menü */
nav {
    background-color: var(--dark-color);
    padding: 10px;
    text-align: center;
}

nav a {
    color: var(--light-color);
    margin: 0 15px;
    text-decoration: none;
    font-weight: 600;
}

nav a:hover {
    color: var(--primary-color);
}

/* Arka Plan Videosu ve Logo */
header {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

#background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
}

header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
}

header .logo {
    width: 300px;
    animation: fadeIn 2s ease-in-out;
}


/* Odalar Bölümü */
#rooms {
    padding: 50px 20px;
    text-align: center;
    background-color: var(--light-color);
}

#rooms h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.room-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.room-item {
    margin: 15px;
    perspective: 1000px; /* 3D dönüşüm için */
}

.room-content {
    position: relative;
    width: 250px;
    height: 350px;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.6s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/*
.room-item:hover .room-content {
    transform: rotateY(180deg);
}
*/

.room-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.room-content h3, .room-content a {
    position: absolute;
}

.room-content h3 {
    bottom: 60px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 1.5em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.room-content a {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.room-content a:hover {
    background-color: #FFC107;
}

/* Oda Detayları */
.room-details {
    padding: 20px;
    text-align: center;
}

.room-details h1 {
    font-size: 2em;
    color: var(--primary-color);
}

.room-images {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.room-images img {
    width: 300px;
    height: auto;
    margin: 10px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.room-images img:hover {
    transform: scale(1.05);
}

.room-details p {
    font-size: 1.1em;
    margin: 10px 0;
}

#reserve-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    margin-top: 20px;
}

#reserve-button:hover {
    background-color: var(--dark-color);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    text-align: center;
    padding: 15px 0;
    margin-top: 50px;
}

/* Animasyonlar */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .room-gallery {
        flex-direction: column;
        align-items: center;
    }

    .room-item {
        width: 80%;
    }

    .room-images img {
        width: 90%;
    }
}

@media (max-width: 480px) {
    header .logo {
        width: 150px;
    }

    #rooms h2 {
        font-size: 1.8em;
    }

    .room-item {
        width: 90%;
    }
}

/* ... (Önceki stil kodlarınız) ... */

/* Navigasyon Menüsü */
nav {
    background-color: var(--dark-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 10px;
    display: flex;
    justify-content: center;
}

nav li {
    margin: 0 15px;
}

nav a {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 600;
}

nav a:hover {
    color: var(--primary-color);
}

/* İçeriklerin üst menüyle çakışmasını önlemek için üst boşluk ekleyelim */
body {
    padding-top: 60px;
}

/* Konsept, Hakkımızda ve Konum Bölümleri */
#concept, #about, #location {
    padding: 50px 20px;
    text-align: center;
    /* Mevcut gri arka planı kaldırıp yerine daha estetik bir arka plan ekleyelim */
    background-color: var(--light-color);
    background-image: url('images/background-pattern.png'); /* Arka plan deseni */
    background-size: cover;
    background-attachment: fixed;
    color: var(--dark-color);
}


#concept h2, #about h2, #location h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: var(--primary-color);
}

#concept p, #about p, #location p {
    font-size: 1.1em;
    color: var(--dark-color);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Harita */
#map {
    width: 100%;
    height: 400px;
    margin-top: 20px;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    text-align: center;
    padding: 15px 0;
    margin-top: 50px;
}

/* Animasyonlar */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .room-gallery {
        flex-direction: column;
        align-items: center;
    }

    .room-content {
        width: 80%;
        height: auto;
    }

    .room-images img {
        width: 90%;
    }
}

@media (max-width: 480px) {
    header .logo {
        width: 200px;
    }

    #rooms h2 {
        font-size: 1.8em;
    }

    .room-content {
        width: 90%;
        height: auto;
    }

    .book-now {
        padding: 10px 15px;
        top: 10px;
        right: 10px;
    }
}



/* ... (Diğer stil kodlarınız) ... */

/* "BOOK NOW" Butonu */
.book-now {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.book-now:hover {
    background-color: #FFC107; /* Daha açık altın sarısı */
}


/* Kartın Arka Yüzü */
.room-content::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--dark-color);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: rotateY(180deg);
    backface-visibility: hidden;
    border-radius: 15px;
    padding: 20px;
    box-sizing: border-box;
}
/*
.room-item:hover .room-content::after {
    transform: rotateY(0deg);
}
*/

.room-content::after h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.room-content::after p {
    font-size: 1em;
    line-height: 1.5;
}


.language-selector {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
}

.language-selector a {
    color: var(--light-color);
    text-decoration: none;
    font-weight: bold;
    margin: 0 5px;
}

.language-selector a:hover {
    color: var(--primary-color);
}


.room-details {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.room-details h1 {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.room-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
}

.room-images img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    margin: 10px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.room-images img:hover {
    transform: scale(1.05);
}

.room-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.room-info h2 {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 30px;
}

.room-info p, .room-info ul {
    font-size: 1.1em;
    line-height: 1.6;
    color: var(--dark-color);
}

.room-info ul {
    list-style: none;
    padding: 0;
}

.room-info ul li {
    margin: 5px 0;
}

#reserve-button {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
}

#reserve-button:hover {
    background-color: #FFC107;
}


.reservation-details {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 20px;
}

.reservation-details h1 {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
}

.date-selection {
    margin: 30px 0;
}

.date-selection label {
    display: block;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.date-selection input {
    width: 100%;
    padding: 10px;
    font-size: 1.1em;
    margin-bottom: 20px;
}

#book-button {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 1.5em;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#book-button:hover {
    background-color: #FFC107;
}


