:root {
    --color-primary-pink: #d52634;
    --color-secondary-pink: #fb959d;
    --color-background-light-pink: #f9f9f9;
    --color-text-dark: #333333;
    --color-text-gray: #474747;
}
html, body {
    margin: 0;
    padding: 0;
    overflow: hidden;
}
* {
    box-sizing: border-box;
}
a {
    text-decoration: none;
    color: inherit;
}
body {
    font-family: 'Nunito', sans-serif;
    background-color: white;
    color: var(--color-text-gray);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
header, main {
    flex: 1;
}
header {
    text-align: center;
    padding: 40px 10px 40px 10%;
    position: relative;
}
header::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        var(--color-secondary-pink) 20%,
        var(--color-secondary-pink) 80%,
        transparent 100%
    );
}
main {
    height: 100vh;
    overflow-y: auto;
    padding: 40px 10% 60px 5%;
}
.mainSlogan {
    font-size: 2em;
    color: var(--color-primary-pink);
    margin-bottom: 20px;
    font-weight: 300;
}
.contactInfo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}
.contactInfo a {
    color: var(--color-text-dark);
    margin: 5px 0 10px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}
.contactInfo a i {
    margin-right: 8px;
    color: var(--color-primary-pink);
    font-weight: bold;
}
.contactInfo a > span {
    transition: color 0.3s ease;
}
.contactInfo a:hover {
    color: var(--color-secondary-pink);
}
.contactInfo a:hover > span {
    color: var(--color-primary-pink);
}
.logo {
    max-width: 100%;
    width: 500px;
    height: auto;
}
h2 {
    color: var(--color-text-dark);
    margin-top: 50px;
    font-weight: 400;
}
table {
    width: auto;
    border-collapse: separate;
    margin-bottom: 20px;
    border-spacing: 0;
}
th, td {
    border: 1px solid var(--color-secondary-pink);
    border-radius: 0;
    padding: 10px 35px;
    text-align: left;
}
th {
    background-color: var(--color-secondary-pink);
    color: white;
}
tr:nth-child(even) td {
    background-color: var(--color-background-light-pink);
}
table tr td:last-child {
    min-width: 105px;
}

tr:first-of-type td {
    border-top: none;
}
tr td:first-of-type {
    border-left: none;
}
tr td:last-of-type {
    border-right: none;
}
tr:last-of-type td {
    border-bottom: none;
}
#gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}
#gallery a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
#gallery a:hover {
    transform: scale(1.05);
}
#gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
#gallery a:hover img {
    transform: scale(1.1);
}

@media screen and (max-width: 768px) {
    html, body {
        overflow: auto;;
    }
    body {
        flex-direction: column;
        margin: 10px 30px 20px;
        text-align: center;
    }
    main {
        height: auto;
    }
    header::after {
        display: none;
    }
    header, main {
        padding: 10px;
    }
    table {
        width: 100%;
    }
    th, td {
        padding: 10px 20px;
    }
    table tr td:last-child {
        min-width: 77px;
    }
    .contactInfo a span {
        display: block;
    }
}