* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 50px;
    height: 50px;
    background-image: url('../images/beton-design.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
}

.company-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: rgb(255, 123, 65);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

/* Hero Section */
.hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
    image-rendering: optimizeQuality;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out forwards;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about {
    padding: 80px 40px;
    background-color: #f9f9f9;
    text-align: center;
}

.about h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.about h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, rgb(255, 123, 65), #c70039);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.about p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: #666;
}

.about-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.name-company {
    color: rgb(255, 123, 65);
    font-weight: bold;
}

/* Contact Section */
.contact {
    padding: 0px 40px 80px 40px;
    background-color: #f9f9f9;
    text-align: center;
}

.contact h3 {
    text-align: left;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info, .contact-hours, .contact-social {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-info .contact-item {
    margin-bottom: 20px;
}

.contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.contact-info p, .contact-hours p, .contact-social p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info a, .contact-social a {
    color: rgb(255, 123, 65);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover, .contact-social a:hover {
    color: rgb(255, 123, 65);
}

.contact-hours h3, .contact-social h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact i {
    font-size: 1.2rem;
    color: rgb(255, 123, 65);
}

.map-container {
    width: 100%;
    margin-top: 15px;
    text-align: center;
}

.map-container h3 {
    font-family: "Rubik", sans-serif;
    font-size: 1.8em;
    color: black;
    margin-bottom: 20px;
}

.map-container iframe {
    border-radius: 10px;
    width: 90%;
    height: 100%;
    min-height: 400px;
}

/* Footer */
footer {
    padding: 20px 40px;
    background-color: #333;
    color: white;
    text-align: center;
}

footer p {
    font-size: 0.9rem;
}

.footer-link {
    color: rgb(255, 123, 65);
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 10px 0;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .contact {
        padding: 40px 20px;
    }
}