/*
 * Aysem Sultan Hotel - Özel Stiller
 */

:root {
    --primary: #8B1A2B;        /* Bordo */
    --primary-dark: #6B1420;
    --primary-light: #B5454F;
    --gold: #C9A84C;           /* Altın */
    --gold-light: #E0C878;
    --dark: #1A1A2E;
    --light: #F8F6F1;
    --white: #FFFFFF;
    --text: #333333;
    --text-muted: #6C757D;
    --border: #E0E0E0;
}

/* ========== Genel ========== */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6,
.brand-text,
.section-title {
    font-family: 'Playfair Display', Georgia, serif;
}

a {
    color: var(--primary);
    transition: color 0.3s;
}
a:hover {
    color: var(--primary-dark);
}

/* ========== Top Bar ========== */
.top-bar {
    font-size: 0.85rem;
    background: var(--dark) !important;
}

/* ========== Navbar ========== */
.navbar {
    padding: 0.75rem 0;
}
.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary) !important;
    letter-spacing: -0.5px;
}
.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text) !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
}
.navbar .btn-primary {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
}

/* ========== Buttons ========== */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    font-weight: 500;
    padding: 0.6rem 1.8rem;
    transition: all 0.3s;
}
.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}
.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}
.btn-gold {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    font-weight: 500;
    padding: 0.6rem 1.8rem;
    transition: all 0.3s;
}
.btn-gold:hover {
    background-color: #B8943A;
    border-color: #B8943A;
    color: var(--white);
}

/* ========== Hero Section ========== */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 550px;
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
                url('../images/hero-bg.jpg') center/cover no-repeat;
    background-color: var(--dark); /* fallback */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}
.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}
.hero-content .hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
}
.hero-content .btn {
    font-size: 1.05rem;
    padding: 0.8rem 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .hero-section {
        height: 65vh;
        min-height: 400px;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content .hero-subtitle {
        font-size: 1rem;
    }
}

/* ========== Section Başlıkları ========== */
.section-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--dark);
    position: relative;
    margin-bottom: 1rem;
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 3rem;
}
.section-divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 0.8rem auto 0;
}

/* ========== Oda Kartları ========== */
.room-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    background: var(--white);
}
.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.room-card .card-img-top {
    height: 240px;
    object-fit: cover;
}
.room-card .card-body {
    padding: 1.5rem;
}
.room-card .room-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}
.room-card .room-price small {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
}
.room-card .room-features {
    list-style: none;
    padding: 0;
    margin: 0.8rem 0;
}
.room-card .room-features li {
    display: inline-block;
    margin-right: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.room-card .room-features li i {
    color: var(--gold);
    margin-right: 0.3rem;
}

/* ========== Hakkımızda ========== */
.about-section {
    padding: 5rem 0;
    background-color: var(--light);
}
.about-image {
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    width: 100%;
    min-height: 400px;
    background: var(--border);
    object-fit: cover;
}
.about-text {
    padding: 2rem 0;
}
.about-text h2 {
    margin-bottom: 1.5rem;
}
.about-divider {
    width: 50px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 1.5rem;
}

/* ========== Hizmet İkonları ========== */
.service-icon-box {
    text-align: center;
    padding: 2rem 1rem;
    transition: transform 0.3s;
}
.service-icon-box:hover {
    transform: translateY(-3px);
}
.service-icon-box .icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}
.service-icon-box h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
}

/* ========== Yorum Carousel ========== */
.reviews-section {
    padding: 5rem 0;
    background: var(--light);
}
.review-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    text-align: center;
    margin: 0 1rem;
}
.review-card .review-stars {
    margin-bottom: 1rem;
}
.review-card .review-text {
    font-style: italic;
    color: var(--text);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}
.review-card .review-author {
    font-weight: 600;
    color: var(--dark);
}

/* ========== Konum / Harita ========== */
.map-section {
    padding: 5rem 0;
}
.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* ========== İletişim Formu ========== */
.contact-section {
    padding: 5rem 0;
}
.contact-info-card {
    background: var(--light);
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
}
.contact-info-card .info-item {
    margin-bottom: 1.5rem;
}
.contact-info-card .info-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-right: 0.8rem;
    flex-shrink: 0;
}
.form-control:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 0.2rem rgba(139, 26, 43, 0.15);
}

/* ========== Booking Form ========== */
.booking-section {
    padding: 5rem 0;
    background: var(--light);
}
.booking-form-wrapper {
    background: var(--white);
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
}

/* ========== Oda Detay ========== */
.room-detail-section {
    padding: 4rem 0;
}
.room-detail-image {
    border-radius: 8px;
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}
/* Oda detay carousel */
#roomCarousel .carousel-item img {
    height: 500px;
    object-fit: cover;
}
#roomCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.room-features-list {
    list-style: none;
    padding: 0;
    columns: 2;
}
.room-features-list li {
    padding: 0.4rem 0;
}
.room-features-list li i {
    color: var(--gold);
    margin-right: 0.5rem;
}
.room-booking-sidebar {
    background: var(--light);
    border-radius: 8px;
    padding: 2rem;
    position: sticky;
    top: 100px;
}

/* ========== Sayfa Hero (Alt Sayfalar) ========== */
.page-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('../images/page-hero-bg.jpg') center/cover no-repeat;
    background-color: var(--dark);
    height: 40vh;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}
.page-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
}

/* ========== Footer ========== */
.site-footer {
    background: var(--dark) !important;
}
.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.8rem;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}
.footer-link {
    color: #ADB5BD !important;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 2;
    transition: color 0.3s;
}
.footer-link:hover {
    color: var(--white) !important;
}
.social-links a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s;
}
.social-links a:hover {
    background: var(--primary);
    color: var(--white);
}
.contact-info {
    color: #ADB5BD;
    font-size: 0.9rem;
}

/* ========== Admin Sidebar ========== */
.admin-sidebar {
    min-height: 100vh;
    background: var(--dark);
    color: var(--white);
}
.admin-sidebar .nav-link {
    color: #ADB5BD;
    padding: 0.7rem 1.2rem;
    border-radius: 6px;
    margin-bottom: 0.2rem;
    transition: all 0.3s;
}
.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}
.admin-sidebar .nav-link i {
    width: 20px;
    text-align: center;
}

/* ========== Admin Genel ========== */
.stat-card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.stat-card:hover {
    transform: translateY(-3px);
}
.stat-card .stat-icon {
    font-size: 2rem;
}
.stat-card .stat-value {
    font-size: 2rem;
    font-weight: 700;
}

/* ========== Utility ========== */
.py-section {
    padding: 5rem 0;
}
.bg-primary-soft {
    background-color: rgba(139, 26, 43, 0.05);
}
.text-gold {
    color: var(--gold) !important;
}
.border-gold {
    border-color: var(--gold) !important;
}
