@import url('https://fonts.googleapis.com/css2?family=Anton&family=Russo+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bangers&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bangers&display=swap');

body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
    scroll-behavior: smooth;
}

header {
    text-align: center;
    padding: 40px 20px;
    background: #111;
}

.logo {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
}

nav a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

.section {
    padding: 40px 20px;
    text-align: center;
}

.section.dark {
    background-color: #1e1e1e;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.gallery img {
    width: 200px;
    height: auto;
    border-radius: 10px;
}

footer {
    text-align: center;
    padding: 20px;
    background: #111;
    color: #aaa;
}

.ig-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: none;
    border: none;
}

.ig-float img {
    width: 50px;
    height: 50px;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section,
.gallery img,
nav a,
.logo,
h1 {
    animation: fadeInUp 1s ease-out both;
}

h1 {
    font-family: 'Bangers', cursive;
    font-size: 48px;
    color: #fff;
    margin-top: 10px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 24px;
    }
}


h1 {
    font-family: 'Bangers', cursive;
    font-size: 48px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 28px;
    }
}

h1 {
    font-family: 'Bangers', cursive;
    font-size: 48px;
    text-shadow: 2px 2px 4px #000;
    color: #ffffff;
    margin-top: 20px;
}

@media (max-width: 600px) {
    h1 {
        font-size: 28px;
    }
}


body {
    background: url('https://www.transparenttextures.com/patterns/asfalt-dark.png'); /* sutil textura urbana */
    background-color: #0f0f0f;
    color: #f2f2f2;
}

h1, h2 {
    font-family: 'Russo One', sans-serif;
    color: #f2f2f2;
}

.section {
    animation: fadeInUp 1s ease-out both;
}

.gallery img {
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.gallery img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Tabla de servicios */
.services-table {
    width: 80%;
    margin: 0 auto;
    border-collapse: collapse;
    font-size: 20px;
    font-family: 'Anton', sans-serif;
    background-color: #1f1f1f;
    border-radius: 10px;
    overflow: hidden;
}

.services-table th, .services-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #333;
}

.services-table th {
    background-color: #d72638;
    color: white;
    text-transform: uppercase;
}

.services-table td {
    color: #eee;
}


nav a {
    padding: 10px 15px;
    border: 2px solid #d72638;
    border-radius: 8px;
    margin: 5px;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

nav a:hover {
    background-color: #d72638;
    color: #ffffff;
}
