:root {
    --secondary-color: rgb(251, 172, 177);
    --primary-color: rgb(35, 26, 75);
    --font-color: rgb(35, 26, 75);
    --secondary-color-opaque: rgba(251, 172, 177, 0.9);
    --accent-colour-1: #c5d1ebff;
    --accent-colour-2: rgb(242, 211, 218);
    --accent-colour-2-opaque: rgba(251, 172, 177, 0.9);
    --accent-colour-3: #f2e0d7ff;
    font-size: 12px;
}
html {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden; 
}


body {
    width: auto;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden; 
    background-color: var(--primary-color);
}

.body-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.body-text {
    color: var(--font-color);
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.2rem;
}

.header {
    font-family: 'Federo', serif;
    text-align: center;
    font-size: 5rem;
    margin: 2rem;
    font-weight: bolder;
    color: var(--secondary-color);
}

.box {
    background-color: var(--secondary-color);
    border-radius: 2.5rem;
    box-shadow: 0rem 0rem 1.5rem 3.5rem var(--secondary-color);
    margin: 7rem;
}

.icon {
    width: 13rem;
    max-height: 13rem;
    fill: var(--font-color);    
    margin-bottom: 2rem;
}

.logo-container {
    display: flex;
    justify-content: center; 
    align-items: center;
    margin: 2rem;
}


#main-logo {
    width: 32rem;
    max-height: 32rem;
    justify-self: center;
}

.offer-container {
    width: 100vw;
    display: flex;
    flex-direction: column;
}

.offer-header {
    
    display: flex;
    flex-direction: column;
    
    align-items: center;
    text-align: center;
    font-weight: 700;
    margin-bottom: 4rem;
    font-size: 5rem;
}

.offer {
    width: 80vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: center;
}

.offer-content {
    align-self: flex-start;
}

.cost {
    display:flex;
    flex-direction: row;
    align-items: center;
    vertical-align: middle;
    align-self: flex-end;
    
}
.cost-icon {
    width: 5rem;
    fill: var(--font-color);    
}

.cost-text {
    margin: 1rem;
    font-weight: bold;
    font-size: 4rem;
}



.card-container {
    display: flex;
    flex-direction: column;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80vw;
}

.cardbox-text {
    text-align: justify;
    text-justify: auto;
}


.contact-container {
    width: 80vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 5rem;
}

.photo {
    background-image: url('./resources/imgs/IMG-20240729-WA0000.jpg');
    background-size: cover;
    width: 28rem;
    height: 28rem;
    border-radius: 100%;
    margin-bottom: 2rem;
    margin-left: 2rem;
    margin-right: 2rem;
    box-shadow: inset 0px 0px 5px 10px var(--secondary-color);
}

.contact-top-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    
}

.contact-bottom-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    
}

.contact-header {
    font-family: 'Federo', serif;
    text-align: center;
    font-size: 3.5rem;
    margin-right: 5rem;
    font-weight: 700;
}

.contact-header p {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 500;
}


.contact {
    display: flex;
    align-items: center; 
    font-size: 3rem;
}


.contact-icon {
    width: 7rem;
    height: 7rem;
}

a {
    fill: var(--primary-color);
    display: flex;
    justify-content: center;
    vertical-align: middle;
    margin-left: 1rem;
    margin-right: 1rem;
    padding: 1rem 1rem 1rem 1rem;
}

a.contact-icon {
    fill: var(--font-color);
    text-decoration: none; 
    color: inherit;
}

a:visited {
    color: inherit;
}

a:hover {
    fill: var(--secondary-color);
    background-color: var(--primary-color);
    border-radius: 100%;
}

