﻿.welcome-section {
    background: rgba(8, 47, 73, 1); /* sky-400 */
    color: rgba(240, 249, 255, 1);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}



.welcome-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.welcome-content {
    padding-right: 40px;
}

.welcome-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #38bdf8; /* Keep white text */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.practice-name {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #f0f9ff; /* Change from sky blue to white */
    letter-spacing: 0.5px;
}

.practice-tagline {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 25px;
    color: #f0f9ff; /* Change from light blue to white */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.practice-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #f0f9ff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.welcome-cta {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.85);
}

.appointment-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(45deg, #ffffff, #f0f8ff);
    color: rgba(8, 47, 73, 1);
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

    .appointment-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        transition: left 0.5s ease;
    }

    .appointment-btn:hover::before {
        left: 100%;
    }

    .appointment-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2), 0 6px 15px rgba(0, 0, 0, 0.15);
        background: linear-gradient(45deg, #f0f8ff, #ffffff);
    }

    .appointment-btn:active {
        transform: translateY(0);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .appointment-btn i {
        font-size: 1.2rem;
    }

.promotions-sidebar {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
}

.promotions-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: #b8e6ff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promotions-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.promotion-item {
    margin-bottom: 30px;
    text-align: center;
}

.promotion-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: rgba(34, 211, 238, 1);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.promotion-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #f0f9ff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.welcome-container {
    max-width: 1400px; /* Increase from Bootstrap's default max-width */
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 968px) {
    .welcome-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .welcome-content {
        padding-right: 0;
    }

    .welcome-title {
        font-size: 2.5rem;
    }

    .practice-name {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .welcome-section {
        padding: 60px 0;
    }

    .welcome-container {
        padding: 0 15px;
        gap: 40px;
    }

    .welcome-title {
        font-size: 2.2rem;
    }

    .practice-name {
        font-size: 1.6rem;
    }

    .practice-tagline {
        font-size: 1rem;
    }

    .practice-description, .welcome-cta {
        font-size: 1rem;
    }

    .promotions-sidebar {
        padding: 30px 20px;
    }

    .promotions-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .welcome-title {
        font-size: 1.9rem;
    }

    .appointment-btn {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .promotions-sidebar {
        padding: 25px 15px;
    }
}
