/*
Theme Name: Ambulant Medical Transport
Description: Custom WordPress theme for Ambulant Medical private ambulance service in Bulgaria
Version: 1.0
Author: Ambulant Medical
Text Domain: ambulant-medical
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 2em;
    background: rgba(185, 196, 200, 0.15);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s ease;
}

.site-logo img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2em;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #0C4E69;
}

/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5em;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
.main-content {
    margin-top: 0;
}

/* Hero Section */
.hero-section {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2em;
    margin-top: 0;
}

.hero-content h1 {
    font-size: 3em;
    color: #0C4E69;
    margin-bottom: 1em;
    max-width: 800px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 2em;
    max-width: 1000px;
    line-height: 1.4;
}

/* Service Areas */
.service-areas {
    background: #f8f9fa;
    padding: 4em 2em;
}

.service-areas h2 {
    text-align: center;
    color: #0C4E69;
    font-size: 2.5em;
    margin-bottom: 1em;
}

.service-areas ul {
    list-style: none;
    padding: 0;
    margin: 2em 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-areas li {
    background: rgba(255, 255, 255, 0.9);
    margin: 1em 0;
    padding: 1.5em;
    border-radius: 1em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-left: 5px solid #0C4E69;
    font-size: 1.2em;
    line-height: 1.4;
    color: #333;
    font-weight: 500;
}

.service-areas strong {
    color: #0C4E69;
    font-weight: 700;
    font-size: 1.1em;
}

/* Contact Section */
.contact-section {
    background: #0C4E69;
    color: white;
    padding: 3em 2em;
    text-align: center;
}

.contact-section h2 {
    margin-bottom: 1em;
}

.contact-section a {
    display: inline-block;
    background: white;
    color: #0C4E69;
    padding: 1em 2em;
    border-radius: 2em;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1em;
    transition: transform 0.3s ease;
}

.contact-section a:hover {
    transform: translateY(-2px);
}

/* Footer */
.site-footer {
    background: #333;
    color: white;
    padding: 3em 2em 1em;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2em;
    margin-bottom: 2em;
}

.footer-section h3 {
    color: #0C4E69;
    margin-bottom: 1em;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.footer-section a:hover {
    color: #0C4E69;
}

.footer-bottom {
    text-align: center;
    padding-top: 2em;
    border-top: 1px solid #555;
}

/* Services Page Styles */
.services-hero {
    background: #0C4E69;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    padding: 4em 2em;
    text-align: center;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2em;
    padding: 4em 2em;
    max-width: 1200px;
    margin: 0 auto;
}

.service-banner {
    background-size: cover;
    background-position: center;
    border-radius: 1em;
    border: 3px solid #FFF;
    overflow: hidden;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.service-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 1em;
    z-index: 1;
}

.service-banner h2 {
    color: #FFF;
    text-align: center;
    padding: 1em 0.5em;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 2;
}

.service-banner ul {
    color: #FFF;
    display: flex;
    flex-direction: column;
    padding: 0 1em 2em;
    gap: 1em;
    position: relative;
    z-index: 2;
    list-style: none;
}

.service-banner li {
    padding: 0.5em 0;
    color: #FFF;
}

/* Contact Page Styles */
.contact-hero {
    background: #0C4E69;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    padding: 4em 2em;
    text-align: center;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.contact-info {
    padding: 4em 2em;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info h2 {
    color: #0C4E69;
    margin-bottom: 1em;
}

.contact-info p {
    font-size: 1.2em;
    margin-bottom: 1em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(185, 196, 200, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1em;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 0.5em 0;
    }
    
    .nav-links a {
        display: block;
        padding: 0.5em 0;
        font-size: 1.1em;
    }
    
    .hero-content h1 {
        font-size: 2em;
    }
    
    .hero-content p {
        font-size: 1.2em;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}
