@font-face {
    font-family: 'General Grotesque Mono';
    src: url('assets/Fonts/General grotesque mono/GeneralGrotesqueMono-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'General Grotesque Mono';
    src: url('assets/Fonts/General grotesque mono/GeneralGrotesqueMono-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Trade Gothic Extended';
    src: url('assets/Fonts/Druk/TradeGothicLTStd-Extended.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url('assets/Web_Fondo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #1a1a1a;
    font-family: 'General Grotesque Mono', monospace;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 40px 20px;
    text-align: center;
    /* Use a slightly off-white color if background image fails */
    background-color: #f7f6f1;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: calc(100vh - 80px);
    /* Account for padding */
    width: 100%;
    max-width: 1200px;
}

.header,
.footer {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    line-height: 1.6;
    max-width: 600px;
}

.header strong,
.footer strong {
    font-weight: bold;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    width: 100%;
}

.logo-img {
    max-width: 200px;
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.logo-subtitle {
    font-family: 'Trade Gothic Extended', sans-serif;
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin-bottom: 25px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-subtitle .solid {
    color: #1a1a1a;
}

.logo-subtitle .outline {
    color: transparent;
    -webkit-text-stroke: 1.5px #1a1a1a;
}

.subtitle {
    font-family: 'Trade Gothic Extended', sans-serif;
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.make {
    color: #1a1a1a;
}

.your-outline {
    color: transparent;
    -webkit-text-stroke: 1px #1a1a1a;
}

.own-story {
    color: #1a1a1a;
}

.social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-weight: 800;
    /* Increased weight */
    font-size: 0.85rem;
    /* Slightly larger for emphasis */
    letter-spacing: 0.1em;
}

.link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    color: #1a1a1a;
    transition: opacity 0.2s ease;
}

.link-item:hover {
    opacity: 0.7;
}

.ig-icon {
    width: 18px;
    /* Slightly larger */
    height: 18px;
    stroke-width: 2.5;
    /* Thicker stroke */
}

.btn-contacto {
    display: inline-block;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    padding: 12px 32px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    transition: background-color 0.2s ease, transform 0.2s ease;
    margin-top: 10px;
}

.btn-contacto:hover {
    background-color: #333;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body {
        background-image: url('assets/Web_Fondo_Movil.png');
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .logo-img {
        max-width: 220px;
    }

    .logo-subtitle {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .social-links {
        margin-bottom: 15px;
        font-size: 0.75rem;
    }

    .btn-contacto {
        padding: 10px 24px;
        font-size: 0.75rem;
    }

    body {
        padding: 15px;
    }

    .container {
        min-height: calc(100vh - 30px);
    }
}