body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #0f0f0f;
    color: white;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: rgba(17, 17, 17, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 80px;
    width: auto;
    filter: brightness(1.1);
    border-radius: 45%;
    object-fit: cover;
    box-shadow: 0 0 15px rgba(255,111,60,0.7);
    
}

nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: orange;
}

.lang-btn {
    background: transparent;
    border: 2px solid orange;
    color: orange;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
}

.lang-btn:hover {
    background: orange;
    color: white;
}

/* Hero Section */
.hero {
    min-height: 70vh;
    position: relative;
    text-align: center;
    padding: 120px 20px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7)),
                url('images/hero.jpg') center/cover no-repeat;
}

.hero h1 {
    font-size: 48px;
    margin: 0;
}

.hero h2 {
    font-size: 28px;
    color: orange;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn {
    background-color: orange;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.btn:hover {
    background-color: #ff6600;
}

/* Sections */
section {
    padding: 50px 20px;
    text-align: center;
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
}

/* Footer */
footer {
    background-color: #111;
    color: #aaa;
    text-align: center;
    padding: 15px;
}

@media (max-width: 768px) {
    header {
        flex-wrap: wrap;
        gap: 10px;
        padding: 10px 20px;
    }

    nav {
        flex: 1;
        justify-content: flex-end;
        flex-wrap: wrap;
    }

    nav a, .lang-btn {
        font-size: 14px;
    }

    .logo img {
        height: 60px;
        
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero h2 {
        font-size: 20px;
    }
}
.hero {
    padding: 80px 15px;
    background-position: center center;
    background-size: contain;
}

.project-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.project {
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    max-width: 300px;
}

.project img {
    width: 100%;
    display: block;
}

.project p {
    padding: 10px;
    color: orange;
    font-weight: bold;
}
.about-container {
    max-width: 900px; /* ограничаваме ширината */
    margin: 0 auto; /* центрираме */
    text-align: center; /* центрираме текста */
    padding: 20px;
}

.about-container p {
    font-size: 18px;
    line-height: 1.6;
    color: #ddd;
}
.section--narrow {
  width: min(900px, 92%);
  margin-inline: auto;
  text-align: left;
  padding: 40px 20px;
}

#about h2, #about h3 {
  color: orange;
  margin-top: 20px;
}

#about p, #about li {
  font-size: 18px;
  line-height: 1.6;
  color: #ddd;
}

#about ul, #about ol {
  padding-left: 20px;
  margin: 10px 0;
}

.project-gallery {
    display: flex;
    gap: 20px;
    flex-wrap: wrap; /* за мобилни устройства */
    justify-content: center;
}

.project {
    flex: 1 1 300px;
    max-width: 350px;
    text-align: center;
}

.project img {
    width: 100%;
    height: 250px; /* еднаква височина за всички */
    object-fit: cover; /* запазва пропорциите, изрязва излишното */
    border-radius: 8px;
}


@media (max-width: 768px) {
    .project-gallery {
        flex-direction: column;
        align-items: center;
    }
}

