:root {
    font-family: 'Raleway', sans-serif;
    /* fix for Chrome */
}

@supports (font-variation-settings: normal) {
    :root {
        font-family: 'Raleway', sans-serif;
    }
}

a{
    text-decoration: none;
}
a:hover{
    text-decoration: none;
}

/* Theme: Nature-inspired Abant Palace Color Palette */
:root{
    /* Primary Brand Colors - Elegant Red & Wine */
    --brand: #8B1538; /* Deep Wine Red */
    --brand-light: #A8395A; /* Rose Red */
    --brand-lighter: #C85A7C; /* Light Rose */
    --brand-700: #6B0F28; /* Dark Wine */
    
    /* Accent Colors - Lake & Sky */
    --accent-blue: #4A90A4; /* Lake Blue */
    --accent-blue-light: #87CEEB; /* Sky Blue */
    --accent-blue-dark: #2F5F8F; /* Deep Lake */
    
    /* Earth Tones */
    --earth-brown: #8B4513; /* Saddle Brown */
    --earth-tan: #D2B48C; /* Tan */
    --earth-cream: #F5F5DC; /* Beige */
    
    /* Text Colors */
    --text: #2C1114; /* Deep Red Text */
    --text-light: #5D2328; /* Medium Red */
    --text-muted: #6B7280; /* Gray */
    
    /* Background Colors */
    --bg-primary: #FFFFFF; /* Pure White */
    --bg-secondary: #FDF8F9; /* Soft Rose */
    --bg-tertiary: #F9EBEE; /* Light Pink */
    
    /* Status Colors */
    --success: #22C55E; /* Green */
    --warning: #F59E0B; /* Amber */
    --error: #EF4444; /* Red */
    
    /* Shadows & Effects */
    --shadow-sm: 0 1px 2px 0 rgba(139, 21, 56, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(139, 21, 56, 0.1), 0 2px 4px -1px rgba(139, 21, 56, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(139, 21, 56, 0.1), 0 4px 6px -2px rgba(139, 21, 56, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(139, 21, 56, 0.1), 0 10px 10px -5px rgba(139, 21, 56, 0.04);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

/* Header spacing for fixed navbar */
body.has-fixed-header{
    padding-top: 88px;
}

@media (min-width: 768px){
    body.has-fixed-header{
        padding-top: 112px;
    }
}

/* Navbar hover accents for desktop menu */
#navbar ul li a{
    position: relative;
}

#navbar ul li a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--brand);
    transition: width .25s ease;
}

#navbar ul li a:hover::after{
    width: 100%;
}

/* Modern Utility Classes */
.text-brand{color:var(--brand)}
.text-brand-light{color:var(--brand-light)}
.text-accent-blue{color:var(--accent-blue)}
.text-earth-brown{color:var(--earth-brown)}

.bg-brand{background-color:var(--brand)}
.bg-brand:hover{background-color:var(--brand-700)}
.bg-brand-light{background-color:var(--brand-light)}
.bg-accent-blue{background-color:var(--accent-blue)}
.bg-secondary{background-color:var(--bg-secondary)}
.bg-tertiary{background-color:var(--bg-tertiary)}

.border-brand{border-color:var(--brand)}
.border-accent-blue{border-color:var(--accent-blue)}

/* Modern Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--brand-700) 0%, var(--brand) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--brand);
    padding: 0.75rem 2rem;
    border: 2px solid var(--brand);
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--brand);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Card Styles */
.card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Elegant Red Gradients */
.gradient-wine {
    background: linear-gradient(135deg, var(--brand-700) 0%, var(--brand) 40%, var(--brand-light) 100%);
    position: relative;
}

.gradient-wine::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.gradient-lake {
    background: linear-gradient(135deg, var(--accent-blue-dark) 0%, var(--accent-blue) 50%, var(--accent-blue-light) 100%);
}

.gradient-earth {
    background: linear-gradient(135deg, var(--earth-brown) 0%, var(--earth-tan) 50%, var(--earth-cream) 100%);
}

/* Typography Enhancements */
.heading-luxury {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text);
}

.text-elegant {
    font-family: 'Great Vibes', cursive;
    color: var(--brand);
}

/* Hero Section Text Override */
.hero-content .text-elegant {
    color: white !important;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
}

/* Gradient Wine Section Text Override */
.gradient-wine .text-elegant {
    color: white !important;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.9);
    font-weight: 300;
}

.gradient-wine h2,
.gradient-wine .text-white {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 1;
}

.gradient-wine p {
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 1;
}

.gradient-wine .container {
    position: relative;
    z-index: 1;
}

/* Dark background sections text visibility */
section[id="odalar"] {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

section[id="odalar"] .section-title.text-elegant {
    color: white !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

section[id="odalar"] .text-text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

/* Accessibility Improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus States for Accessibility */
*:focus {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
}

/* Modern Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--bg-tertiary);
    border-radius: 50%;
    border-top-color: var(--brand);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Design Enhancements */
.container-fluid {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container-fluid {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container-fluid {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Hero Section Styling */
.hero-overlay {
    background: linear-gradient(
        rgba(0, 0, 0, 0.4),
        rgba(139, 21, 56, 0.3)
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    color: white;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 6rem;
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    color: white;
}

/* Section Styling */
.section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--brand) 0%, var(--brand-light) 100%);
    border-radius: 2px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

/* Room Cards Enhancement */
.room-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    height: 100%;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.room-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.room-card:hover img {
    transform: scale(1.05);
}

.room-card-content {
    padding: 1.5rem;
}

.room-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.room-card-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Navigation Enhancements */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
    color: var(--text);
    font-weight: 500;
}

.nav-link:hover {
    color: var(--brand);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Footer Enhancements */
.footer-bg {
    background: linear-gradient(
        135deg,
        var(--bg-secondary) 0%,
        var(--bg-tertiary) 100%
    );
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    .print-only {
        display: block !important;
    }
}