/* Reset and Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-bg: #f9fdfe;
    --color-text: #1a1a1a;
    --color-accent: #2d4a3e;
    --color-accent-light: #4a7c6f;
    --color-muted: #666;
    --color-border: #e0e0e0;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(249, 253, 254, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 0;
}

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

.logo a {
    display: flex;
    align-items: center;
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-left: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slideshow-controls {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 10;
    display: flex;
    gap: 1rem;
}

.prev-btn, .next-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    color: white;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.9;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

.hero-cta {
    margin-top: 2rem;
}

.hero-cta .btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--color-accent);
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
}

.hero-cta .btn-primary:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
}

/* Introduction Section */
.introduction {
    padding: 8rem 0;
}

.introduction .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.elegant-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.elegant-title span {
    display: inline-block;
    margin-right: 0.3em;
}

.elegant-title.accent {
    color: var(--color-accent);
    font-style: italic;
}

.intro-description {
    font-size: 1rem;
    color: var(--color-muted);
    line-height: 1.8;
    margin-top: 2rem;
    max-width: 500px;
}

.intro-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.intro-images img {
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.intro-images img:first-child {
    transform: translateY(2rem);
}

/* What We Are Known For */
.known-for {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.section-header h2 .italic {
    font-style: italic;
}

.section-header p {
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4/5;
    cursor: pointer;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.heart-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
}

/* About Us Section */
.about-us {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--color-bg), #fff);
}

.about-us .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-title-spaced {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.1em;
}

.section-title-spaced .space {
    width: 0.5em;
}

.about-description {
    font-size: 1rem;
    color: var(--color-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.brand-name {
    color: var(--color-accent);
    font-weight: 600;
}

.btn-more {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 1px solid var(--color-text);
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    background: transparent;
    cursor: pointer;
}

.btn-more:hover {
    background: var(--color-text);
    color: white;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-images img {
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Testimonial Section */
.testimonial {
    padding: 8rem 0;
}

.testimonial .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.testimonial-image img {
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.testimonial-content {
    position: relative;
}

.quote-mark {
    margin-bottom: 1.5rem;
}

.quote-mark img {
    width: 40px;
    height: auto;
    opacity: 0.3;
}

blockquote p {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.quote-title {
    font-weight: 600;
    font-size: 1.2rem !important;
}

.quote-signoff {
    font-style: italic;
    color: var(--color-muted);
}

.testimonial-author {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    margin-top: 2rem;
    color: var(--color-accent);
}

.reviews-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.reviews-badge img {
    width: 30px;
    height: auto;
}

.reviews-badge span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-accent);
}

/* Weddings Section */
.weddings {
    padding: 6rem 0;
    background: #fff;
}

.section-header-weddings {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.section-header-weddings h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
}

.weddings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.wedding-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 3/4;
    display: block;
}

.wedding-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

/* Services Section */
.services {
    padding: 8rem 0;
}

.services-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.service-category {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.category-icon {
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.category-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-accent);
}

.category-description {
    color: var(--color-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-tiers {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-tier {
    padding: 1rem;
    background: var(--color-bg);
    border-radius: 4px;
    border-left: 3px solid var(--color-accent);
}

.service-tier h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.service-tier p {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin-bottom: 0.5rem;
}

.service-tier .price {
    font-size: 0.85rem;
    color: var(--color-accent);
    font-weight: 500;
}

/* Booking Section */
.booking-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    color: white;
}

.booking-section .section-header h2 {
    color: white;
}

.booking-section .section-header p {
    color: rgba(255,255,255,0.8);
}

.booking-form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    color: var(--color-text);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

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

.submit-btn {
    background: var(--color-accent);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
    width: 100%;
}

.submit-btn:hover {
    background: var(--color-accent-light);
}

.form-success {
    display: none;
    padding: 1rem;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    color: #155724;
    margin-bottom: 1rem;
    text-align: center;
}

.form-error {
    display: none;
    padding: 1rem;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    color: #721c24;
    margin-bottom: 1rem;
}

/* Trusted By Section */
.trusted-by {
    padding: 4rem 0;
    text-align: center;
    background: var(--color-bg);
}

.trusted-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-muted);
    margin-bottom: 2rem;
}

.logos-marquee {
    overflow: hidden;
    position: relative;
}

.logos-track {
    display: flex;
    gap: 3rem;
    animation: scroll 20s linear infinite;
}

.logo-item {
    flex-shrink: 0;
    width: 120px;
    height: 60px;
    background: var(--color-border);
    border-radius: 4px;
    opacity: 0.5;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-link {
    display: inline-block;
    color: white;
    opacity: 0.7;
    transition: var(--transition);
}

.social-link:hover {
    opacity: 1;
}

.footer-nav h6, .footer-contact h6 {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-nav ul li {
    margin-bottom: 0.75rem;
}

.footer-nav a, .footer-contact a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-nav a:hover, .footer-contact a:hover {
    color: white;
}

.footer-contact p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

/* Page Header */
.page-header {
    padding: 10rem 0 6rem;
    text-align: center;
    background: linear-gradient(to bottom, var(--color-bg), #fff);
    margin-top: 70px;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--color-muted);
    font-size: 1.1rem;
}

/* Contact Page */
.contact-section {
    padding: 4rem 0 8rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.contact-info p {
    color: var(--color-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-accent);
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

/* Destinations Page */
.destinations-section {
    padding: 4rem 0 8rem;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.destination-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
}

.destination-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.destination-info p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Social Events / Decorations */
.gallery-section {
    padding: 4rem 0 8rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .weddings-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-categories {
        grid-template-columns: 1fr;
    }

    .introduction .container,
    .about-us .container,
    .testimonial .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .intro-images,
    .about-images {
        order: -1;
    }

    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .weddings-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .slideshow-controls {
        bottom: 1rem;
        right: 1rem;
    }

    .section-header-weddings {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .intro-images,
    .about-images {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 1rem;
    }

    .service-category {
        padding: 2rem;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile menu active state */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    padding: 2rem;
    border-bottom: 1px solid var(--color-border);
    gap: 1rem;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

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

.admin-sidebar {
    width: 250px;
    background: #1a1a1a;
    color: white;
    padding: 2rem 1rem;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}

.admin-sidebar h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.admin-sidebar ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.admin-sidebar a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    transition: var(--transition);
    color: rgba(255,255,255,0.7);
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
    background: var(--color-accent);
    color: white;
}

.admin-content {
    flex: 1;
    margin-left: 250px;
    padding: 2rem;
    background: var(--color-bg);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.admin-header h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.stat-card h3 {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin-bottom: 0.5rem;
}

.stat-card .value {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-accent);
}

.bookings-table {
    width: 100%;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.bookings-table th {
    background: var(--color-accent);
    color: white;
    font-weight: 500;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

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

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

.status-completed {
    background: #cce5ff;
    color: #004085;
}

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

.action-btn {
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-border);
    background: white;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
}

.action-btn:hover {
    background: var(--color-accent);
    color: white;
    border-color: var(--color-accent);
}

@media (max-width: 1024px) {
    .admin-sidebar {
        width: 200px;
    }
    .admin-content {
        margin-left: 200px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .admin-wrapper {
        flex-direction: column;
    }
    .admin-sidebar {
        position: relative;
        width: 100%;
        height: auto;
    }
    .admin-content {
        margin-left: 0;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .bookings-table {
        display: block;
        overflow-x: auto;
    }
}