a, abbr, acronym, address, applet, b, big, blockquote, body, center, cite, code, dd, del, dfn, div, dl, dt, em, fieldset, font, form, h1, h2, h3, h4, h5, h6, html, i, iframe, img, ins, kbd, label, legend, li, object, ol, p, pre, q, s, samp, small, span, strike, strong, sub, sup, tt, u, ul, var{
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    vertical-align: baseline;
    background: transparent;
    box-sizing: border-box;
    text-wrap: pretty;
}

p, a, ul, ol, li, strong, div{
    font-family: 'Mulish', Helvetica, Arial, Lucida, sans-serif;
}

h1, h2, h3, h4, h5, h6{
    font-family: 'Lora', Helvetica, Arial, Lucida, sans-serif;
    font-weight: 500;
}

html{
    height: 100%;
        background-color: #FFFCF7 !important;
}

body{
    height: inherit;
    overflow: scroll;
    background-image: url('./assets/floral-bg.png');
    /* background-size: 120%; */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

header{
    padding-bottom: 2rem;
}

.container{
    height: 100%;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (min-width: 576px) {
    .container, .container-sm {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container, .container-sm, .container-md {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container, .container-sm, .container-md, .container-lg {
        max-width: 960px;
    }
}

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

@media (max-width: 768px) {
    .logo {
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 220px;
    }
}

.container h1{
    font-size: 36px;
    line-height: 1em;
    color: #94A9A0 !important;
    text-align: center;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .container h1 {
        font-size: 28px;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container h1 {
        font-size: 24px;
        line-height: 1.2em;
        margin-bottom: 1rem;
    }
}

.contact-info {
    text-align: center;
}

.contact-info h2 {
    font-size: 24px;
    margin-bottom: 2rem;
    color: #94A9A0;
}

@media (max-width: 768px) {
    .contact-info h2 {
        font-size: 20px;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-info h2 {
        font-size: 18px;
        margin-bottom: 1rem;
    }
}

.contact-item {
    font-size: 16px;
    line-height: 1.5;
}

@media (max-width: 480px) {
    .contact-item {
        font-size: 14px;
    }
}

.contact-item strong {
    color: #94A9A0;
    font-weight: 600;
}

.contact-item a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    text-decoration: none;
    color: #94A9A0;
}

.wrap{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .wrap {
        flex-direction: column;
        gap: 1rem;
    }
}

.email-info {
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

@media (max-width: 768px) {
    .email-info {
        flex-direction: column;
        gap: 1rem;
    }
}

.address-info {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.address-info h3 {
    font-size: 24px;
    color: #94A9A0;
    margin-bottom: 1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .address-info h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .address-info h3 {
        font-size: 18px;
    }
}

.address {
    font-size: 16px;
    line-height: 1.4;
    color: #333;
    display: flex;
    justify-content: center;
    gap: 6.4px;
}

.address a {
    color: #333;
    text-decoration: none;
    display: flex;
    justify-content: center;
    gap: 6.4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.address a:hover {
    color: #94A9A0;
    text-decoration: none;
}

@media (max-width: 768px) {
    .address {
        flex-direction: column;
        gap: 0;
    }
    
    .address a {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 480px) {
    .address {
        font-size: 14px;
    }
}

.address p {
    margin-bottom: 0.3rem;
}

footer{
    text-align: center;
}