@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@100..900&family=Roboto:wght@400;500&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
}


body {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6;
    background: white;
    height: 100vh;
}
header img {
    width:150px;
}
.intro-container {
    background-color: lightblue;
    display: block;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Section */
header {
    text-align: center;
    padding: 50px 0;
    color: #fff;
}

h1, h2 {
    color: #686868;
    font-family: "Helvetica Neue", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
            "slnt" 0,
            "CRSV" 0,
            "SHRP" 0;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
}

/* vCard Download Section */
.vcard-section {
    text-align: center;
    margin: 20px 0 80px;
}

.primary-button svg,
.secondary-button svg{
    padding-top: 16px;
}

/* Shared styles for both buttons */
.button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #c9735a; /* couleur terre cuite */
    color: white;
    font-family: 'Georgia', serif;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 3px double white;
    text-align: center;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out, background-color 0.3s ease, color 0.3s ease;
}
.social-container {
    display:block;
}
.button.social {
    display: inline-block;
    position: relative;
    top: 12px;
    color: #333333;
    background: transparent;
    box-shadow: none;
    margin-left: 0;
    margin-right: 0;
    outline: 0;
    padding: 12px 6px;
}

.button.social:hover {
    color: #333333;
    background: transparent;
    box-shadow: none;
}

/* Primary Button */
.primary-button {
    background-color: #c9735a;
    color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.15);
}
.outline-primary-button:hover {
    background: linear-gradient(145deg, #BD563C, #C97863);
    color: white;
}

.outline-primary-button {
    background-color:white;
    border: 1px solid #BD563C;
    color: #BD563C;
}


.primary-button:active {
    transform: translateY(0);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Secondary Button */
.secondary-button {
    background-color: white;
    color: #686868;
    border: 2px solid #686868;
}

.secondary-button:hover {
    background-color: #686868;
    color: white;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .button {
        font-size: 14px;
        padding: 10px 20px;
    }
}


/* Fade-in effect on page load for all elements */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInAnimation 0.8s ease-out forwards;
}

@keyframes fadeInAnimation {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button hover animations */
.button {
    cursor: pointer;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out, background-color 0.3s ease, color 0.3s ease;
}

/* Primary Button */
.primary-button {
    background-color: #c9735a; /* couleur terre cuite */
    color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.15);
}

.primary-button:active {
    transform: translateY(0);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Secondary Button */
.secondary-button {
    background-color: white;
    color: #686868;
    padding: 6px 8px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 10px;
    border: 1px solid #686868;
    outline: none;
    box-shadow: none;
}

.secondary-button:hover {
    color: #DADADA;
}

/* Fade-in for mobile adjustment */
@media (max-width: 768px) {
    .button {
        display: block;
        font-size: 14px;
        padding: 10px 20px;
        margin-bottom: 4px;
    }
}

/* Optional: Parallax effect (if background image exists) */
.parallax-bg {
    background: url('img/background.jpg') no-repeat fixed center;
    background-size: cover;
    height: 100vh;
    position: relative;
}

/* Footer */
footer {
    font-size: .9em;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #737373;
    color: #737373;
    margin-top: 80px;
}

footer a {
    color: #007bff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
