@charset "UTF-8";
/* CSS Document */
/**
 * Master Page Template Styles
 * Organized and cleaned version with !important preserved for legacy CSS override
 */

/* ========================================
   1. CSS VARIABLES & BASE STYLES
   ======================================== */
:root {
    --pride-purple: #00ABC8;
    --pride-blue: #00ABC8;
    --pride-dark: #333333;
    --card-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --card-shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* ========================================
   2. NAVIGATION STYLES
   ======================================== */
.nav_bg {
    background-image: none;
    box-shadow: 0px 6px 39px rgb(0 0 0 / 10%);
    background-color: #fff !important;
    transition: background-color 200ms linear;
}

.nav-link {
    color: #000000;
    -webkit-font-smoothing: antialiased;
}

.nav-link:hover {
    color: #000000;
}

.non_scroll_logo {
    display: none;
}

.scroll_logo {
    display: block;
}

.nav {
    z-index: 220;
}

.navbar-toggler {
    color: #000000;
}

/* ========================================
   3. HERO/MAST SECTION
   ======================================== */
#hero {
    position: relative;
    overflow: hidden;
}

.hero-media {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.video-hero video {
    display: block;
    width: 100%;
    height: 620px;
    object-fit: cover;
}

.title_bar {
    position: absolute;
    bottom: 10px;
    width: 80%;
    padding: 15px 15px 15px 20px;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 32px;
    line-height: 48px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #FFFFFF;
    background: rgba(0, 0, 0, 0.8);
    z-index: 30;
    left: 50%;
    transform: translateX(-50%);
}

.color_change {
    position: absolute;
    width: 100%;
    height: 10px;
    z-index: 30;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    z-index: 35;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 40px;
    height: 40px;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ========================================
   4. TYPOGRAPHY
   ======================================== */
h3 {
    color: var(--pride-dark) !important;
    font-weight: 700 !important;
    margin-bottom: 2rem !important;
    font-size: 2rem !important;
    text-transform: uppercase !important;
}

h4, .h4 {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
}

.main-description {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.main-description h1,
.main-description h2,
.main-description h3 {
    color: var(--pride-dark);
    margin-bottom: 1rem;
}

/* ========================================
   5. SQUARE IMAGE COMPONENT
   ======================================== */
.cz_img {
    position: relative;
    width: 100%;
    padding-bottom: 80%; /* 1:1 Aspect Ratio */
    overflow: hidden;
    border-radius: 0px;
    background-color: #f5f5f5;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 0px solid rgba(0, 0, 0, 0.05);
}

.cz_img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.cz_img:hover img {
    transform: scale(1.05);
}

.cz_img.contain-mode img {
    object-fit: contain;
}

/* ========================================
   6. CARD COMPONENTS
   ======================================== */

/* Artist Cards */
.artist-showcase .row {
    gap: 0;
}
.artist-showcase h3 {text-align: center;}

.artist-card {
    background-color: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.artist-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow-hover);
}

.artist-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.artist-card .artist-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.artist-card .artist-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 70%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.artist-card .artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.artist-card:hover .artist-image img {
    transform: scale(1.1);
}

.artist-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.artist-info h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--pride-dark);
    line-height: 1.2;
}

.artist-bio {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
    padding-bottom: 2.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

/* Agent Cards */
.agent-card {
    overflow: hidden;
    height: 100%;
    margin-bottom: 2rem;
}

.agent-card:hover {
    transform: translateY(-5px);
}

.agent-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.agent-card:hover img {
    transform: scale(1.05);
}

.agent-info {
    padding: 1.5rem;
    text-align: center;
}

.agent-info h5 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--pride-dark);
}

.agent_second {
    color: var(--pride-purple);
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.agent-info div {
    margin-bottom: 0.25rem;
    color: #666;
    font-size: 0.9rem;
}

.agent-info a {
    color: var(--pride-blue);
    text-decoration: none;
    font-size: 0.9rem;
}

.agent-info a:hover {
    text-decoration: underline;
}

/* Event Boxes */
.event-boxes {
    margin-bottom: 0rem;
}

.event-box {
    background: #fff;
    border-radius: 1rem;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}

.event-box img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-box:hover img {
    transform: scale(1.05);
}

.box-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.box-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--pride-dark);
    line-height: 1.2;
}

.box-content p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

/* ========================================
   7. BUTTON STYLES
   ======================================== */
.btn {
    display: inline-block;
    color: white;
    background-color: var(--pride-purple);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
    text-decoration: none;
    border: none;
    
    /* ADD THESE FOR PROPER ALIGNMENT */
    text-align: center !important;
    vertical-align: middle !important;
    line-height: normal !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.btn-primary,
.btn-clear,
.btn-lg {
    text-align: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}
/* Force Button Text Centering - Add to master_page.css */
.btn,
a.btn,
button.btn,
.btn-primary,
.btn-clear,
.btn-lg {
    text-align: center !important;
    display: inline-block !important;
    padding: 0.5rem 1.5rem !important;
    position: relative !important;
}

/* Override any text-align inheritance */
.btn *,
a.btn *,
button.btn * {
    text-align: inherit !important;
}

/* If it's a link styled as button */
a.btn {
    text-decoration: none !important;
    text-align: center !important;
    display: inline-block !important;
}

/* Remove any float or margin that might affect it */
.btn {
    float: none !important;
    margin-left: auto;
    margin-right: auto;
    text-indent: 0 !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

/* Nuclear option - if button has inner span or text */
.btn > *,
.btn::before,
.btn::after {
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
    display: inline !important;
}

.btn:hover {
    background-color: var(--pride-blue);
    color: white;
    text-decoration: none;
}

.artist-card .btn {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    margin-top: auto;
    text-align: center;
}

.box-content .btn {
    margin-top: auto;
    align-self: flex-start;
}

.white_btn {
    background-color: #000000;
    color: #ffffff;
}

/* ========================================
   8. SECTION-SPECIFIC STYLES
   ======================================== */

/* Choose Us Section */
.choose-us-section {
    background-color: #00ABC8;
    color: white;
}

.choose-us-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: white;
}

.choose-us-list {
    text-align: left;
    display: inline-block;
}

.choose-us-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 500;
}

.choose-us-arrow {
    color: white;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.choose-us-text {
    color: white;
}

/* Agents Location Section */
.agents_loc {
    border: 0px;
}

.agents_loc h2 {
    color: #ffffff !important;
    font-weight: 700;
    margin-bottom: 2.25rem;
    text-align: left;
}

.agents_loc h3 {
    color: #ffffff !important;
    font-weight: 700;
    margin-bottom: 2.25rem;
    text-align: left;
    font-size: 1.1rem !important;
}

.agents_loc h3::after {
    border: none;
}

.agents_loc strong {
    color: #ffffff !important;
    font-size: 1.1rem;
    font-weight: 700;
}

.agents_loc .agent_second {
    color: #ffffff !important;
    font-weight: 600;
    font-style: italic;
}

.agents_loc div {
    color: #ffffff !important;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.agents_loc a {
    color: #ffffff !important;
    text-decoration: none;
}

.agents_loc a:hover {
    text-decoration: underline;
}

.agents_loc img {
    object-fit: cover;
    width: 120px;
    height: 120px;
    border-radius: 60px;
    border: 5px solid #ffffff;
    transition: all 0.3s ease;
}

.agents_loc img:hover {
    border-color: transparent;
    background: none;
    border: 5px solid transparent;
    animation: gradient-border 3s linear infinite;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--pride-purple) 0%, var(--pride-blue) 100%);
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
}

.cta-section h3 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.cta-section .btn {
    display: inline-block;
    color: var(--pride-purple);
    background-color: white;
    padding: 1rem 2.5rem;
    border-radius: 3rem;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.cta-section .btn:hover {
    background-color: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Agents Section Title */
.agents-section-title {
    text-align: left;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    color: #ffffff;
}

.agents-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background-color: white;
}

.agents-section-title.left-border {
    border-left: 4px solid #00ABC8;
    padding-left: 20px;
    margin-left: 20%;
    padding-bottom: 0;
}

.agents-section-title.left-border::after {
    display: none;
}

/* ========================================
   9. UTILITY CLASSES
   ======================================== */
.section-separator {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--pride-purple), transparent);
    margin: 1rem auto;
    max-width: 200px;
    border-radius: 1px;
}

.embedded-video {
    text-align: center;
    margin-bottom: 0rem;
}

.embedded-video h3 {
    color: var(--pride-dark);
    font-weight: 700;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background: #000;
    border-radius: 1rem;
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.video-wrapper::before {
    content: '';
    display: block;
    padding-top: 56.25%; /* 16:9 aspect ratio */
}

.video-wrapper iframe,
.video-wrapper object,
.video-wrapper embed,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 1rem;
    background: #000;
}

.video-wrapper * {
    background-color: transparent !important;
}

.video-wrapper iframe {
    background: #000 !important;
}

/* Pride Social Links */
.pride-social {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 1.2em;
}

.pride-social div {
    margin-bottom: 0.3rem;
}

.pride-social i {
    color: #333 !important;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.agents_loc .pride-social a {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.agents_loc .pride-social a:hover {
    color: #ffffff;
    text-decoration: none;
}

.agents_loc .pride-social i {
    color: #ffffff !important;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.agents_loc .pride-social a:hover i {
    color: #ffffff !important;
}

/* Pride Agent Cards */
.pride-agents-heading {
    color: #ffffff !important;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.pride-agent-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 0.75rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.pride-agent-card:hover {
    background: rgba(255, 255, 255, 0.15);
}

.pride-agent-card img {
    border-radius: 0.5rem;
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.pride-agent-card strong {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
}

.pride-agent-card .agent_second {
    color: #ffffff;
    font-weight: 600;
    font-style: italic;
    display: block;
    margin-bottom: 0.25rem;
}

.pride-agent-card div {
    color: #ffffff;
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
}

.pride-agent-card a {
    color: #ffffff !important;
    text-decoration: none;
    font-size: 0.85rem;
}

.pride-agent-card a:hover {
    text-decoration: underline;
}

/* ========================================
   10. SPACING OVERRIDES
   ======================================== */
.container.pt-4.pb-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

.row.py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

.row.py-2 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

/* ========================================
   11. RESPONSIVE STYLES
   ======================================== */

/* Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-media,
    .video-hero video {
        height: 500px;
    }
    
    .title_bar {
        font-size: 28px;
        line-height: 42px;
    }
}

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .hero-media,
    .video-hero video {
        height: 700px;
    }
}

/* Mobile (max-width: 991px) */
@media (max-width: 991px) {
    .cz_img {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    /* Hero adjustments */
    .hero-media,
    .video-hero video {
        height: 350px;
    }
    
    .title_bar {
        width: 90%;
        bottom: 15px;
        padding: 10px 15px;
        font-size: 24px;
        line-height: 38px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 10%;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 30px;
        height: 30px;
    }
    
    /* Card adjustments */
    .artist-card .artist-image,
    .agent-card img,
    .event-box img {
        height: 180px;
    }
    
    .artist-card .artist-image img {
        height: 120px;
    }
    
    /* CTA adjustments */
    .cta-section {
        padding: 2rem 1rem;
    }
    
    .cta-section h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-section .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    /* Padding adjustments */
    .artist-info,
    .agent-info,
    .box-content {
        padding: 1rem;
    }
    
    /* Typography adjustments */
    .artist-showcase h3,
    .agents-showcase h3 {
        font-size: 1.8rem;
    }
    
    .embedded-video h3 {
        font-size: 1.5rem;
    }
    
    .main-description {
        font-size: 1rem;
    }
    
    /* Video wrapper */
    .video-wrapper {
        max-width: 94%;
        margin: 0 1rem;
    }
    
    /* Agent cards full width on mobile */
    .agents-showcase .col-md-4,
    .agents-showcase .col-md-6 {
        width: 100%;
        max-width: 100%;
        margin-left: 0 !important;
    }
    
    .agents-showcase .offset-md-4,
    .agents-showcase .offset-md-2 {
        margin-left: 0 !important;
    }
    
    /* Agents section adjustments */
    .agents_loc .agent-card {
        margin-bottom: 20px;
    }
    
    .agents-section-title {
        margin-left: 0;
        text-align: center;
    }
    
    .agents-section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .pride-social {
        text-align: center;
        margin-top: 20px;
    }
    
    .logo-master {
        margin-bottom: 20px;
    }
}

/* Mobile (max-width: 576px) */
@media (max-width: 576px) {
    .cz_img {
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Image/Text Section Responsive Fixes */

/* Keep side-by-side layout until 980px */
@media (min-width: 980px) and (max-width: 1250px) {
    .cz_img {
        max-width: 100%;
        padding-bottom: 100%; /* Maintains square ratio */
    }
}

/* Between 768px and 980px - force stacking */
@media (max-width: 979px) {
    /* Force stacking at this breakpoint */
    .container .row .col-md-5,
    .container .row .col-md-7 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
    
    /* Center the image when stacked */
    .cz_img {
        max-width: 500px;
        margin: 0 auto 2rem auto;
    }
    
    /* Remove Bootstrap order classes when stacked */
    .order-md-1,
    .order-md-2 {
        order: unset !important;
    }
}

/* Ensure proper sizing on medium screens */
@media (min-width: 980px) {
    /* Keep columns side by side */
    .container .row .col-md-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    
    .container .row .col-md-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
}

/* Fix for very wide screens */
@media (min-width: 1250px) {
    .cz_img {
        max-width: 450px;
    }
}

