/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.hero-slide {
    height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    color: #fff;
    text-align: center;
    padding-top: 20vh;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

/* Room Cards */
.room-card {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    margin-bottom: 2rem;
}

.room-card:hover {
    transform: translateY(-10px);
}

.room-card img {
    height: 250px;
    object-fit: cover;
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

/* Features */
.feature-box {
    padding: 2rem;
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    color: #007bff;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    color: white;
}


/* Rooms Page Styles */
.rooms-header {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/rooms-header.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
}

.price-tag {
    font-size: 1.5rem;
    color: #007bff;
    font-weight: bold;
}

.room-features li {
    margin-bottom: 1rem;
}

.room-features i {
    margin-right: 10px;
    color: #007bff;
}

.room-filters {
    position: sticky;
    top: 0;
    z-index: 99;
    border-bottom: 1px solid #ddd;
}

/* Room Detail Page */
.room-description {
    line-height: 1.8;
    color: #666;
}

.room-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.room-card .card-body {
    flex-grow: 1;
}


/* About Page Styles */
.about-header {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/about-header.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
}

.about-content {
    line-height: 1.8;
    color: #666;
}

.reason-box {
    padding: 2rem;
    transition: transform 0.3s;
}

.reason-box:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-member {
    margin-bottom: 2rem;
}

.team-member h4 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}


/* Contact Page Styles */
.contact-header {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/contact-header.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
}

.contact-info i {
    color: #007bff;
    width: 20px;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.social-links a {
    font-size: 1.5rem;
    color: #333;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #007bff;
}

/* Map Container Update */
.map-container {
    margin-top: 4rem;
    margin-bottom: 4rem;  /* Değiştirildi: -5rem'den 4rem'e */
    position: relative;
    padding-bottom: 2rem;
}

/* Contact Page Specific Footer */
.contact-page-footer {
    margin-top: 2rem;
    position: relative;
    z-index: 10;
    background: linear-gradient(to right, #2C3E50, #3498db);
}


/* Language Selector */
.dropdown-item.active {
    background-color: #007bff;
    color: white;
}

.fa-globe {
    font-size: 1.2rem;
}


/* Header Styles */
.navbar {
    background: linear-gradient(to right, #1e3c72, #2a5298) !important;
}

.navbar-light .navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
}

.navbar-light .navbar-brand {
    background: #fff;
    padding: 5px 15px;
    border-radius: 5px;
}

/* Main Content Background */
body {
    background-color: #f8f9fa;
}

/* Footer Styles */
footer {
    background: linear-gradient(to right, #2C3E50, #3498db) !important;
    color: #fff !important;
}

footer a.text-light {
    color: #fff !important;
    transition: color 0.3s;
}

footer a.text-light:hover {
    color: #ffd700 !important;
}

/* Hero Section Update */
.hero-slide::before {
    background: linear-gradient(rgba(30, 60, 114, 0.6), rgba(42, 82, 152, 0.6));
}

/* Feature Box Update */
.feature-box i {
    color: #2a5298 !important;
}

/* Room Cards Update */
.room-card {
    border: none;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.room-card:hover {
    box-shadow: 0 10px 25px rgba(42, 82, 152, 0.2);
}

/* Button Colors Update */
.btn-primary {
    background-color: #2a5298;
    border-color: #2a5298;
}

.btn-primary:hover {
    background-color: #1e3c72;
    border-color: #1e3c72;
}

.btn-outline-primary {
    color: #2a5298;
    border-color: #2a5298;
}

.btn-outline-primary:hover {
    background-color: #2a5298;
    border-color: #2a5298;
}


/* Footer link styles */
.footer a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #ffffff;
    opacity: 0.8;
}

.footer .social-links a {
    color: #ffffff;
    margin-right: 15px;
    font-size: 20px;
}

.footer .social-links a:hover {
    color: #ffffff;
    opacity: 0.8;
}

.flag-icon {
object-fit: cover;
border-radius: 2px;
}
                                    
