:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-25fe48d */@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

.sponsorshipClass{
        display: inline-block;
    padding: 5px 20px;
    background: #DFC286;
    color: #091831;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}
body video{
    height: auto;
}

.site-header , .site-footer{
  display: none;
}

        :root {
            --navy-deep: #08162c;
            --navy: #0d2347;
            --navy-light: #16366b;
            --gold: #C5A059;
            --gold-light: #DFC286;
            --cream: #FBFBFA;
            --charcoal: #2A2A2A;
            --white: #FFFFFF;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--navy-deep);
            color: var(--cream);
            line-height: 1.7;
            font-weight: 300;
        }

        h1, h2, h3, .tagline {
            font-family: 'Cormorant Garamond', serif;
        }


        /* Hero Header - Greenwich Coast Elegance */
        header {
            background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
            color: var(--white);
            padding: 100px 20px 80px;
            text-align: center;
            border-bottom: 3px solid var(--gold);
            position: relative;
            margin-top: -30px;
        }

        .tagline {
            color: var(--gold-light);
            font-size: 1.15rem;
            text-transform: uppercase;
            letter-spacing: 5px;
            margin-bottom: 20px;
            font-weight: 500;
        }

        h1 {
            font-size: 3.8rem;
            margin-bottom: 25px;
            font-weight: 400;
            letter-spacing: 1.5px;
            color: var(--white);
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--gold-light);
            max-width: 800px;
            margin: 0 auto;
            font-weight: 300;
            font-style: italic;
        }

        /* Main Container */
        main {
            max-width: 1050px;
            margin: 60px auto;
            padding: 0 25px;
        }

        /* Luxury Estate Cards */
        .card {
            background: var(--navy);
            color: var(--white);
            padding: 60px;
            margin-bottom: 45px;
            border-radius: 4px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(197, 160, 89, 0.25);
            border-top: 4px solid var(--gold);
            position: relative;
        }

        h2 {
            color: var(--gold);
            font-size: 2.3rem;
            margin-bottom: 25px;
            font-weight: 500;
            letter-spacing: 1px;
        }

        p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            color: #E2E8F0;
            font-weight: 300;
        }

        p:last-child {
            margin-bottom: 0;
        }

        /* Dynamic Rotating Event Showcase Carousel */
        .carousel-container {
            position: relative;
            width: 100%;
            height: 420px;
            overflow: hidden;
            border-radius: 2px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.6);
            background: var(--navy-deep);
            border: 1px solid rgba(197, 160, 89, 0.3);
            margin-top: 30px;
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            display: flex;
            flex-direction: column;
        }

        .carousel-slide.active {
            opacity: 1;
            z-index: 2;
        }

        .carousel-slide img {
            width: 100%;
            height: 320px;
            object-fit: cover;
            display: block;
        }

        .carousel-caption {
            background: var(--navy-deep);
            color: var(--gold-light);
            padding: 15px 20px;
            text-align: center;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.25rem;
            letter-spacing: 1px;
            border-top: 1px solid rgba(197, 160, 89, 0.2);
            flex-grow: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Carousel Navigation Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(197, 160, 89, 0.3);
            border: 1px solid var(--gold);
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .dot.active {
            background: var(--gold);
        }

        /* Details List */
        .details-list {
            list-style: none;
            margin-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .details-list li {
            padding: 20px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            font-size: 1.15rem;
        }

        .details-list span:first-child {
            color: var(--gold);
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-size: 0.95rem;
        }

        .details-list span:last-child {
            color: var(--white);
            font-weight: 300;
        }

        .direct-contact {
            text-align: center;
            margin-top: 25px;
            font-size: 1.15rem;
            color: var(--gold-light);
        }

        .direct-contact a {
            color: var(--white);
            text-decoration: none;
            font-weight: 400;
            border-bottom: 1px dotted var(--gold);
            transition: color 0.3s ease;
        }

        .direct-contact a:hover {
            color: var(--gold);
        }

        /* Contact Form Styles */
        .contact-form {
            margin-top: 30px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            color: var(--gold-light);
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            background: var(--navy-deep);
            border: 1px solid rgba(197, 160, 89, 0.3);
            border-radius: 2px;
            color: var(--white);
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--gold);
        }

        .form-group textarea {
            resize: vertical;
            height: 120px;
        }

        .optional-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            font-family: 'Montserrat', sans-serif;
            font-style: italic;
            margin-left: 5px;
        }

        /* Success Message */
        .success-message {
            display: none;
            background: rgba(197, 160, 89, 0.15);
            border: 2px solid var(--gold);
            border-radius: 4px;
            padding: 25px;
            margin-top: 20px;
            text-align: center;
            color: var(--gold-light);
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
        }

        .success-message.show {
            display: block;
        }

        /* High-End CTA Button */
        .cta-container {
            text-align: center;
            margin-top: 30px;
        }

        .btn {
            display: inline-block;
            background-color: var(--gold);
            color: var(--navy-deep);
            padding: 18px 50px;
            border-radius: 2px;
            text-decoration: none;
            font-weight: 600;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(197, 160, 89, 0.3);
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: var(--gold-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(197, 160, 89, 0.5);
        }

        .btn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

        /* ---- SEPARATE PARTNER LOGOS SECTION (bigger, standalone) ---- */
        .partner-section {
            margin: 60px auto 45px;
            padding: 60px 40px;
            background: var(--navy);
            border-radius: 4px;
            border: 1px solid rgba(197, 160, 89, 0.25);
            border-top: 4px solid var(--gold);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
            text-align: center;
        }

        .partner-section .partner-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.2rem;
            color: var(--gold-light);
            letter-spacing: 3px;
            margin-bottom: 40px;
            font-weight: 400;
            text-transform: uppercase;
            opacity: 0.85;
        }

        .partner-section .logo-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px 30px;
            align-items: center;
            justify-items: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .partner-section .logo-item {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 20px 12px;
            background: rgba(8, 22, 44, 0.4);
            border-radius: 4px;
            transition: background 0.2s ease, border-color 0.2s ease;
            border: 1px solid rgba(197, 160, 89, 0.08);
            min-height: 90px;
        }

        .partner-section .logo-item img {
            max-width: 100%;
            height: auto;
            max-height: 100px;
            width: auto;
            filter: brightness(0.95) saturate(0.9);
            transition: filter 0.3s ease, transform 0.2s ease;
            display: block;
        }

        .partner-section .logo-item:hover {
            background: rgba(197, 160, 89, 0.08);
            border-color: rgba(197, 160, 89, 0.25);
        }

        .partner-section .logo-item:hover img {
            filter: brightness(1.1) saturate(1.05);
            transform: scale(1.03);
        }

        /* Footer */
        footer {
            background-color: var(--navy-deep);
            color: var(--gold-light);
            text-align: center;
            padding: 50px 20px;
            font-size: 0.9rem;
            border-top: 2px solid var(--gold);
            letter-spacing: 1px;
            margin-bottom: -30px;
        }

        @media (max-width: 768px) {
            h1 { font-size: 2.6rem; }
            .card { padding: 35px 20px; }
            .carousel-container { height: 380px; }
            .carousel-slide img { height: 280px; }
            .partner-section {
                padding: 40px 20px;
                margin: 40px auto;
            }

            .partner-section .partner-title {
                font-size: 1.8rem;
                margin-bottom: 30px;
            }

            .partner-section .logo-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px 20px;
                max-width: 450px;
            }

            .partner-section .logo-item {
                padding: 18px 12px;
                min-height: 80px;
            }

            .partner-section .logo-item img {
                max-height: 60px;
            }
        }
        @media (max-width: 480px) {
            .partner-section .logo-grid {
                grid-template-columns: 1fr 1fr;
                gap: 18px 14px;
                max-width: 300px;
            }

            .partner-section .logo-item {
                padding: 14px 8px;
                min-height: 70px;
            }

            .partner-section .logo-item img {
                max-height: 50px;
            }

            .partner-section .partner-title {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 450px){
          .btn{
            padding: 18px 15px;
          }
          
        }/* End custom CSS */