:root {
    --angelica-fontSizes-3xs: 0.45rem;
    --angelica-fontSizes-2xs: 0.625rem;
    --angelica-fontSizes-xs: clamp(12px, calc(11.76px + 0.06vw), 13px);
    --angelica-fontSizes-sm: clamp(16px, calc(15.76px + 0.06vw), 17px);
    --angelica-fontSizes-md: clamp(18px, calc(17.03px + 0.26vw), 22px);
    --angelica-fontSizes-lg: clamp(22px, calc(20.06px + 0.52vw), 30px);
    --angelica-fontSizes-xl: clamp(26px, calc(24.06px + 0.52vw), 34px);
    --angelica-fontSizes-2xl: clamp(34px, calc(29.63px + 1.17vw), 52px);
    --angelica-fontSizes-3xl: clamp(40px, calc(31.26px + 2.33vw), 76px);
    --angelica-fontSizes-4xl: 2.25rem;
    --angelica-fontSizes-5xl: 3rem;
    --angelica-fontSizes-6xl: 3.75rem;
    --site-padding: 15px;
    --site-width: 1080px;
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --header-background: linear-gradient(45deg, #21aac6, #c2c06c, #ff97a9);
    --footer-background: linear-gradient(45deg, #21aac6, #c2c06c, #ff97a9);
    font-size: 17px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Roboto', sans-serif;
    background: #fafafa;
    letter-spacing: 0.75px;
}

body.open-menu {
    overflow: hidden;
}

main {
    flex: 1;
}

a {
    text-decoration: none;
    color: black;
}

img {
    max-width: 100%;
    height: auto;
    line-height: 0;
    object-fit: cover;
}

iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    margin-block: 20px;
}

[hidden] {
    display: none!important;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 5px;
}

.page-width {
    padding-inline: var(--site-padding);
}

.container {
    max-width: var(--site-width);
    margin: auto;
}

p:not(:last-of-type) {
    margin-bottom: 15px;
}

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

header {
    padding-block: 15px;
    position: sticky;
    z-index: 999;
    top: 0;
    box-shadow: 0 -6px 10px 5px rgba(0, 0, 0, 0.5);
    background: var(--header-background);
    color: white;
}

header a {
    color: white;
}

.logo {
    max-width: 200px;
}

.logo img {
    filter: invert(1);
}

section {
    padding-block: 30px;
}

footer {
    padding-block: 30px;
    background: var(--footer-background);
    color: white;
}

.navigation-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-media {
    display: flex;
    gap: 10px;
}

.social-media img {
    width: 30px;
}

.hamburger {
    position: relative;
    height: 24px;
    width: 24px;
}

.hamburger .navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    background: var(--header-background);
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 999;
}

.navigation-desktop {
    display: flex;
    gap: 7.5px;
}

.navigation-desktop a {
    color: white;
}

.navigation-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.navigation-mobile a {
    color: white;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: white;
    transition: 0.3s ease;
    left: 0;
    z-index: 1000;
}

.hamburger::before {
    top: 25%;
}

.hamburger::after {
    top: 75%;
}

.hamburger.open::before,
.hamburger.open::after {
    top: 50%;
}

.hamburger.open::before {
    transform: rotate(45deg);
}

.hamburger.open::after {
    transform: rotate(-45deg);
}

.hamburger .navigation {
    pointer-events: none;
    transition: 0.3s;
    transform: translateY(-100%);
}

.hamburger.open .navigation {
    pointer-events: all;
    transform: translateY(0);
}

.section-title {
    text-align: center;
    margin-bottom: 25px;
    font-weight: bold;
    text-transform: uppercase;
}

.fs-3xs {
    font-size: var(--angelica-fontSizes-3xs);
}

.fs-2xs {
    font-size: var(--angelica-fontSizes-2xs);
}

.fs-xs {
    font-size: var(--angelica-fontSizes-xs);
}

.fs-sm {
    font-size: var(--angelica-fontSizes-sm);
}

.fs-md {
    font-size: var(--angelica-fontSizes-md);
}

.fs-lg {
    font-size: var(--angelica-fontSizes-lg);
}

.fs-xl {
    font-size: var(--angelica-fontSizes-xl);
}

.fs-2xl {
    font-size: var(--angelica-fontSizes-2xl);
}

.fs-3xl {
    font-size: var(--angelica-fontSizes-3xl);
}

.fs-4xl {
    font-size: var(--angelica-fontSizes-4xl);
}

.fs-5xl {
    font-size: var(--angelica-fontSizes-5xl);
}

.fs-6xl {
    font-size: var(--angelica-fontSizes-6xl);
}

.bold {
    font-weight: bold;
}

.blogs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(25px, 7.5vw, 35px);
}

.our-values, .footer-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(25px, 7.5vw, 35px);
}

.blog img, #about-us, #blog-image {
    aspect-ratio: 1.75;
    object-fit: cover;
    max-height: 45vh;
    width: 100%;
}

.blog img {
    border-radius: 8px;
}

#blog-author {
    color: gray;
}

#blog-body a {
    color: blue;
    text-decoration: underline;
}

.read-more {
    margin-top: 5px;
    text-decoration: underline;
}

#rotating-text {
    width: 60vw;
    aspect-ratio: 1;
    position: relative;
    animation: rotatingtext 8s linear infinite;
}

.twitter-tweet {
    margin-inline: auto;
}

@keyframes rotatingtext {
	0% {
		transform: rotate(360deg);
	}
	100% {
		transform: rotate(0);
	}
}

#rotating-text span {
	position: absolute;
	transform-origin: 0 30vw;
	left: 50%;
	text-transform: capitalize;
	color: black;
}

@media (max-width: 768px) {
    .mobile-hidden {
        display: none;
    }

    .footer-wrapper {
        display: block;
    }

    .footer-wrapper div:not(:last-child) {
        margin-bottom: 25px;
    }
}

@media (max-width: 640px) {
    .blogs, .our-values {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 641px) and (max-width: 768px) {
    .blogs, .our-values {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 769px) {
    .desktop-hidden {
        display: none;
    }
}