<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --red: #d90429;
    --dark-red: #a3001b;
    --light-red: #ff2e47;
}

body {
    font-family: 'Montserrat', sans-serif;
    padding-top: 76px; /* Adjust based on navbar height */
}

/* Navbar Styles */
.navbar {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.navbar-brand {
    color: var(--red) !important;
    font-weight: 600;
    font-size: 1.4rem;
}

.nav-link {
    color: white !important;
    transition: color 0.3s;
    padding: 0.5rem 0.75rem !important;
    font-weight: 500;
    display: inline-block;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--red) !important;
}

.nav-link.active {
    color: var(--red) !important;
    font-weight: 700;
    border-bottom: 2px solid var(--red);
    background: rgba(255,255,255,0.04);
}

@media (min-width: 768px) {
    .navbar-expand-md .navbar-nav {
        gap: 1rem;
    }
    
    .navbar-collapse {
        display: flex !important;
    }
    
    .navbar-toggler {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.95);
        padding: 1rem;
        border-radius: 0 0 8px 8px;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .nav-link {
        padding: 0.75rem !important;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

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

.hero .btn {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    min-width: 160px;
    text-align: center;
    display: inline-block;
    white-space: nowrap;
}

/* Service Cards */
.service-card {
    transition: transform 0.3s;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    height: 200px;
    object-fit: cover;
}

/* Buttons */
.btn-gold {
    background-color: var(--red);
    border-color: var(--red);
    color: white;
    transition: all 0.3s;
    white-space: nowrap;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    min-width: max-content;
}

.btn-gold:hover {
    background-color: var(--dark-red);
    border-color: var(--dark-red);
    color: white;
    transform: translateY(-2px);
}

/* Service Section Enhancements */
.service-section {
    padding: 2rem 0;
    transition: transform 0.3s ease;
}

.service-section:hover {
    transform: translateY(-5px);
}

.service-section img {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.service-section:hover img {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.service-section .list-unstyled li {
    margin-bottom: 0.8rem;
    transition: transform 0.2s ease;
}

.service-section .list-unstyled li:hover {
    transform: translateX(5px);
}
/* Portfolio Grid */
.portfolio-grid {
    margin-top: 2rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    opacity: 0;
    transition: opacity 0.3s;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

/* Testimonials */
.testimonial-card {
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

/* Admin Dashboard */
.admin-card {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: none;
    margin-bottom: 2rem;
}

/* Booking Form */
.booking-form {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: none;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 1rem 0;
    z-index: 9999;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-banner .btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    margin: 5px;
    min-width: 100px;
}

@media (max-width: 768px) {
    .cookie-banner .d-inline-block {
        display: block !important;
        text-align: center;
        margin-top: 10px;
    }
}

.text-gold {
    color: var(--red) !important;
}

/* Popup Notification */
.notification-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 350px;
    padding: 15px 25px;
    border-radius: 4px;
    color: white;
    z-index: 9999;
    display: none;
    animation: slideIn 0.5s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.notification-popup.success {
    background-color: #28a745;
    border-left: 4px solid #1e7e34;
}

.notification-popup.error {
    background-color: #dc3545;
    border-left: 4px solid #bd2130;
}

.notification-popup .close-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.notification-popup .close-btn:hover {
    opacity: 1;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.sticky-banner {
    position: sticky;
    top: 56px; /* Height of the navbar, adjust if needed */
    z-index: 1040;
    background: #f8f9fa;
    color: #444;
    font-size: 1rem;
    padding: 6px 0;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
    width: 100%;
}</pre></body></html>