@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&display=swap');


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

body{
    overflow-x: hidden;
    background-color: white!important;
    font-family: 'Cabin', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.cup-profile-banner-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
}

.cup-profile-banner-blue {
    background: #0777bb;
    padding: 1% 1%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    height: 15vw;
    max-height: 200px;
    position: relative;
}

.cup-profile-banner-white {
    background: white;
    height: 15vw;
    max-height: 200px;
    display: flex;
    align-items: flex-start;
    padding-left: 35vw;
    padding-top: 2vw;
    position: relative;
}

.cup-profile-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cup-profile-name {
    margin: 0;
    font-size: clamp(1.5em, 5vw, 3em);
    font-weight: 700;
    line-height: 1;
    font-family: 'Cabin', sans-serif;
}

.cup-appointment-btn {
    display: inline-block;
    color: #0777bb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    background: none;
    padding: 0;
    border: none;
    font-size: clamp(0.9em, 2vw, 1.1em);
    margin-left: 1em;
    font-family: 'Cabin', sans-serif;
}

.cup-appointment-btn:hover {
    color: #0777bb;
    text-decoration: underline;
}

.cup-profile-logo {
    height: 100%;
    display: flex;
    align-items: center;
    padding-right: 5%;
}

.cup-profile-logo .site-logo {
    max-height: 10vw;
}

.cup-profile-pic-container {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.cup-profile-pic {
    width: 25vw;
    height: 25vw;
    max-width: 250px;
    max-height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    background: white;
}
.cup-public-profile {
    background-color: white;
    position: relative;
    top: -3rem;
    max-width: 800px;
    margin: 1.5rem auto;
    padding: 0 30px;
    border: none;
    border-radius: 8px;
    font-family: 'Cabin', sans-serif;
}

.cup-public-profile.cup-profile-default h2 {
    margin: 0;
}

.cup-public-profile.cup-profile-default .bio {
    white-space: pre-line;
    font-size: clamp(1.25em, 1.5vw, 1.5em);
    font-weight: 400;
    line-height: 1.6;
    color: #444;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .cup-profile-banner-blue {
        min-height: 25vw;
    }
    
    .cup-profile-banner-white {
        min-height: 25vw;
        padding-right: 5vw;
        justify-content: flex-end;
    }
    
    .cup-profile-logo .site-logo {
        max-height: 12vw;
    }
    
    .cup-profile-pic {
        width: 35vw;
        height: 35vw;
    }
}

@media (max-width: 480px) {
    .cup-profile-banner-blue {
        min-height: 20vw;
        padding: 3% 3%;
    }
    
    .cup-profile-banner-white {
        min-height: 20vw;
        padding-right: 2vw;
        justify-content: flex-end;
    }
    
    .cup-profile-logo {
        padding-right: 3%;
    }
    
    .cup-profile-logo .site-logo {
        max-height: 15vw;
    }
    
    .cup-profile-pic-container {
        left: 3%;
    }
    
    .cup-profile-pic {
        width: 40vw;
        height: 40vw;
    }
    
    .cup-public-profile {
        margin: 20px 15px;
        top: 0;
        padding: 20px;
    }
}

.cup-content-wrapper {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: white;
    margin-top: auto;
}

.cup-content-columns {
    display: grid;
    background-color: white;
    grid-template-columns: 1fr 0.6fr;
    gap: 40px;
    padding: 0;
    margin: 0;
    width: 100%;
}

.cup-video-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 40px;
    background: white;
    font-family: 'Cabin', sans-serif;
}

.cup-section-title {
    margin: 0 0 1.5rem 0;
    font-size: clamp(1.5em, 2.5vw, 1.8em);
    font-weight: 700;
    color: #333;
    text-align: center;
    font-family: 'Cabin', sans-serif;
}

.cup-video-thumbnail {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.cup-video-thumbnail:hover {
    transform: scale(1.05);
}

.cup-video-preview {
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    background: #000;
    aspect-ratio: 1 / 1;
    border: 5px solid #0777bb;
    max-width: 250px;
    max-height: 250px;
}

.cup-video-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cup-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3em;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.cup-contact-column {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.cup-contact-box {
    background: #0777bb;
    color: white;
    margin-top: 0;
    padding: 30px 40px;
    border-radius: 12px 0 0 0;
    width: 100%;
    max-width: 500px;
    min-height: auto;
    font-family: 'Cabin', sans-serif;
}

.cup-contact-title {
    margin: 0 0 1.5rem 0;
    font-size: clamp(1.5em, 2.5vw, 1.8em);
    font-weight: 700;
    color: white;
    text-align: center;
    font-family: 'Cabin', sans-serif;
}

.cup-contact-links {
    display: flex;
    gap: 15px;
}

.cup-contact-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.cup-contact-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    justify-content: center;
}



.cup-contact-icon {
    font-size: 1.5em;
    text-align: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.cup-contact-link a span{
    color: white !important;
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(0.85em, 1.3vw, 0.95em);
    transition: opacity 0.3s ease;
    font-family: 'Cabin', sans-serif;
}

.cup-contact-link {
    height: 100%;
    display: flex;
    align-items: center;
    color: white !important;
}

.cup-contact-link:hover {
    opacity: 0.8;
    text-decoration: underline;
    color: white !important;
}

@media (max-width: 768px) {
    .cup-content-columns {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .cup-video-column {
        padding: 20px 30px;
    }
    
    .cup-contact-box {
        padding: 20px 30px;
        border-radius: 0;
    }
}

.cup-video-section {
    margin: 30px 0 20px 0;
    text-align: center;
}

.cup-video-link {
    display: inline-block;
    background: #0777bb;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    font-family: 'Cabin', sans-serif;
}

.cup-video-link:hover {
    background: #0777bb;
    text-decoration: none;
    color: white;
}

.cup-contact-section {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

/* Portfolio Template Styles */
.summitlife-portfolio-content {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Cabin', sans-serif;
}

.portfolio-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    flex: 1;
    width: 100%;
}

.portfolio-left-column {
    background: #0777bb;
    color: white;
    padding: 5vh 5vw;
    display: flex;
    flex-direction: column;
    gap: 30px;
    font-family: 'Cabin', sans-serif;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    max-width: 600px;
}

.portfolio-left-column-content {
    display: flex;
    justify-content: flex-start ;
    flex-direction: column;
    align-items: center;
    margin: 5% 0;
    gap: 50px;
    width: 80%;
}

.portfolio-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.slt-logo {
    width: 100%;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.slt-logo-title {
  text-align: center;
  margin-bottom: 3rem;
}


#mountainContainer {
    width: 100%;
    height: 125px;
    position: relative;
    background: transparent;
    margin: 0;
}

#mountainContainer canvas {
    background: transparent !important;
}

/* SUMMIT LIFE */
.slt-logo-title h1:first-of-type {
  font-family: 'Cinzel', serif;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin: 0;
  color: rgba(0, 0, 0, 0.85);
}

/* TEAM */
.slt-logo-title h1:nth-of-type(2) {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  margin: 6px 0 12px;
  color: rgba(0, 0, 0, 0.85);
}

/* TAGLINE */
.slt-logo-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin: 0;
  color: #0b7bbd; /* logo blue */
}

.portfolio-logo .site-logo {
    max-width: 400px;
    height: auto;
}

.portfolio-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
}

@keyframes shimmer-border {
    0%, 100% {
        border-color: #0777bb;
        box-shadow: 0 0 10px rgba(7, 119, 187, 0.3);
    }
    50% {
        border-color: #0da8ff;
        box-shadow: 0 0 20px rgba(7, 119, 187, 0.6);
    }
}

@keyframes shimmer-border-white {
    0%, 100% {
        border-color: white;
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }
    50% {
        border-color: #e0f2ff;
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    }
}

.portfolio-avatar img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    background: white;
    animation: shimmer-border-white 9s ease-in-out infinite;
}

.portfolio-full-name h2 {
    margin: 0;
    font-size: clamp(1.5em, 3vw, 2em);
    font-weight: 700;
    color: white;
    line-height: 1.2;
    font-family: 'Cabin', sans-serif;
}

.portfolio-contact {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.portfolio-section-title {
    margin: 0;
    font-size: 1.3em;
    font-weight: 700;
    color: white;
    font-family: 'Cabin', sans-serif;
}

.portfolio-section-white-title {
    margin: 0;
    font-size: 1.3em;
    font-weight: 700;
    color: #0777bb;
    font-family: 'Cabin', sans-serif;
}

.portfolio-title {
    margin: 0;
    width: 100%;
    font-size: clamp(1em, 2vw, 1.25em);
    font-weight: 700;
    color: #333;
    font-family: 'Cabin', sans-serif;
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.portfolio-title-wrapper {
    width: 75%;
    max-width: 450px;
    background: #0777bb;
    color: white;
    padding: 12px 20px;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    display: inline-block;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    grid-column: 1;
    grid-row: 1;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    transition: clip-path 0.3s ease;
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.about-section:hover .portfolio-title-wrapper {
    clip-path: polygon(50% 0%, 50% 0%, 50% 100%, 50% 100%);
}

.portfolio-title-wrapper .portfolio-title {
    color: white;
    margin: 0;
    padding: 0;
    font-size: clamp(1em, 2vw, 1.25em);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    transition: clip-path 0.3s ease-in-out;
}

.about-section:hover .portfolio-title-wrapper .portfolio-title {
    clip-path: polygon(50% 0%, 50% 0%, 50% 100%, 50% 100%);
}

.portfolio-section-title-wrapper {
    background: white;
    color: #0777bb;
    width: 100%;
    padding: 12px 20px;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    display: inline-block;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    transition: clip-path 0.3s ease;
    position: relative;
    z-index: 2;
    grid-column: 1;
    grid-row: 1;
    pointer-events: none;
}

.portfolio-contact:hover .portfolio-section-title-wrapper {
    clip-path: polygon(50% 0%, 50% 0%, 50% 100%, 50% 100%);
}

.portfolio-section-title-wrapper .portfolio-section-title {
    color: #0777bb;
    padding: 0;
    border: none;
    margin: 0;
    font-size: clamp(1em, 2.5vw, 1.25em);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    transition: clip-path 0.3s ease;
}

.portfolio-contact:hover .portfolio-section-title-wrapper .portfolio-section-title {
    clip-path: polygon(50% 0%, 50% 0%, 50% 100%, 50% 100%);
}

.portfolio-section-title-alt {
    background: transparent;
    color: #ffffff;
    padding: 12px 20px;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    display: inline-block;
    border: 2px solid #ffffff;
    position: relative;
    z-index: 1;
    grid-column: 1;
    grid-row: 1;
}


.portfolio-section-title-alt .portfolio-section-title {
    color: #ffffff;
    padding: 0;
    border: none;
    margin: 0;
    font-size: clamp(1em, 2.5vw, 1.25em);
}

.portfolio-title-alt {
    width: 75%;
    max-width: 450px;
    background: transparent;
    color: #0777bb;
    padding: 12px 20px;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    border: 2px solid #0777bb;
    position: relative;
    z-index: 1;
    grid-column: 1;
    grid-row: 1;
}

.portfolio-title-alt .portfolio-title {
    color: #0777bb;
    padding: 0;
    border: none;
    margin: 0;
    font-size: clamp(1em, 2vw, 1.25em);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95em;
}

.contact-item i {
    font-size: 1.3em;
    flex-shrink: 0;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-item a:hover {
    opacity: 0.8;
	color: white;
    text-decoration: underline;
}

.portfolio-social {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3em;
    transition: background 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: white;
    color: #0777bb;
}

.portfolio-appointment-booking {
    margin-top: 10px;
}

.btn-appointment {
    display: block;
    background: white;
    color: #0777bb;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: opacity 0.3s ease;
    font-family: 'Cabin', sans-serif;
    font-size: 0.95em;
}

.btn-appointment:hover {
    opacity: 0.9;
    color: #0777bb;
    text-decoration: none;
}

.portfolio-right-column {
    background: white;
    width: 100%;
    padding: 5vh 5vw;
    display: flex;
    flex-direction: column;
    gap: 30px;
    font-family: 'Cabin', sans-serif;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}

.portfolio-right-column-content {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    gap: 50px;
    width: 100%;
    align-items: center;
}

.btn-appointment i {
    flex-direction: column;
    justify-content: flex-start;
    font-family: 'Cabin', sans-serif;
}
.portfolio-about {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 15px;
}

.about-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
} 

.portfolio-subtitle {
    margin: 0;
    font-size: clamp(1.2em, 2vw, 1.5em);
    font-weight: 700;
    color: #333;
    font-family: 'Cabin', sans-serif;
}

.portfolio-subtitle-wrapper {
    width: 75%;
    background: #0777bb;
    color: white;
    padding: 12px 20px;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    display: inline-block;
    margin-bottom: 15px;
}

.portfolio-subtitle-wrapper .portfolio-subtitle {
    color: white;
    margin: 0;
    font-size: 1.3em;
}

.about-bio {
    font-size: clamp(0.95em, 1.3vw, 1.1em);
    line-height: 1.25;
    text-align: left;
    margin-bottom: 1rem;
    color: #555;
    white-space: normal;
    font-family: 'Cabin', sans-serif;
}

.portfolio-video-thumbnail {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.portfolio-video-thumbnail:hover {
    transform: scale(1.02);
}

.portfolio-video-preview {
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    background: #000;
    margin-top: 2rem;
    aspect-ratio: 1 / 1;
    border: 5px solid #0777bb;
    max-width: 275px;
    max-height: 275px;
    animation: shimmer-border 3s ease-in-out infinite;
    cursor: pointer;
}

.portfolio-video-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portfolio-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3em;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* Portfolio Responsive Design */
@media (max-width: 1024px) {
    .portfolio-container {
        grid-template-columns: 1fr 1.2fr;
    }
    
    .portfolio-left-column {
        padding: 30px 25px;
    }
    
    .portfolio-right-column {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .portfolio-container {
        grid-template-columns: 1fr;
    }
    
    .portfolio-left-column {
        max-width: none;
        padding: 30px 20px;
        gap: 25px;
    }
    
    .portfolio-left-column-content{
        margin: 0;
    }
    
    .portfolio-right-column {
        padding: 30px 20px;
    }
    
    .portfolio-full-name h2 {
        font-size: 1.5em;
    }
    
    .social-links {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .portfolio-left-column {
        padding: 20px 15px;
        gap: 20px;
    }
    
    .portfolio-right-column {
        padding: 20px 15px;
    }
    
    .slt-logo .site-logo {
        max-width: 100px;
    }

    .portfolio-full-name h2 {
        font-size: 1.3em;
    }
    
    .portfolio-title {
        font-size: 1.4em;
    }
    
    .portfolio-subtitle {
        font-size: 1.1em;
    }
}