:root {
    --color-beige: #EDEAE4;
    --color-coral: #FD8057;
    --color-black: #000000;
    --color-blue: #BFDEE4;
}

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

body {
    font-family: 'GeneralSans-Regular', sans-serif;
    background-color: var(--color-beige);
    color: var(--color-black);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-size: 18px;
    line-height: 30px;;
    max-width: 100%;
    overflow-x: hidden;
}
h1, h2, .day {
    font-family: 'GeneralSans-Semibold', sans-serif;
}

.content-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0px 28px; 
    box-sizing: border-box;
}

.container {
}

header {
    padding: 2rem;
}

.logo {
    max-width: 100%;
}
.logo img {
    max-width: 440px;
    width: 100%;
    height: auto;
}

.hero {
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 100px;
}
.hero .container {
    grid-column: 2 / 3;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero .hero-text {
    margin-top: 40px;
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.5;
    font-size: 30px;
    box-sizing: border-box;
    width: 100%;
    font-style: normal
}

address {
    margin-top: 30px;
}
.hero .address-title {
    font-size: 20px;
    font-style: normal;
}
.hero .address a {
    color: var(--color-black);
    text-decoration: none;
}
.hero .address a:hover {
    text-decoration: none;
}

.hero .med-info {
    margin-top: 40px;
    padding: 20px;
    border: 1px solid black;
    border-radius: 10px;
    font-size: 18px;
    line-height: 1.5;
    font-family: 'GeneralSans-Regular';
    background-color: var(--color-blue);
    color: var(--color-black);
}
.hero .med-info a {
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--color-black);
    border: 1px solid var(--color-black);
}
.hero .med-info a:hover {
    background-color: var(--color-black);
    color: var(--color-blue);
}
.hero .med-info .med-help-text {
    font-family: 'GeneralSans-Regular';
    color: var(--color-black);
    margin-top: 10px;
}
.hero .med-info .med-info-title {
    font-family: 'GeneralSans-Semibold';
    margin-bottom: 10px;
    color: var(--color-black);
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border: 1px solid var(--color-coral);
    color: var(--color-coral);
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.3s ease;
    min-width: 200px;
    text-align: center;
    height: 40px;
    font-family: 'GeneralSans-Regular', sans-serif;
    line-height: 1em;
    font-size: 16px;
}

.button:hover {
    background-color: var(--color-coral);
    color: var(--color-beige);
}

.opening-hours {
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.hours-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0px 2rem;
    max-width: 500px;
}

.day {
    font-weight: 400;
    font-family: 'GeneralSans-Regular';
}

footer {
    width: 100vw;
    margin-top: auto;
    background-color: var(--color-coral);
    padding: 40px 0px 0px;
    overflow: hidden;
}
footer .grid {
    justify-content: flex-end;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 5fr) minmax(0, 6fr);
    grid-template-areas: '. times illu';
    gap: 28px;
    width: 100%;
}
footer .opening-hours {
    grid-area: times;
    padding-top: 40px;
    padding-bottom: 80px;
}
footer .opening-hours h2 {
    font-size: 20px;
    line-height: 1em;
    color: #000000;
    font-weight: 400;
    font-family: 'GeneralSans-Regular';
}
footer .opening-hours .hours-grid {
    max-width: 100%;
}
footer .opening-hours .info {
    font-size: 14px;
    margin-top: 20px;
    line-height: 24px;
    font-family: 'GeneralSans-Regular';
    color: #000000;
}
footer .opening-hours .info div {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
}
footer .opening-hours .info div span {
    min-width: 15px;
}
footer .illustration {
    grid-area: illu;
    line-height: 0px;
    position: relative;
}
footer .illustration img {
    position: absolute;
    top: 0;
    left: 0;
    width: 50vw;
    height: auto;
    object-fit: cover;
    height: 100%;
    object-position: left top;
}
/* Responsive Design */
@media (max-width:1200px) {
    .hero  {
        margin-top: 100px;
        grid-template-columns: 1fr 2fr;
    }
    
}
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .hero .container {
        grid-column: 1 / 2;
        padding: 0px 0px;
        margin-top: 10vh;;
        margin-bottom: 5vh;
    }
    .hero p {
        font-size: 1.1rem;
    }

    .container {
        padding: 0 1.5rem;
    }
    footer .grid {
        grid-template-columns: 1fr;
        grid-template-areas: 'times';
    }
    footer .illustration {
        display: none;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    .logo {
        margin-top: 25px;
    }
    .hero {
        margin-top: 100px;
        margin-bottom: 60px;
    }
    .hero .container {
        margin-top: 0px;
        margin-bottom: 0px;
    }
} 