@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=Inter:wght@300;400;500;600;700&family=Special+Elite&display=swap');

:root {
    --cream: #faf3e8;
    --warm-beige: #e8d5b5;
    --retro-orange: #d4833a;
    --burnt-orange: #b86a2c;
    --deep-brown: #4a3222;
    --dark-teal: #2c4a4a;
    --muted-gold: #c9a96e;
    --off-white: #fdf8f0;
    --shadow: rgba(74, 50, 34, 0.15);
    --text-dark: #2c1f14;
    --text-light: #f5ede4;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --font-special: 'Special Elite', cursive;

    --primary: #faf3e8;
    --secondary: #fdf8f0;
    --accent: #d4833a;
    --accent-hover: #b86a2c;
    --accent-glow: rgba(212, 131, 58, 0.35);
    --teal: #2c4a4a;
    --light: #fdf8f0;
    --dark: #4a3222;
    --white: #ffffff;
    --gray: #5a4a3a;
    --border: rgba(74, 50, 34, 0.1);
    --glass: rgba(255, 255, 255, 0.6);
    --gradient: linear-gradient(135deg, #d4833a, #c9a96e);
    --text-primary: #2c1f14;
    --text-secondary: #5a4a3a;
    --card-shadow: 0 8px 40px rgba(74, 50, 34, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--cream);
}
::-webkit-scrollbar-thumb {
    background: var(--retro-orange);
    border-radius: 10px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    background: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: none;
    transition: all 0.4s ease;
}

header.scrolled,
.header.scrolled {
    background: rgba(250, 243, 232, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px var(--shadow);
}

.top-bar {
    background: var(--deep-brown);
    color: rgba(255,255,255,0.7);
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: rgba(255,255,255,0.8);
}

.lang-switch {
    display: flex;
    gap: 10px;
}

.lang-switch a.active,
.lang-switch a:hover {
    opacity: 1;
}

.nav-bar {
    padding: 14px 0;
}

.nav-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    height: 55px;
    width: auto;
}

.logo span {
    color: var(--retro-orange);
    font-family: var(--font-serif);
    font-style: italic;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 28px;
}

nav ul li a {
    font-weight: 500;
    position: relative;
    color: var(--deep-brown);
    font-size: 0.9rem;
    letter-spacing: 0.2px;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--retro-orange);
    transition: 0.3s;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a:hover {
    color: var(--retro-orange);
}

.btn-book {
    background: var(--retro-orange);
    color: #fff;
    padding: 10px 24px;
    border-radius: 60px;
    font-weight: 600;
    box-shadow: 0 6px 24px var(--accent-glow);
    transition: 0.3s;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

.btn-book:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(212, 131, 58, 0.5);
    background: var(--burnt-orange);
}

/* Hero Section */
.hero {
    margin-top: 0;
    background: var(--cream);
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(circle at 20% 30%, rgba(212, 131, 58, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(44, 74, 74, 0.04) 0%, transparent 50%),
        linear-gradient(135deg, #faf3e8 0%, #f0e3d0 100%);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.04;
    background-image: radial-gradient(var(--deep-brown) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--deep-brown);
    line-height: 1.15;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #5a4a3a;
    font-weight: 300;
}

/* Hero Title - typing effect style */
.typing-hero {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--deep-brown);
    text-align: center;
    letter-spacing: 0.5px;
    line-height: 1.4;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid var(--retro-orange);
    animation: typing 6s steps(80, end) forwards, blink 0.8s step-end infinite;
}

.typing-hero span {
    display: inline-block;
    white-space: nowrap;
    width: max-content;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    0%, 100% { border-color: var(--retro-orange); }
    50% { border-color: transparent; }
}

@media (max-width: 992px) {
    html, body {
        overflow-x: hidden;
    }
    
    .typing-hero {
        font-size: 28px;
        white-space: normal;
        overflow: visible;
        border-right: none;
        animation: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .typing-hero {
        font-size: 24px;
        white-space: normal;
        overflow: visible;
        border-right: none;
        animation: none;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .typing-hero {
        font-size: 20px;
        line-height: 1.5;
        white-space: normal;
        overflow: visible;
        border-right: none;
        animation: none;
        width: 100%;
    }
}

/* Booking Widget */
.booking-widget {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    padding: 25px;
    border-radius: 28px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: flex-end;
    box-shadow: 0 20px 60px var(--shadow);
    margin-top: -50px;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(212, 131, 58, 0.08);
}

.booking-widget .form-group {
    flex: 1;
    min-width: 150px;
}

.booking-widget label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 14px;
    color: var(--deep-brown);
}

.booking-widget input,
.booking-widget select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-dark);
    font-family: var(--font-sans);
}

.booking-widget input:focus,
.booking-widget select:focus {
    outline: none;
    border-color: var(--retro-orange);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.booking-widget button {
    background: var(--retro-orange);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 20px;
    box-shadow: 0 6px 24px var(--accent-glow);
    font-family: var(--font-sans);
}

.booking-widget button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(212, 131, 58, 0.5);
    background: var(--burnt-orange);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--deep-brown);
    line-height: 1.15;
}

.section-title h2 span {
    color: var(--retro-orange);
    font-style: italic;
}

.section-title p {
    color: #5a4a3a;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.7;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-special);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--retro-orange);
    background: rgba(212, 131, 58, 0.12);
    padding: 4px 18px;
    border-radius: 40px;
    border: 1px solid rgba(212, 131, 58, 0.2);
    margin-bottom: 12px;
    backdrop-filter: blur(4px);
}

/* About Section */
.about-section {
    background: var(--cream);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    color: #5a4a3a;
    font-weight: 300;
    line-height: 1.8;
}

.about-text h2 {
    font-family: var(--font-serif);
    color: var(--deep-brown);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.15;
}

.about-image img {
    border-radius: 30px;
    box-shadow: 0 20px 60px var(--shadow);
}

/* Rooms Grid */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.room-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(74, 50, 34, 0.04);
    transition: 0.4s;
    border: 1px solid rgba(212, 131, 58, 0.04);
}

.room-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 20px 60px rgba(74, 50, 34, 0.08);
}

.room-image {
    height: 250px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

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

.room-info {
    padding: 25px;
}

.room-info h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--deep-brown);
}

.room-info p {
    color: #5a4a3a;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 300;
}

.room-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #7a6a5a;
}

.room-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.room-price {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: bold;
    color: var(--retro-orange);
}

.room-price span {
    font-size: 14px;
    font-weight: normal;
    color: #7a6a5a;
}

.room-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 60px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    border: none;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.btn-primary {
    background: var(--retro-orange);
    color: #fff;
    box-shadow: 0 6px 24px rgba(212, 131, 58, 0.35);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(212, 131, 58, 0.5);
    background: var(--burnt-orange);
}

.btn-outline {
    border: 2px solid var(--deep-brown);
    color: var(--deep-brown);
    background: transparent;
}

.btn-outline:hover {
    background: var(--deep-brown);
    color: #fff;
    transform: translateY(-4px);
    border-color: var(--deep-brown);
}

.btn-accent {
    background: var(--retro-orange);
    color: #fff;
    box-shadow: 0 6px 24px rgba(212, 131, 58, 0.35);
}

.btn-accent:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(212, 131, 58, 0.5);
    background: var(--burnt-orange);
}

/* Services */
.services-section {
    background: var(--off-white);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: radial-gradient(var(--deep-brown) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    pointer-events: none;
}

.services-section .section-title h2 {
    color: var(--deep-brown);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 12px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(212, 131, 58, 0.06);
    box-shadow: 0 2px 12px rgba(74, 50, 34, 0.03);
    transition: all 0.3s ease;
    text-align: center;
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(74, 50, 34, 0.08);
    border-color: rgba(212, 131, 58, 0.15);
}

.service-item i {
    font-size: 22px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 131, 58, 0.08);
    border-radius: 14px;
    color: var(--retro-orange);
    flex-shrink: 0;
}

.service-item h3,
.service-item h4 {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--deep-brown);
    letter-spacing: 0.2px;
    margin: 0;
    line-height: 1.3;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .service-item {
        padding: 16px 10px;
        border-radius: 14px;
    }
    
    .service-item i {
        width: 40px;
        height: 40px;
        font-size: 18px;
        border-radius: 12px;
    }
    
    .service-item h3,
    .service-item h4 {
        font-size: 12px;
    }
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    height: 250px;
    overflow: hidden;
    border-radius: 28px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Contact Section */
.contact-section {
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--deep-brown);
}

.contact-info p {
    margin-bottom: 15px;
    color: #5a4a3a;
    font-weight: 300;
}

.contact-info i {
    color: var(--retro-orange);
    margin-right: 10px;
    width: 20px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 28px;
    box-shadow: 0 20px 60px var(--shadow);
    border: 1px solid rgba(212, 131, 58, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--deep-brown);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 16px;
    font-family: var(--font-sans);
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--retro-orange);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background: #1f150e;
    color: rgba(255, 255, 255, 0.5);
    padding: 50px 0 20px;
    border-top: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-family: var(--font-serif);
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--retro-orange);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: var(--muted-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.35);
    font-size: 14px;
}

/* Room Detail Page */
.room-detail {
    margin-top: 20px;
    padding: 50px 0;
}

.room-detail-header {
    margin-bottom: 30px;
}

.room-detail-header h1 {
    font-family: var(--font-serif);
    font-size: 32px;
    color: var(--deep-brown);
    margin-bottom: 10px;
}

.room-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.room-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.room-gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 28px;
}

.room-gallery img:first-child {
    grid-column: span 2;
    height: 400px;
}

.room-description {
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    padding: 25px;
    box-shadow: 0 20px 60px var(--shadow);
    border: 1px solid rgba(212, 131, 58, 0.08);
}

.room-description h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--deep-brown);
}

.room-amenities {
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    padding: 25px;
    box-shadow: 0 20px 60px var(--shadow);
    border: 1px solid rgba(212, 131, 58, 0.08);
}

.room-amenities h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--deep-brown);
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: rgba(212, 131, 58, 0.04);
    border-radius: 16px;
    font-size: 13px;
    color: #5a4a3a;
    border: 1px solid rgba(212, 131, 58, 0.04);
}

.amenity-item i {
    font-size: 14px;
    color: var(--retro-orange);
}

.room-location {
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    padding: 25px;
    box-shadow: 0 20px 60px var(--shadow);
    border: 1px solid rgba(212, 131, 58, 0.08);
}

.room-location h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--deep-brown);
}

.room-calendar {
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    padding: 25px;
    box-shadow: 0 20px 60px var(--shadow);
    border: 1px solid rgba(212, 131, 58, 0.08);
}

.room-calendar h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--deep-brown);
}

.booking-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 28px;
    box-shadow: 0 20px 60px var(--shadow);
    position: sticky;
    top: 20px;
    align-self: start;
    border: 1px solid rgba(212, 131, 58, 0.08);
}

.bookformular h2 {
    text-align: center;
}

.calendar-container h3 {
    text-align: center;
}

.booking-card h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--deep-brown);
    text-align: center;
}

.booking-card .price {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: bold;
    color: var(--retro-orange);
    margin-bottom: 20px;
}

.booking-card .price span {
    font-size: 16px;
    font-weight: normal;
    color: #7a6a5a;
}

/* Calendar */
.calendar-widget {
    margin: 20px 0;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.calendar-header button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 5px 10px;
    color: var(--deep-brown);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    text-align: center;
}

.calendar-grid .day-name {
    font-weight: 600;
    font-size: 12px;
    color: #7a6a5a;
    padding: 5px;
}

.calendar-grid .day {
    padding: 8px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
    color: var(--text-dark);
}

.calendar-grid .day:hover:not(.disabled):not(.selected) {
    background: rgba(212, 131, 58, 0.1);
}

.calendar-grid .day.disabled {
    color: rgba(74, 50, 34, 0.25);
    cursor: not-allowed;
}

.calendar-grid .day.selected {
    background: var(--gradient);
    color: #fff;
}

.calendar-grid .day.in-range {
    background: rgba(212, 131, 58, 0.15);
}

.calendar-grid .day.blocked {
    background: #ff4757;
    color: #fff;
    cursor: not-allowed;
}

/* Breadcrumb */
.breadcrumb {
    padding: 20px 0;
    background: var(--deep-brown);
    margin-top: 120px;
}

.breadcrumb ul {
    list-style: none;
    display: flex;
    gap: 10px;
}

.breadcrumb li::after {
    content: '/';
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb li:last-child::after {
    display: none;
}

.breadcrumb li {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
    color: var(--retro-orange);
}

/* Admin Styles */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 250px;
    background: var(--deep-brown);
    color: var(--text-light);
    position: fixed;
    height: 100vh;
    padding: 20px;
}

.admin-sidebar .logo {
    color: var(--text-light);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-sidebar ul {
    list-style: none;
}

.admin-sidebar ul li {
    margin-bottom: 5px;
}

.admin-sidebar ul li a {
    display: block;
    padding: 12px 15px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
}

.admin-sidebar ul li a:hover,
.admin-sidebar ul li a.active {
    background: rgba(212, 131, 58, 0.15);
    color: var(--retro-orange);
}

.admin-content {
    margin-left: 250px;
    padding: 30px;
    width: calc(100% - 250px);
    background: var(--cream);
    min-height: 100vh;
}

.admin-header {
    background: #fff;
    padding: 20px 30px;
    margin: -30px -30px 30px -30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 30px var(--shadow);
}

.admin-card {
    background: #fff;
    padding: 25px;
    border-radius: 28px;
    box-shadow: 0 8px 40px rgba(74, 50, 34, 0.04);
    margin-bottom: 20px;
    border: 1px solid rgba(212, 131, 58, 0.04);
}

.admin-card h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--deep-brown);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stat-card {
    background: #fff;
    padding: 25px;
    border-radius: 28px;
    box-shadow: 0 8px 40px rgba(74, 50, 34, 0.04);
    border: 1px solid rgba(212, 131, 58, 0.04);
}

.stat-card h4 {
    color: #7a6a5a;
    font-size: 14px;
    margin-bottom: 10px;
}

.stat-card .value {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: bold;
    color: var(--retro-orange);
}

/* Tables */
.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.data-table th {
    background: var(--deep-brown);
    font-weight: 600;
    color: #fff;
}

.data-table tr:hover {
    background: rgba(212, 131, 58, 0.03);
}

.status-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-confirmed {
    background: #d4edda;
    color: #155724;
}

.status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

.status-completed {
    background: #d1ecf1;
    color: #0c5460;
}

/* Login Page */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-beige) 100%);
}

.login-box {
    background: #fff;
    padding: 50px;
    border-radius: 28px;
    box-shadow: 0 20px 60px var(--shadow);
    width: 100%;
    max-width: 400px;
}

.login-box h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--deep-brown);
    font-family: var(--font-serif);
}

/* Pagination */
.pagination {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
}

.pagination a,
.pagination span {
    padding: 8px 15px;
    border: 1px solid var(--border);
    border-radius: 60px;
    color: var(--deep-brown);
}

.pagination a:hover {
    background: var(--retro-orange);
    color: #fff;
    border-color: var(--retro-orange);
}

.pagination .active {
    background: var(--retro-orange);
    color: #fff;
    border-color: var(--retro-orange);
}

/* Messages */
.alert {
    padding: 15px 20px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Responsive */
@media (max-width: 768px) {
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    html, body {
        overflow-x: hidden;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    .form-group input {
        font-size: 14px;
    }
    .booking-widget button {
        text-align: center;
        margin-left: 10%;
    }
    .about-content,
    .contact-grid,
    .room-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .amenities-list {
        grid-template-columns: 1fr;
    }
    
    .amenity-item {
        font-size: 12px;
        padding: 6px 8px;
    }
    
    .amenity-item i {
        font-size: 12px;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .calendar-grid {
        grid-template-columns: repeat(7, 1fr);
        gap: 2px;
    }
    
    .calendar-grid .day {
        padding: 5px;
        font-size: 12px;
    }
    
    .calendar-grid .day-name {
        font-size: 10px;
        padding: 2px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .breadcrumb ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Image Upload */
.image-upload-area {
    border: 2px dashed var(--border);
    padding: 30px;
    text-align: center;
    border-radius: 28px;
    cursor: pointer;
    transition: 0.3s;
}

.image-upload-area:hover {
    border-color: var(--retro-orange);
    background: rgba(212, 131, 58, 0.05);
}

.image-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.image-preview img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 16px;
}

.image-preview .remove-image {
    position: absolute;
    top: -5px;
    right: -5px;
    background: red;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
