/* Main Styles for ROCA REDI Landing Page */

@font-face {
    font-family: 'Core Sans DS 35';
    src: url('../fonts/CoreSansDS35Regular.woff2') format('woff2'),
    url('../fonts/CoreSansDS35Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/* Reset and Base Styles */
body {
    margin: 0;
    padding: 0;
    background-color: white;
    font-family: "Core Sans DS 35", "Helvetica Neue", Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    width: 80%;
    max-width: 1200px;
}

img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.contact-info {
    margin-top: 20px;
    font-size: 24px;
    line-height: 1.6;
}

/* Phone numbers styling */
.phones {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.phone-number {
    display: inline-block;
}

/* Hide separator on small screens */
@media (max-width: 600px) {
    .phone-separator {
        display: none;
    }

    .phone-number {
        width: 100%;
    }
}

/* Smaller font size for very small screens */
@media (max-width: 400px) {
    .contact-info {
        font-size: 18px;
    }
}

/* Link styling - always black and without underline */
a, a:hover, a:visited, a:active, a:focus {
    color: black !important;
    text-decoration: none !important;
}
