/*
Theme Name: Kraft Design Linktree Custom Theme
Theme URI: https://www.kraftdesign.eu/
Author: Erwan
Author URI: https://www.kraftdesign.eu/
Description: Thème custom pour les pages Linktree de Kraft Design
Version: 1.0
*/

@font-face {
    font-family: 'Euclid Circular A';
    src: url('fonts/EuclidCircularA-Light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Euclid Circular A', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1C1C1C;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#linktree {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.linktree-logo {
    margin-bottom: 4rem;
}

.linktree-logo img {
    max-width: 200px; /* ou la taille que vous souhaitez */
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Pour les SVG spécifiquement */
.linktree-logo img[src$=".svg"] {
    width: 200px; /* Taille fixe pour les SVG si nécessaire */
    height: auto;
}

.linktree-name {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.linktree-name img {
    width: 30px;
    height: auto;
    margin-right: 10px;
}

h1, .linktree-name h1 {
    font-size: 20px;
    font-weight: normal;
    color: #FFFFFF;
    margin: 0;
}

.linktree-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
}

.linktree-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 280px;
    height: 60px;
    font-size: 18px;
    text-decoration: none;
    color: #FFFFFF;
    background-color: transparent;
    border: 1.5px solid #D1A262;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.linktree-button:hover {
    border: 1.5px solid #FFFFFF;
}

@media screen and (max-width: 480px) {
    .linktree-button {
        height: 50px;
        font-size: 1rem;
    }
}