:root {
    --bg-color: #aa78dd;
    --border: #5F476B;
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-image: url("./bg.svg"), linear-gradient(55deg, #200838 0%, #151226 60%, #2D1C5B 100%);
}

a {
    text-decoration: none;
}

.image-container {
    position: relative;
    display: inline-block;
    border-radius: 50%;
    /* optional, for round effect */
    overflow: visible;
    /* allow pseudo shadow to show */
}

.image-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(96, 33, 126, 0.479), transparent 80%);
    animation: rotateShadowOnly 3s linear infinite;
    z-index: 0;
    pointer-events: none;
    filter: blur(10px);
}

@keyframes rotateShadowOnly {
    0% {
        transform: rotate(0deg);
        filter: drop-shadow(5px 10px 15px rgba(138, 43, 226, 0.6));
    }

    100% {
        transform: rotate(360deg);
        filter: drop-shadow(5px 10px 15px rgba(138, 43, 226, 0.6));
    }
}

.card-img-top {
    display: block;
    position: relative;
    z-index: 1;
    border-radius: 50%;
    max-width: min-content;
    /* or your shape */
}

.wrapper {

    width: 40rem;
}

.wrapper p {
    color: rgba(255, 255, 255, 0.478);
    font-family: 'Open Sans', sans-serif;
}

.btn {
    border: 1px solid var(--border);
    width: fit-content !important;
    /* padding: 6px 30px; */
    padding-inline: 50px;
    font-weight: 500;
    background-color: transparent;
    color: whitesmoke;
    cursor: pointer;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease;
}

.btn:hover {
    transform: scale(1.07);
    background-color: rgba(0, 0, 0, 0.07);
    border-color: var(--bg-color) !important;
    box-shadow: 0 0px 20px -5px #875ff3de;
}


.bi {
    color: var(--border) !important;
}

.fa {
    color: var(--border) !important;
    font-size: x-large;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
}

.fa:hover {
    transform: scale(1.5);
    transition: transform 0.2s ease-in-out, text-shadow 0.2s ease-in-out;
    color: #7a3394 !important;
    background: transparent;

    text-shadow: 0px 0px 50px rgba(222, 127, 241, 0.8);
}


.h1 {
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.175rem;
    width: 100%;
    /* font-size: 3em; */
    line-height: 1.125;
    font-weight: 500;
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.412) 0%, #FFFFFF 67%);
    --webkit-background-clip: text;
    --webkit-text-fill-color: transparent;
}

/* Glowing card on hover only */
.glow-card {
    /* border-radius: 35px; */
    /* margin: 10px; */
    border: solid 1px var(--bg-color);
    padding: 4px;
    transition: all 0.3s ease-in-out;
}

.glow-card:hover {
    /* background: linear-gradient(45deg, #ff0057, #00c3ff, #fffd44, #ff0057); */
    background-size: 300% 300%;
    animation: borderColorChange 1s alternate-reverse infinite ease-in-out;
}

/* Card content inside */
.glow-card-inner {
    background: #ffffff34;
    border-radius: 30px;
    height: 100%;
}

/* Gradient animation */
@keyframes borderColorChange {
    0% {
        border-color: #511268;
    }

    25% {
        border-color: #521269;
    }

    50% {
        border-color: #7a3394;
    }

    75% {
        border-color: #9f79a7;
    }

    100% {
        border-color: #CCB3D1;
    }
}

/* Optional: maintain image proportions */
.object-fit-cover {
    object-fit: cover;
    height: 100%;
}

.custom-card {
    max-width: 700px;
    border-radius: 20px;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.custom-card .object-fit-cover {
    object-fit: cover;
    height: 100%;
}


section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    margin-top: 6rem;
}

h1 {
    /* color: #f3f3f3a1; */
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.175rem;
    width: 100%;
    font-size: 2.5em;
    line-height: 1.125;
    font-weight: 500;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.412) 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.active {
    background-color: #00000009 !important;
    border-color: #d4d3d6 !important;
}

.ai {
    color: #d4d3d6 !important;
}

p {
    max-width: 60vw;
    color: rgba(255, 255, 255, 0.478);
    font-family: 'Open Sans', sans-serif;
}

/* === Hero Section === */
.hero {
    position: relative;
    height: 100vh;
    padding: 25vw - 10px;
    background: url('PLACEHOLDER_HERO_BG.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #FFFFFF;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.103);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hero p.lead {
    color: #ffffff8f;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero .btn-primary {
    background-color: #ff5722;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1.2rem;
    transition: background 0.3s;
}

.hero .btn-primary:hover {
    background-color: #e64a19;
}

/* === Logo Strip === */
.logo-strip {
    background-color: #11111123;
}

.logo-strip img {
    opacity: 0.75;
    transition: opacity 0.3s;
}

.logo-strip img:hover {
    opacity: 1;
}

/* === Features Section === */
.feature-icon {
    height: 80px;
    margin-bottom: 1rem;
}

/* === Testimonial Section === */
.testimonial {
    font-style: italic;
    position: relative;
    padding: 2rem;
    border-radius: 8px;
    background: rgba(245, 245, 245, 0.5);
}

.testimonial::before {
    content: '“';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 4rem;
    color: rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-size: 1.125rem;
}

/* === CTA Section === */
.cta {
    background-color: #f8f9fa;
}

.cta .btn-primary {
    background-color: #ff5722;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1.2rem;
    transition: background 0.3s;
}

/* === Footer === */
footer {
    background-color: #00000011;
    color: #ccc;
    padding: 3rem 0;
}

footer a {
    color: #ff5722;
    transition: color 0.3s;
}

footer a:hover {
    color: #fff;
}

/* === Responsive Adjustments === */
@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .logo-strip img {
        height: 40px;
    }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw - 10px;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.hidden {
    display: none;
}

.calendarBox {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.card-3d {
    perspective: 1000px;
}

.card-inner {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
}

.card-3d:hover .card-inner {
    transform: rotateY(5deg) rotateX(5deg) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card-3d img {
    transition: transform 0.3s ease;
}

.card-3d:hover img {
    transform: scale(1.1);
}

@media (max-width: 767.98px) {
    .responsive-img {
        max-height: 250px;
    }
}

@media (min-width: 768px) {
    .responsive-img {
        max-height: 100%;
        height: 100%;
    }
}

.seperator {
    border-color: var(--border) !important;
    border-radius: 0%;
}

/* On small screens, move border to top instead of left */
@media (max-width: 767px) {
    .seperator {
        border-left: none !important;
        border-bottom: 1px solid var(--border) !important;
        padding-left: 0 !important;
        padding-top: 1.5rem !important;
        /* Adds gap above */
    }
}

@media (max-width: 767px) {
    .last {
        border-left: none !important;
        border-bottom: 0px solid var(--border) !important;
        padding-left: 0 !important;
        padding-top: 1.5rem !important;
        /* Adds gap above */
    }
}

/* Optional: Increase vertical gap between cards */
.card-body {
    padding-bottom: 2rem;
}

.seperator {
    margin-bottom: 2rem;
}

#pickleball,
#pickleball-shadow {
  position: fixed;
  top: 0;
  left: 0;
  width: 25px;
  pointer-events: none;
  z-index: -1;
  opacity: 0.5;
  filter: blur(4px) brightness(1);
}

#pickleball-shadow {
  filter: blur(15px) brightness(0.5); /* dark blurry shadow */
  /* transform: scale(1.1); */
  z-index: -2; /* behind the ball */
  left: 50%; /* Center horizontally */
  transform: translateX(-50%) scale(1.1); /* Adjust position */

}

section{
    max-width: 100%;
}
