/* Custom CSS for Flot.nu */

/* Import Montserrat font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #000000;
    --secondary-color: #000000;
    --accent-color: #000000;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
}

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

body {
    font-family: 'Arimo', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Navigation */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    letter-spacing: 1px;
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

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

.btn-book {
    background-color: #000000;
    color: #fff !important;
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    border: 2px solid #000000;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-book:hover {
    background-color: transparent;
    color: #000000 !important;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

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

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #000000;
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Cards */
.service-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card .card-body {
    padding: 1.5rem;
}

.service-card .card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
}

.price-tag {
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    /* Removed border: 2px solid #000000; */
}

.price-tag .price {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    display: block;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.about-image-wide {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Contact Form */
.contact-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    padding: 0.75rem;
    margin-bottom: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(232, 180, 184, 0.25);
}

.btn-submit {
    background-color: #000000;
    color: #fff;
    padding: 0.75rem 2rem;
    border: 2px solid #000000;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-submit:hover {
    background-color: transparent;
    color: #000000;
}

/* Contact Info */
.contact-info {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.contact-info h4 {
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-info i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

/* Map */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* Footer */
footer {
    background-color: #000000;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

footer p {
    margin: 0;
}

/* Bootstrap Button Override */
.btn-primary {
    background-color: #000000 !important;
    border-color: #000000 !important;
    color: #fff !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:focus-visible,
.btn-primary.active,
.btn-primary.show {
    background-color: #333333 !important;
    border-color: #333333 !important;
    color: #fff !important;
    box-shadow: none !important;
}

.btn-outline-primary {
    border-color: #000000 !important;
    color: #000000 !important;
    background-color: transparent !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary:focus-visible,
.btn-outline-primary.active,
.btn-outline-primary.show {
    background-color: #000000 !important;
    border-color: #000000 !important;
    color: #fff !important;
    box-shadow: none !important;
}

/* Remove blue focus ring from all buttons */
.btn:focus,
.btn:active:focus,
.btn.active:focus {
    box-shadow: none !important;
    outline: none !important;
}

/* FAQ Accordion Styling */
.accordion-button {
    background-color: #000000 !important;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background-color: #000000 !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

.accordion-button:focus {
    box-shadow: none !important;
    border-color: #000000 !important;
}

.accordion-button::after {
    filter: invert(1) brightness(100);
}

.accordion-item {
    border: 2px solid #000000 !important;
    border-radius: 8px !important;
    overflow: hidden;
}

.accordion-body {
    background-color: #ffffff;
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Alert Messages */
.alert {
    border-radius: 5px;
    padding: 1rem;
    margin-bottom: 1rem;
}
