:root {
    --AntiqueWhite: #5b380b;
    --transition-time: 0.4s;
    --easing: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: all var(--transition-time) var(--easing);
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
    overflow-x: hidden;
}

body {
    background: #f9f9f9;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 2rem 9%;
    display: flex;
    align-content: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s ease-out;
}

header .logo {
    font-size: 2.5rem;
    color: #333;
    font-weight: bolder;
    transition: all 0.3s ease;
}

header .logo span {
    color: var(--AntiqueWhite);
}

header .navbar a {
    font-size: 2rem;
    padding: 0 1.5rem;
    color: #666;
    position: relative;
}

header .navbar a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--AntiqueWhite);
    transition: width 0.3s ease;
}

header .navbar a:hover::after {
    width: 100%;
}

header .navbar a:hover {
    color: var(--AntiqueWhite);
}

header #toggler {
    display: none;
}

header .fa-bars {
    font-size: 3rem;
    color: #333;
    border-radius: .5rem;
    padding: .5rem 1.5rem;
    cursor: pointer;
    border: .1rem solid rgba(0, 0, 0, 0.3);
    display: none;
    transition: all 0.3s ease;
}


.contact-container {
    padding: 10rem 9% 5rem;
    min-height: 100vh;
    animation: fadeIn 1s ease-out;
}

.heading {
    text-align: center;
    font-size: 4rem;
    color: #333;
    padding: 1rem;
    margin: 2rem 0 4rem;
    animation: fadeIn 1s ease-out;
}

.heading span {
    color: var(--AntiqueWhite);
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.social-links, .business-info {
    flex: 1 1 40rem;
    background: #fff;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
    animation: slideUp 0.8s ease-out;
}

.social-links h3, .business-info h3 {
    font-size: 2.5rem;
    color: var(--AntiqueWhite);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 0.2rem solid #f1f1f1;
}

.links a, .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: #666;
    transition: all 0.3s ease;
}

.links a {
    padding: 1rem;
    border-radius: 0.5rem;
}

.links a:hover {
    background: #f9f9f9;
    transform: translateX(0.5rem);
    color: var(--AntiqueWhite);
}

.links a i {
    font-size: 3rem;
    margin-right: 1.5rem;
    color: var(--AntiqueWhite);
    width: 4rem;
    text-align: center;
}

.info-item i {
    font-size: 2rem;
    margin-right: 1.5rem;
    color: var(--AntiqueWhite);
    width: 3rem;
    text-align: center;
}

.info-item:hover {
    color: var(--AntiqueWhite);
    transform: translateX(0.5rem);
}


@media (max-width: 991px) {
    html {
        font-size: 55%;
    }
    header {
        padding: 2rem;
    }
    .contact-container {
        padding: 8rem 2rem 3rem;
    }
}

@media (max-width: 768px) {
    header .fa-bars {
        display: block;
    }
    header .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #eee;
        border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }
    header #toggler:checked ~ .navbar {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
    header .navbar a {
        margin: 1.5rem;
        padding: 1.5rem;
        background: #fff;
        border: 0.1rem solid rgba(0, 0, 0, 0.1);
        display: block;
    }
    .contact-info {
        flex-direction: column;
    }
}

@media (max-width: 450px) {
    html {
        font-size: 50%;
    }
    .social-links, .business-info {
        padding: 2rem;
    }
}