/* Ramada Encore Diyarbakır - Premium Theme */

:root {
    --ramada-red: #D31145;
    --ramada-dark: #1a1a1a;
    --ramada-gold: #c5a059;
    --ramada-gray: #f4f4f4;
    --text-color: #333;
    --text-light: #777;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

html {
    overflow-x: hidden; /* body yerine html'e taşındı - mobile Safari'de fixed navbar için */
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.7;
    background-color: #fff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--ramada-dark);
}

a {
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--ramada-red);
}

::-webkit-scrollbar-thumb:hover {
    background: #b00b36;
}

/* Buttons */
.btn-ramada {
    background-color: var(--ramada-red);
    color: #fff;
    padding: 14px 34px;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    border: 2px solid var(--ramada-red);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-ramada::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: #fff;
    color: var(--ramada-red);
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-ramada:hover {
    color: var(--ramada-red);
    background-color: #fff;
}

.btn-ramada:hover::after {
    height: 100%;
}

.btn-outline-ramada {
    background-color: transparent;
    color: var(--ramada-dark);
    border: 2px solid var(--ramada-dark);
    padding: 12px 30px;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-outline-ramada:hover {
    background-color: var(--ramada-dark);
    color: #fff;
}

/* Navbar */
.navbar {
    padding: 15px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
}

.nav-link {
    color: var(--ramada-dark) !important;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 15px !important;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--ramada-red);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

/* Cards */
.card {
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
}

.room-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.room-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.room-card:hover img {
    transform: scale(1.05);
}

.room-details {
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
    color: #fff;
    transition: all 0.4s ease;
    opacity: 0;
}

.room-card:hover .room-details {
    bottom: 0;
    opacity: 1;
}

.room-title {
    color: #fff;
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.room-price {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--ramada-gold);
}

/* Amenities Icons */
.amenity-box {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.amenity-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--ramada-red);
}

.amenity-icon {
    font-size: 3rem;
    color: var(--ramada-red);
    margin-bottom: 20px;
}

/* Footer */
footer {
    background-color: #111;
    color: #aaa;
    padding: 80px 0 30px;
}

footer h4 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

footer ul li {
    margin-bottom: 10px;
}

footer a {
    color: #aaa;
}

footer a:hover {
    color: var(--ramada-red);
}

.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 50px;
    padding-top: 30px;
    font-size: 0.9rem;
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Section Headings */
.section-title {
    margin-bottom: 60px;
    text-align: center;
    position: relative;
}

.section-title h5 {
    font-family: var(--font-body);
    color: var(--ramada-red);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--ramada-red);
    margin: 0 auto;
}