/* Base styles */
:root {
    --primary-color: #e67e22;
    --primary-dark: #d35400;
    --secondary-color: #222;
    --text-light: #fff;
    --text-dark: #333;
    --background-light: #f8f9fa;
    --background-dark: #222;
    --border-radius: 4px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body, html {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
    color: var(--text-dark);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    font-size: 14px;
}

.cookie-banner a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons button {
    padding: 8px 15px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

#customizeCookies {
    background: transparent;
    border: 1px solid white;
    color: white;
}

#refuseCookies {
    background: #444;
    color: white;
}

#acceptCookies {
    background: var(--primary-color);
    color: white;
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 5px 0;
    background-color: white;
}

.logo {
    height: 50px;
    margin-right: 10px;
}

.brand-text {
    display: inline-block;
    vertical-align: middle;
}

.brand-name {
    color: var(--text-dark);
    font-weight: bold;
    font-size: 24px;
}

.brand-services {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 24px;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 10px 15px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--primary-color);
}

.nav-right-elements {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.phone-number {
    margin: 0 15px;
}

.phone-link {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.phone-link i {
    margin-right: 5px;
}

.phone-link:hover {
    color: var(--primary-dark);
}

.appointment-btn-container {
    margin-left: 15px;
}

.appointment-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 4px 6px rgba(230, 126, 34, 0.2);
}

.appointment-btn:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(211, 84, 0, 0.3);
}

/* Hero Section with Video Background */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

#bgVideo {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -5;
}

.hero-content {
    position: relative;
    z-index: 1;
    margin-top: 60px;
}

.main-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.sub-title {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 25px;
}

.description {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 40px;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.action-buttons .btn {
    padding: 12px 25px;
    font-weight: 600;
    transition: var(--transition);
}

.action-buttons .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.action-buttons .btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.action-buttons .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.section-title {
    color: var(--primary-color);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.section-title span {
    color: var(--text-dark);
    font-weight: 300;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

.about-content {
    font-size: 18px;
    line-height: 1.6;
    text-align: left;
}

.about-content h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.about-content ul {
    list-style-type: none;
    padding-left: 0;
}

.about-content ul li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.about-content ul li:before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.opening-hours {
    margin-top: 30px;
    padding: 15px;
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
    text-align: center;
}

.opening-hours i {
    margin-right: 10px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: white;
}

.service-cards {
    margin-top: 50px;
}

.service-card {
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

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

.icon-container {
    margin-bottom: 20px;
}

.service-icon {
    width: 80px;
    height: 80px;
    fill: var(--primary-color);
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 20px;
}

.service-details {
    list-style-type: none;
    padding-left: 0;
    text-align: left;
}

.service-details li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.service-details li:last-child {
    border-bottom: none;
}

.service-note {
    margin-top: 50px;
    font-style: italic;
    color: #777;
}

/* Appointment Section */
.appointment-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: white;
}

.appointment-section .section-title {
    color: white;
}

.appointment-section .section-title::after {
    background-color: white;
}

.subtitle {
    font-size: 22px;
    margin-bottom: 40px;
}

.appointment-container {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: var(--border-radius);
}

.btn-appointment {
    background-color: white;
    color: var(--primary-color);
    border: none;
    padding: 15px 30px;
    font-size: 20px;
    font-weight: 600;
}

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

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.contact-content {
    background-color: white;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    padding: 40px;
}

.contact-content h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
}

.form-control, .form-select {
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    background-color: #f9f9f9;
}

.form-control:focus, .form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.15);
    background-color: #fff;
}

.form-control::placeholder {
    color: #aaa;
    opacity: 1;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23e67e22' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

.contact-form .btn-primary {
    display: block;
    width: 100%;
    padding: 14px;
    background-color: var(--primary-color);
    border: none;
    color: white;
    font-weight: 600;
    font-size: 16px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    box-shadow: 0 4px 6px rgba(230, 126, 34, 0.2);
}

.contact-form .btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 6px 8px rgba(211, 84, 0, 0.3);
    transform: translateY(-2px);
}

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

.contact-info {
    padding: 20px;
    background-color: var(--background-light);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: var(--border-radius);
}

.contact-info p {
    margin-bottom: 20px;
    font-size: 18px;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Footer */
.site-footer {
    background-color: var(--background-dark);
    color: #bbb;
    padding: 60px 0 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo .logo {
    height: 40px;
    margin-right: 10px;
}

.footer-brand-name {
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.site-footer h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.site-footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links, .footer-contact {
    list-style-type: none;
    padding-left: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.copyright {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #444;
    text-align: center;
}

/* Media Queries */
@media (max-width: 992px) {
    .navbar-collapse {
        background-color: white;
        padding: 20px;
        border-radius: var(--border-radius);
        margin-top: 10px;
    }
    
    .nav-right-elements {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 15px;
    }
    
    .phone-number, .appointment-btn-container {
        margin: 10px 0;
        text-align: center;
        width: 100%;
    }
    
    .appointment-btn {
        display: block;
        width: 100%;
    }
    
    .main-title {
        font-size: 36px;
    }
    
    .sub-title {
        font-size: 28px;
    }
    
    .description {
        font-size: 20px;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        margin-top: 15px;
        align-self: flex-end;
    }
    
    .hero-section {
        height: auto;
        padding: 150px 0 80px;
    }
    
    .about-content, .service-card {
        text-align: center;
    }
    
    .about-content ul li {
        text-align: left;
    }
    
    .service-details {
        text-align: center;
    }
    
    .contact-info {
        margin-top: 40px;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .action-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 30px;
    }
    
    .sub-title {
        font-size: 24px;
    }
    
    .description {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .appointment-container {
        padding: 20px;
    }
    
    .btn-appointment {
        padding: 12px 20px;
        font-size: 16px;
    }
    
    .contact-content {
        padding: 20px;
    }
}

/* Gallery Styles */
.galerie-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.gallery-item {
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}
