* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "europa", sans-serif
}

/* Navigation */


/* Hero Section */
.hero {
    background-position: center;
    background-size: cover;
    height: 55vh;
    position: relative;
    overflow: hidden;
}

.hero:after {
    content: '';
    background: rgba(62, 92, 135, 0.5);
    position: absolute;
    top: 0;
    bottom: 0;
    left: -2000%;
    right: -2000%;
    z-index: 1;
}

.hero-container {
    padding: 20px;
    position: relative;
    z-index: 2;
    transition: all 1.2s cubic-bezier(0.7, 0, 0.3, 1);
}

.hero-container p {
    color: #fff;
    
    font-size: 2.5vw;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-title {
    color: #fff;
    font-family: "europa", sans-serif;
    font-size: 10vw;
    line-height: 1.1;
    margin: 5px 0;
    text-align: left;
}
/* Main Content */
.main-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
    background-color: white;
}

.content-left {
    width: 100%;
    margin-bottom: 20px;
    color: black;
}

.content-left p {
    color: #25373D;
    font-family: "europa", sans-serif;
    font-size: 1.2rem;
    line-height: 1.5;
}

.content-right {
    display: none;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-around;
    width: 100%;
}
.blog-text{
    margin: 2.2rem 0;
    padding-top: 3rem;
}
.blog-text span{
    font-weight: 300;
    display: block;
    padding-bottom: 0.5rem;
}
.image-box {
    width: 48%;
    height: auto;
    overflow: hidden;
    border-radius: 8px;
}

.image-box img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* Share Button */
.share-container {
    position: relative;
    display: block;
    margin-top: 20px;
}

.button {
    --primary: #303841;
    --primary-dark: #72787E;
    --primary-darkest: #fff;
    --text: #FFFFFF;
    --text-opacity: 1;
    --success: #2B3044;
    --success-scale: .2;
    --success-opacity: 0;
    --border-radius: 7px;
    --overflow: hidden;
    --rotate: 0;
    --plane-x: 0;
    --plane-y: 0;
    --plane-opacity: 1;
    --left-wing-background: var(--primary);
    --left-wing-first-x: 0;
    --left-wing-first-y: 0;
    --left-wing-second-x: 50;
    --left-wing-second-y: 0;
    --left-wing-third-x: 0;
    --left-wing-third-y: 100;
    --left-body-background: var(--primary);
    --left-body-first-x: 50;
    --left-body-first-y: 0;
    --left-body-second-x: 50;
    --left-body-second-y: 100;
    --left-body-third-x: 0;
    --left-body-third-y: 100;
    --right-wing-background: var(--primary);
    --right-wing-first-x: 50;
    --right-wing-first-y: 0;
    --right-wing-second-x: 100;
    --right-wing-second-y: 0;
    --right-wing-third-x: 100;
    --right-wing-third-y: 100;
    --right-body-background: var(--primary);
    --right-body-first-x: 50;
    --right-body-first-y: 0;
    --right-body-second-x: 50;
    --right-body-second-y: 100;
    --right-body-third-x: 100;
    --right-body-third-y: 100;
    display: block;
    cursor: pointer;
    position: relative;
    border: 0;
    padding: 8px 0;
    min-width: 100px;
    text-align: center;
    margin: 0;
    line-height: 24px;
    font-family: "europa", sans-serif;
    font-weight: 500;
    font-size: 14px;
    background: none;
    outline: none;
    color: var(--text);
    transform: rotate(calc(var(--rotate) * 1deg)) translateZ(0);
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
}

.button .left,
.button .right {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: var(--plane-opacity);
    transform: translate(calc(var(--plane-x) * 1px), calc(var(--plane-y) * 1px)) translateZ(0);
}

.button .left:before,
.button .right:before,
.button .left:after,
.button .right:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border-radius: calc(var(--border-radius) * 1px);
    transform: translate(var(--x, 0.4%), var(--y, 0)) translateZ(0);
    z-index: var(--z-index, 2);
    background: var(--background, var(--left-wing-background));
    clip-path: polygon(calc(var(--first-x, var(--left-wing-first-x)) * 1%) calc(var(--first-y, var(--left-wing-first-y)) * 1%), calc(var(--second-x, var(--left-wing-second-x)) * 1%) calc(var(--second-y, var(--left-wing-second-y)) * 1%), calc(var(--third-x, var(--left-wing-third-x)) * 1%) calc(var(--third-y, var(--left-wing-third-y)) * 1%));
}

.button .left:after {
    --x: 0;
    --z-index: 1;
    --background: var(--left-body-background);
    --first-x: var(--left-body-first-x);
    --first-y: var(--left-body-first-y);
    --second-x: var(--left-body-second-x);
    --second-y: var(--left-body-second-y);
    --third-x: var(--left-body-third-x);
    --third-y: var(--left-body-third-y);
}

.button .right:before {
    --x: -0.4%;
    --z-index: 2;
    --background: var(--right-wing-background);
    --first-x: var(--right-wing-first-x);
    --first-y: var(--right-wing-first-y);
    --second-x: var(--right-wing-second-x);
    --second-y: var(--right-wing-second-y);
    --third-x: var(--right-wing-third-x);
    --third-y: var(--right-wing-third-y);
}

.button .right:after {
    --x: 0;
    --z-index: 1;
    --background: var(--right-body-background);
    --first-x: var(--right-body-first-x);
    --first-y: var(--right-body-first-y);
    --second-x: var(--right-body-second-x);
    --second-y: var(--right-body-second-y);
    --third-x: var(--right-body-third-x);
    --third-y: var(--right-body-third-y);
}

.button span {
    display: block;
    position: relative;
    z-index: 4;
    opacity: var(--text-opacity);
}

.button span.success {
    z-index: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 8px;
    transform: rotate(calc(var(--rotate) * -1deg)) scale(var(--success-scale)) translateZ(0);
    opacity: var(--success-opacity);
    color: var(--success);
}


.share-menu {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    padding: 10px;
    z-index: 1;
    top: 40px;
}
  .share-options a {
    display: block;
    margin: 10px 0;
    text-decoration: none;
    color: #3A424A;
  }
  .share-options a:hover {
    color: #636A73;
  }
.share-menu button, .share-menu a {
    padding: 8px;
    color: black;
    text-decoration: none;
    background: none;
    border: none;
    text-align: left;
}

.share-menu button:hover, .share-menu a:hover {
    background-color: #ddd;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-12px, 0, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInLeft {
    animation-name: fadeInLeft;
    animation-duration: 0.75s;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.2, 0.3, 0.25, 0.9);
}

/* Media Queries */

/* Large Devices (Desktops) */
@media (min-width: 1200px) {
    .main-content {
        padding: 75px 50px;
    }

    .content-left {
        width: 60%;
        margin: auto;
    }

    .content-right {
        width: 35%;
    }

    .hero-container p {
        font-size: 2vw;
    }

    .hero-title {
        font-size: 7vw;
        margin: 50px 0;
    }
}

/* Medium Devices (Tablets) */
@media (min-width: 768px) and (max-width: 1199px) {
    .main-content {
        padding: 20px 30px;
    }

    .content-left {
        width: 60%;
    }

    .content-right {
        width: 35%;
    }

    .image-box {
        width: 48%;
    }

    .hero-container p {
        font-size: 4vw;
    }

    .hero-title {
        font-size: 8vw;
        margin: 50px 0;

    }
}

/* Small Devices (Mobile) */
@media (max-width: 767px) {
    nav {
        padding: 10px 20px;
    }

    .hero-container p {
        font-size: 4vw;
    }

    .hero-title {
        font-size: 12vw;
        text-align: center;
        margin: 50px 0;
    }

    .main-content {
        flex-direction: column;
        padding: 15px;
    }

    .content-left, .content-right {
        width: 100%;
    }

    .image-box {
        width: 100%;

    }
}
