/* prestyles */

:root {
    --primary-color: rgba(6,181,195,1);
    --secondary-color: rgba(252,97,0,1);
    --text-color: rgba(56,56,56,1);
    --accent-color: rgba(255,147,0,1);
    --light-gray: rgba(112,112,112,1);
    --white: rgba(255,255,255,1);
}

body {
    font-family: 'Catamaran', sans-serif;
}

.navbar {
    padding: 1rem 2rem;
}

.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 1rem;
}

.hero-section {
    position: relative;
    height: 739px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 1;
}

.hero-title {
    font-size: 5rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-date {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.hero-location {
    font-size: 2rem;
}

.section-title {
    
    font-size: 3.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 2rem;
}
.section-title span {
    color: var(--accent-color);
    font-weight: 800;
}
.svp-num-sec {
  margin-top: 180px;
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.section-heading {
    color: var(--text-color);
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.stats-section {
    background-color: var(--white);
}

.stat-item {
    text-align: center;
    padding: 2rem;
    border-right: 1px solid rgba(217,217,217,1);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--light-gray);
}

.highlight-stat {
    color: var(--primary-color);
}

.why-image-container {
    padding: 1rem;
    position: relative;
}

.why-image-container img {
    width: 100%;
    height: auto;
    max-height: 469px;
    max-width: 469px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.why-image-container:hover img {
    transform: scale(1.02);
}

.btn-primary-custom {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 60px;
    text-transform: uppercase;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-secondary-custom {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 1rem 2rem;
    border-radius: 60px;
    text-transform: uppercase;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover,
.btn-secondary-custom:hover {
    transform: translateY(-2px);
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-date {
        font-size: 2rem;
    }
    
    .hero-location {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        margin: 0.5rem 0;
    }
    
    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(217,217,217,1);
        padding: 1rem;
    }
    
    .stat-item:last-child {
        border-bottom: none;
    }
}

.competitions-section {
    background-color: #F3FCFC;
    padding-top: 110px !important;
}

.competition-card {
    /* background-color: var(--white); */
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0 4px 12px rgba(0,0,0,0.05); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
flex-direction: column;
align-items: center;
}

.competition-card:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 8px 24px rgba(0,0,0,0.1); */
}

.competition-image {
    overflow: hidden;
    height: auto;
}

.competition-image img {
    width: 322px;
    height: 322px;
    object-fit: cover;
    transition: transform 0.5s ease;
}



.competition-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-color);
    margin: 1.5rem 1rem 1rem;
}

.competition-perex {
    color: var(--light-gray);
    padding: 0 1rem 1.5rem;
    line-height: 1.6;
}

.entertainment-section{
    display: none !important;
}
/* .entertainment-section {
    background-color: #FFFBFA;
    padding: 100px 0px !important;
} */

.entertainment-subtitle {
    color: #FC6000;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.entertainment-image {
    padding: 1rem;
    position: relative;
    height: 340px;
width: 340px;
}

.entertainment-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.entertainment-image:hover img {
    transform: scale(1.02);
}

.entertainment-content {
    padding: 2rem;
}

.entertainment-pre-title {
    color: #06B5C3;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.entertainment-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.entertainment-perex {
    color: var(--light-gray);
    line-height: 1.6;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.carousel-control-prev {
    left: -50px;
}

.carousel-control-next {
    right: -50px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .entertainment-content {
        padding: 1rem;
    }
    
    .entertainment-title {
        font-size: 1.5rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

/* FAQ Section Styles */
.faq-section {
    background-color: var(--white);
    padding-top: 100px !important;
    padding-bottom: 120px !important;
}

.faq-section .container {
    max-width: 800px;
}

.faq-pre-title {
    color: #FC6000;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.accordion-button {
    color: #06B5C3;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 1.5rem;
    background-color: var(--white);
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.accordion-button:not(.collapsed) {
    color: #06B5C3;
    background-color: rgba(6,181,195,0.1);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(6,181,195,0.5);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2306B5C3'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    color: #707070;
    padding: 1.5rem;
    line-height: 1.6;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.partners-section{
    display: none !important;
}

/* .partners-section {
    background-color: var(--white);
} */

.partners-pre-title {
    color: #FC6000;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.partner-category {
    margin-bottom: 2rem;
}

.partner-category-title {
    color: #FC6000;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
}

.partner-logo-container {
    text-align: center;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.partner-logo-container:hover {
    transform: scale(1.05);
}

.partner-logo {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-logo-container:hover .partner-logo {
    filter: grayscale(0%);
}

/* History Section Styles */
.history-section{
    display: none !important;
}

/* .history-section {
    background-color: var(--white);
} */

.history-pre-title {
    color: #FC6000;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.history-slider-container {
    width: 100%;
    overflow: hidden;
    margin-bottom: 2rem;
}

.history-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.history-image-container img {
    width: 620px;
    height: 360px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-gallery {
    background-color: #06B5C3;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid #06B5C3;
}

.btn-gallery:hover {
    background-color: transparent;
    color: #06B5C3;
    border: 2px solid #06B5C3;
}

@media (max-width: 768px) {
    .history-image-container img {
        width: 100%;
        height: auto;
        max-height: 360px;
    }
}

/* New Section Styles */
.new-section {
    background-color: #FAFAFA;
}

.new-image-container {
    padding: 1rem;
    position: relative;
}

.new-image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.new-image-container:hover img {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .new-section .row {
        flex-direction: column-reverse;
    }
    
    .new-section .order-lg-1,
    .new-section .order-lg-2 {
        order: 0 !important;
    }
}

/* CTA Section Styles */
.cta-section {
    background: linear-gradient(270deg, #FF9300 0%, #FC5E00 100%) 0% 0%;
    color: white;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-heading {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.cta-perex {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    max-width: 460px;
}

.fw-medium {
    font-weight: 500;
}

.fw-extrabold {
    font-weight: 800;
}

.btn-white-custom {
    background-color: white;
    color: #FC5E00;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.btn-white-custom:hover {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

@media (max-width: 768px) {
    .cta-heading {
        font-size: 2rem;
        text-align: center;
    }
    
    .cta-section .text-lg-end {
        text-align: center !important;
    }
}

/* Footer Styles */
.footer-section {
    background-color: #fff;
    color: #333;
    padding-top: 120px !important;
    padding-bottom: 80px !important;
}

.footer-logo img {
    max-height: 60px;
}

.footer-description {
    color: #707070;
    line-height: 1.6;
}

.footer-heading {
    color: #333;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #FC6000;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #707070;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FC6000;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 0.8rem;
    color: #707070;
    display: flex;
    align-items: center;
}

.footer-contact li i {
    margin-right: 0.5rem;
    color: #FC6000;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    border-radius: 50%;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #FC6000;
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    color: #707070;
}

.footer-link {
    color: #707070;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FC6000;
}

@media (max-width: 768px) {
    .footer-heading:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-heading {
        text-align: center;
    }
    
    .footer-links, .footer-contact {
        text-align: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}
.countdown-section {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin-top: -90px;
margin-bottom: 10px;
}
.countdown-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
background-color: white;
max-width: 800px;
width: 100%;
z-index: 1;
border-radius: 400px;
box-shadow: 0px 3px 16px #00000010;
padding: 30px 0px;
flex-direction: column;
align-items: center;
}
.countdown-items {
display: flex;
justify-content: center;
gap: 60px;
flex-wrap: wrap;
}
.countdown-title-text {
font-size: 18px;
font-weight: 600;
color: #FC6000;
}
.countdown-title-text {
margin-bottom: -10px !important;
}
.countdown-label{
font-size: 14px;
font-weight: 600;
color: var(--primary-color);
}
.countdown-number {
font-size: 68px;
font-weight: 900;
}
.countdown-item {
display: flex;
flex-direction: column;
flex-wrap: wrap;
align-items: center;
}

.compet-body {
display: flex;
flex-direction: column;
max-width: 300px;
text-align: center;
margin-top: 40px;
flex-wrap: wrap;
}
.compet-label-name {
position: relative;
margin-top: -120px;
margin-bottom: -40px;
margin-left: 140px;
transition: all 0.3s ease;
}

.svp-sep-ef-ct {
position: absolute;
left: 73%;
transform: translate(-50%, -50%);
top: 84%;
}

.sect-sep-svp {
position: absolute;
margin-top: -130px;
}

.sect-pomoc {
padding: 180px 0px !important;
}

.new-image-container.svp-pomoc-img {
height: 460px;
width: 460px;
margin: 0 auto;
}
.partners-section {
padding-bottom: 120px !important;
}

.entertainment-image {
margin: 0 auto;
}

.bg-img-sep-svp {
position: absolute;
margin-top: -230px;
z-index: -1;
margin-left: 240px;
}

.bg-img-sep-svp-nd {
position: absolute;
margin-top: -200px;
margin-left: 250px;
z-index: 1;
}

.zindex-ten {
z-index: 10;
}

/* Add or update these styles in your existing CSS */
.social-share {
display: flex;
flex-direction: column;
align-items: flex-start;
}

.social-share-text {
color: var(--text-color);
font-size: 1rem;
font-weight: 600;
margin-bottom: 0.5rem;
}

.social-share-buttons {
display: flex;
gap: 1.5rem; /* Increased gap between buttons */
}

.social-share-btn {
display: flex;
align-items: center;
justify-content: center;
width: 50px; /* Increased from 40px */
height: 50px; /* Increased from 40px */
border-radius: 50%;
background-color: #f5f5f5;
color: var(--text-color);
text-decoration: none;
transition: all 0.3s ease;
border: 2px solid transparent; /* Added border */
}

.social-share-btn i {
font-size: 1.5rem; /* Increased from 1.2rem */
margin-top: 5px;
}

/* Specific hover styles for each social network */
.social-share-btn:hover {
transform: translateY(-3px);
color: white;
box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* Added shadow on hover */
}

/* Facebook */
.social-share-btn:nth-child(1) {
color: #1877f2;
border-color: #1877f2;
}

.social-share-btn:nth-child(1):hover {
background-color: #1877f2;
color: white;
}



.social-share-btn:nth-child(2):hover {
background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
color: white;
}

/* LinkedIn */
.social-share-btn:nth-child(2) {
color: #0077b5;
border-color: #0077b5;
}

.social-share-btn:nth-child(2):hover {
background-color: #0077b5;
color: white;
}

@media (max-width: 768px) {
.social-share {
align-items: center;
}

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

@media (max-width: 1330px){
    .sect-sep-svp{
        transform: scale(0.5);
    }
}

@media (max-width: 1280px){
.bg-img-sep-svp-nd{
margin-left: 80px !important;
}
}

@media (max-width: 1130px){
.stat-number{
font-size: min(max(36px, 4vw), 48px);
}
}

@media (max-width: 880px){
.countdown-number{
font-size: 42px;
}
}

@media (max-width: 768px){
    .mob-spac-svg-col{
        margin-top: 100px !important;
    }
}

@media (max-width: 700px){
.svp-sep-ef-ct{
left: 53%;
top: 74%;
}
}

@media (max-width: 540px){
.countdown-number{
font: 32px;
}
.countdown-items{
gap: 30px;
}
.logo-bg-navbar {
    transform: scale(0.8);
    margin-top: -270px !important;
}
}

@media (max-width: 500px){
    .bg-img-sep-svp-nd{
        margin-left: 0px !important;
    }
    .new-image-container.svp-pomoc-img{
        max-width: 300px;
        max-height: 300px;
    }
    .mob-spac-svg-col {
        margin-top: 100px;
    }
}

@media (max-width: 380px){
    .bg-img-sep-svp-nd{
        display: none !important;
    }
}

.competition-card:hover .compet-label-name {
transform: rotate(27deg);
margin-left: -40px;
}

main.container.py-5 {
margin-bottom: 80px;
}

.logo-bg-navbar {
position: absolute;
margin-top: -260px;
margin-bottom: -200px;
margin-left: -100px;
}

ul.navbar-nav.ms-auto a {
color: white !important;
font-weight: 200;
}

section.hero-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #fd6a00;
    mix-blend-mode: multiply;
}

.hero-date span {
    color: var(--accent-color);
    font-weight: 100;
}

.hero-embl {
    position: absolute;
    margin-left: -200px;
    margin-top: -200px;
}










/* Hamburger Menu Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1000;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff;
    margin: 6px 0;
    transition: all 0.3s ease;
}

/* Curtain Menu */
.curtain-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(6, 181, 195, 0.98); /* Your brand color */
    transition: right 0.3s ease;
    z-index: 999;
    display: none;
}

.curtain-menu-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.curtain-menu .navbar-nav {
    padding: 0;
}

.curtain-menu .nav-item {
    margin: 20px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.curtain-menu .nav-link {
    color: #fff;
    font-size: 24px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.curtain-menu .nav-link:hover {
    color: #ff9300; /* Your accent color */
}

/* Active States */
.menu-open .curtain-menu {
    right: 0;
}

.menu-open .menu-toggle span:first-child {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.menu-open .menu-toggle span:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
}

.menu-open .curtain-menu .nav-item {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries */
@media (max-width: 991px) {
    .menu-toggle {
        display: block;
    }
    
    .curtain-menu {
        display: block;
    }
    
    .navbar-collapse {
        display: none !important;
    }
}

/* Animation Delays for Menu Items */
.curtain-menu .nav-item:nth-child(1) { transition-delay: 0.1s; }
.curtain-menu .nav-item:nth-child(2) { transition-delay: 0.2s; }
.curtain-menu .nav-item:nth-child(3) { transition-delay: 0.3s; }
.curtain-menu .nav-item:nth-child(4) { transition-delay: 0.4s; }

@media (max-width: 1118px){
    .hero-embl{
        display: none !important;
    }
}

.footer-logo.mb-3 svg {
    max-width: 200px;
}

p.text-muted.mb-4 {
    max-width: 530px;
}

/* Updated Social Share Buttons Styling */
.social-share-buttons {
    display: flex;
    gap: 1.5rem;
}

.social-share-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    color: #666;
    text-decoration: none;
}

/* Facebook specific */
.social-share-btn .bi-facebook {
    color: #1877f2;
}

.social-share-btn:hover .bi-facebook {
    color: #fff;
}

.social-share-btn:hover:has(.bi-facebook) {
    background: #1877f2;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
}

/* Instagram specific */
.social-share-btn .bi-instagram {
    color: #e4405f;
}

.social-share-btn:hover .bi-instagram {
    color: #fff;
}

.social-share-btn:hover:has(.bi-instagram) {
    background: #e4405f;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(228, 64, 95, 0.3);
}

/* LinkedIn specific */
.social-share-btn .bi-linkedin {
    color: #0077b5;
}

.social-share-btn:hover .bi-linkedin {
    color: #fff;
}

.social-share-btn:hover:has(.bi-linkedin) {
    background: #0077b5;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.3);
}

/* Email specific - using your brand color */
.social-share-btn .bi-envelope {
    color: #06b5c3;
}

.social-share-btn:hover .bi-envelope {
    color: #fff;
}

.social-share-btn:hover:has(.bi-envelope) {
    background: #06b5c3;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(6, 181, 195, 0.3);
}

/* Copy link specific - using your accent color */
.social-share-btn .bi-link-45deg,
.social-share-btn .bi-check2 {
    color: #ff9300;
}

.social-share-btn:hover .bi-link-45deg,
.social-share-btn:hover .bi-check2 {
    color: #fff;
}

.social-share-btn:hover:has(.bi-link-45deg),
.social-share-btn:hover:has(.bi-check2) {
    background: #ff9300;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 147, 0, 0.3);
}

/* Remove button styling for copy link button */
.copy-link-btn {
    cursor: pointer;
    border: none;
    padding: 0;
}

a.social-share-btn.email-share-btn{
    border: 2px solid var(--primary-color);
}

button.social-share-btn.copy-link-btn{
    border: 2px solid var(--accent-color);
}