/* Connecticut Page Specific Styles */
:root {
    --ct-accent: #ffffff;
    /* White access/text color */
    /* Using system variables for standard colors */
}

/* Theme Utilities */
.ct-text-muted {
    color: var(--text-muted) !important;
}

.ct-service-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Hero Section */
.ct-hero-section {
    position: relative;
    height: 80vh;
   
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: white;
}

.ct-hero-img {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
}

.ct-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: -1;
}

.ct-hero-content {
    z-index: 1;
    max-width: 900px;
    padding: 20px;
}

.ct-hero-title {
    font-family: 'Gallient', 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--ct-accent);
    line-height: 1.1;
}

.ct-hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.ct-hero-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Stylish Decor Section */
.ct-intro-section {
    padding: 100px 0;
    background-color: var(--bg-body);
}

.ct-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

/* Service List with Icons */
.ct-service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-top: 50px;
}

.ct-service-item {
    flex: 1 1 300px;
    max-width: 500px;
    background: var(--bg-surface);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-card);
    border-left: 4px solid var(--text-main);
    transition: transform 0.3s ease;
}

.ct-service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.ct-service-title {
    font-family: 'Gallient', serif;
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

/* Tailored Venues Section */
.ct-venue-section {
    padding: 100px 0;
    background-color: var(--bg-surface-alt);
}

.ct-venue-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.ct-venue-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 350px;
}

.ct-venue-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.ct-venue-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
}

.ct-venue-name {
    font-family: 'Gallient', serif;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 5px;
}

/* Trusted Specialists BLOCK Section */
.ct-specialist-block-section {
    padding: 100px 0;
    background-color: var(--bg-body);
}

.ct-specialist-block {
    background-color: var(--bg-surface);
    /* Use surface color */
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

/* Decorative corner accents */
.ct-specialist-block::before,
.ct-specialist-block::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--text-muted);
    opacity: 0.3;
}

.ct-specialist-block::before {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.ct-specialist-block::after {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

.ct-block-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.ct-block-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 992px) {
    .ct-venue-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ct-hero-title {
        font-size: 2.5rem;
    }

    .ct-services-grid {
        grid-template-columns: 1fr;
    }

    .ct-specialist-block {
        padding: 40px 20px;
    }
}

/* Custom Decor Section */
.ct-custom-decor-section {
    padding: 80px 0;
    background-color: var(--bg-body);
}

.ct-custom-decor-section h2 {
    font-family: 'Gallient', serif;
    font-size: 2.2rem;
    color: var(--text-main);
    line-height: 1.2;
}

.ct-custom-decor-section .lead {
    font-family: 'Gallient', serif;
    font-size: 1.4rem;
}