body {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 100;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #ffffff;
    background-image: url('../img/beehive-neon.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.bg-video {
    position: relative;
}

.bg-video>iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: -1;
}

header {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 2px solid #00bcd4;
    line-height: 2;
    min-height: 69vh;
}

header h1 {
    font-size: 3rem;
    margin: 0;
    text-transform: uppercase;
    color: #00e5ff;
}

header .language-switcher {
    display: flex;
}

header p {
    font-size: 1.2rem;
    margin: 0.5rem 0 1.5rem;
    color: #cfd8dc;
}

header .cta {
    display: block;
    padding: 0.8rem 1.5rem;
    font-size: 2em;
    font-weight: bold;
    border-radius: 8px;
}

header .cta:hover {
    background: #a1f872;
}

.main-cta h3 {
    line-height: 2;
}

.callout {
    color: rgba(63, 157, 13);
}

.language-switcher {
    line-height: 1;
    margin-top: 1rem;
}

.language-switcher a {
    padding: .3rem;
    font-size: 2.7rem;
}

header .contact-info a {
    padding: 0;
    margin-top: 0;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 100;
    color: #cfd8dc;
    line-height: 1.5;
    margin-bottom: 2em;
}

.hero {
    background: linear-gradient(to bottom, rgba(31, 64, 104, 1), rgba(31, 64, 104, 0));
}

section h2 {
    margin-bottom: 1em;
}

.follow {
    background: linear-gradient(to top, rgb(31, 104, 72), rgba(31, 104, 63, 0));
}

.connect {
    background: linear-gradient(to bottom, rgb(31, 104, 72), rgba(31, 104, 63, 0));
}

.projects {
    background: linear-gradient(to bottom, rgba(15, 32, 39, 0.9), rgba(32, 58, 67, 0.1));
    padding: 4rem;
}

.projects .service small {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #00bcd4;
    opacity: 0.8;
}

section {
    padding: 4rem;
    text-align: center;
}

section.bg-video {
    padding: 10rem 4rem;
}

h2 {
    font-size: 2rem;
    color: #fff;
    font-weight: 100;
    text-shadow: #000 1px 0 .8rem;
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 3rem;
}

.service {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #00bcd4;
    border-radius: 12px;
    padding: 2rem;
    width: 350px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.service h3 {
    font-size: 1.5rem;
    color: #00e5ff;
    margin: 0;
}

.cta-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
}

.cta-links a {
    display: block;
    padding: 1rem 1.5rem;
    border: 1px solid #00e5ff;
    background: rgba(0, 229, 255, .5);
    color: #fff;
    text-shadow: #000 1px 0 .5rem;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s;
}

.cta-links a:hover {
    background: #00bcd4;
}

footer {
    background: rgba(0, 0, 0, .8);
    text-align: center;
    padding: 1.5rem;
    border-top: 2px solid #00bcd4;
}

a {
    color: #00e5ff;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.contact-info a,
.social-links a {
    display: flex;
    flex: 1 1 0%;
    align-items: center;
    justify-content: center;
    padding: .8rem 1.5rem;
    margin: .5rem;
    border: 1px solid #00e5ff;
    background: rgba(0, 229, 255, .5);
    text-shadow: #000 1px 0 .5rem;
    color: #fff;
    text-decoration: none;
    border-radius: .8rem;
    transition: background 0.3s;
}

.contact-info a:hover,
.social-links a:hover {
    background: #00bcd4;
}

.social-links svg {
    width: 2rem;
    height: 2rem;
    color: #fff;
    margin-right: .5em;
}

a.book {
    background: rgba(89, 255, 0, .2);
    border: 1px solid #59ff00;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s;
    text-transform: uppercase;
}

a.book:hover {
    background: rgba(63, 157, 13, 0.2);
    border: 1px solid #000;
    color: #fff;
}

a.book:active {
    color: #000;
}