:root {
    --clr-black: #0A0A0A;
    --clr-theme-1: #BCA0D9;
    --clr-theme-2: #CBC2FC;
    --clr-theme-3: #E4C365;
    --clr-theme-4: #BDE8FB;
    --border-dark: #222;
    --border-light: #EEE;
    --box-shadow: 2px 4px 8px 0 #DDD;
    --page-max-width: 960px;
}

html {
    scroll-padding-top: 3rem;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
}

section {
    min-height: 100vh;
    padding: 1rem;
}

section>div {
    max-width: var(--page-max-width);
    margin: 0 auto;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
}

h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

a,
button {
    cursor: pointer;
}

svg {
    fill: currentColor;
}

.page-title {
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-light);
}

/* home section */
#home {
    min-height: 100vh;
    background-image: url(images/home-background.avif);
    background-size: cover;
    background-position: center;
    color: #FFF;
    text-align: center;
    display: grid;
    align-items: center;
}

.brand-name {
    font-family: 'Eczar', 'Inter';
    font-size: 3rem;
    line-height: 1.2;
    overflow-x: auto;
    overflow-y: hidden;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 500;
}

/* contact section */
#contact a {
    font-weight: 600;
    color: #000;
    text-decoration: none;
    border-bottom: 2px solid;
}

.contact-links {
    display: flex;
    margin-left: 0;
    gap: 1rem;
    flex-wrap: wrap;
}

#contact .btn {
    font-size: 1.2rem;
    font-weight: 400;
    color: #fff !important;
    width: 3rem;
    height: 3rem;
    padding: 0;
    margin-top: 0;
    border: none;
    border-radius: 50%;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
}

#contact svg {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
}

.btn-facebook {
    background-color: #4267B2;
}

.btn-whatsapp {
    background-color: #25D366;
}

.btn-call {
    background-color: #2F56C1;
}

.btn-mail {
    background-color: #2F56C1;
}

.btn-instagram {
    background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
}

.address {
    line-height: 1.5rem;
}

#contact td:nth-child(2) {
    width: 2rem;
    text-align: center;
}