﻿


/*video------------------------------------*/


/* 1. MASTER WRAPPER - The primary fix for horizontal scrolling */
.videohero-master-wrapper {
    width: 100%;
    overflow-x: hidden; /* Stops the black bar/pole on the right */
    position: relative;
    margin: 0;
    padding: 0;
}

/* 2. SECTION STYLING */
.videohero-section {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    position: relative;
    background: #000;
    display: block;
    box-sizing: border-box;
}

.videohero-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden; /* Safety for the video object */
}

.videohero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.videohero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.5));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.videohero-center-content {
    text-align: center;
    color: #ffffff;
    font-family: sans-serif;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.videohero-title {
    /* clamp prevents text from pushing past screen bounds on narrow phones */
    font-size: clamp(1.8rem, 8vw, 5.5rem);
    font-weight: 900;
    /* Reduced spacing for mobile to stop overflow */
    letter-spacing: clamp(2px, 2vw, 12px);
    margin: 0;
    text-transform: uppercase;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.videohero-line {
    width: 40px;
    height: 3px;
    background: #ffffff;
    margin: 15px auto;
}

.videohero-subtitle {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* 3. STYLED PILL FOOTER */
.videohero-footer {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 10px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    /* This prevents the pill from creating a horizontal scroll */
    max-width: calc(100% - 40px);
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.videohero-social {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

    .videohero-social:hover {
        background: rgba(255, 255, 255, 0.2);
    }

/* 4. MOBILE-SPECIFIC FIXES */
@media (max-width: 768px) {
    .videohero-footer {
        bottom: 60px;
        width: auto;
        padding: 8px 12px;
    }

    .videohero-social {
        padding: 6px 10px;
        font-size: 0.6rem;
        letter-spacing: 1px;
    }
}










/*calendar------------------------------------*/

/* 1. The Parent (Hero) */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* 2. The Calendar Wrapper (The White Card) */
.calendar-wrapper {
    position: relative;
    z-index: 10;
    /* Perfect Dimensions you liked */
    width: 90%;
    max-width: 1000px;
    height: 600px; /* This controls the card height on PC */

    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    overflow: hidden;
    /* THE PC CENTERING FIX */
    margin: 0 auto;
}

    /* 3. THE IFRAME FIX - This stops the "tiny" calendar issue */
    .calendar-wrapper iframe {
        display: block; /* Removes extra bottom spacing */
        width: 100% !important;
        height: 100% !important; /* Forces it to fill the white card */
        border: none;
    }

/* 4. Mobile Fix */
@media (max-width: 768px) {
    .calendar-wrapper {
        width: 95%;
        height: 550px; /* Specific height for mobile */
    }
}










/*event cards---------------------*/

.eventcards-section {
    width: 100%;
    padding: 80px 20px;
    background-color: transparent; /* Blends with your random shapes background */
    box-sizing: border-box;
}

.eventcards-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    /* Two columns for desktop */
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.eventcards-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

    .eventcards-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

.eventcards-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.eventcards-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.eventcards-card:hover .eventcards-img {
    transform: scale(1.1);
}

.eventcards-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #00d4ff;
    color: #000;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.eventcards-content {
    padding: 30px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.eventcards-date {
    font-size: 0.75rem;
    color: #00d4ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.eventcards-title {
    font-size: 1.5rem;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.eventcards-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.eventcards-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #00d4ff;
    padding-bottom: 5px;
    transition: 0.3s;
}

    .eventcards-link:hover {
        letter-spacing: 2px;
    }

/* MOBILE SCALING */
@media (max-width: 768px) {
    .eventcards-container {
        /* Switch to one column for mobile */
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .eventcards-section {
        padding: 40px 15px;
    }

    .eventcards-image-wrapper {
        height: 200px;
    }

    .eventcards-title {
        font-size: 1.3rem;
    }
}













/*stylish font title--------------------------------------------*/

/* Container spacing */
.stylishfonttitle-outer-container {
    width: 100%;
    padding: 30px 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Thicker Silver Metallic Bars */
.stylishfonttitle-silver-bar {
    width: 100%;
    /* Thicker height for visibility */
    height: 3px;
    /* Multi-stop gradient for a polished chrome/silver look */
    background: linear-gradient(90deg, transparent 0%, rgba(170, 170, 170, 0.4) 10%, rgba(255, 255, 255, 0.9) 50%, rgba(170, 170, 170, 0.4) 90%, transparent 100%);
    /* Adds a soft silver glow around the bar */
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}

/* Text Wrapper */
.stylishfonttitle-header-box {
    padding: 50px 20px;
    text-align: center;
}

/* The Stylish Font */
.stylishfonttitle-text {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: clamp(2rem, 8vw, 4rem);
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 300;
    line-height: 1.2;
    /* Soft shadow to keep text readable against any background */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

    /* Accent Word Styling */
    .stylishfonttitle-text span {
        color: #e0e0e0; /* Light silver-white */
        font-style: italic;
        font-weight: 400;
        letter-spacing: 0.05em;
        position: relative;
    }

/* Mobile Devices */
@media (max-width: 768px) {
    .stylishfonttitle-silver-bar {
        height: 2px; /* Slightly thinner on mobile to stay elegant */
    }

    .stylishfonttitle-header-box {
        padding: 40px 15px;
    }

    .stylishfonttitle-text {
        letter-spacing: 0.15em;
    }
}






/*border---------------------------*/

/* Container to handle the spill-over onto the hero */
.bordersection-outer {
    width: 100%;
    position: relative;
    z-index: 100;
    margin-top: -20px; /* Spills over the Hero section */
    height: 40px;
    display: flex;
    align-items: center;
}

/* The Thick Solid Bar */
.bordersection-solid-bar {
    width: 100%;
    height: 15px; /* Thick and solid */
    background: linear-gradient(180deg, #e0e0e0 0%, #888 100%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* The Interesting Shape in the Middle */
.bordersection-center-shape {
    width: 60px;
    height: 60px;
    background: #ffffff;
    /* Creating a sharp 3D diamond/hexagon shape */
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    border: 2px solid #D4AF37; /* Gold rim for style */
}

/* The Inner Icon/Detail */
.bordersection-inner-icon {
    width: 40%;
    height: 40%;
    background: #D4AF37;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .bordersection-outer {
        margin-top: -15px;
    }

    .bordersection-solid-bar {
        height: 6px;
    }

    .bordersection-center-shape {
        width: 45px;
        height: 45px;
    }
}


