/* ==========================================================================
   RR Homes - About Us Component (Luxury Redesign)
   ========================================================================== */

:root {
    --about-dark-blue: #1E1A22; /* Deep Charcoal from header */
    --about-gold: #C8A96A; /* Premium Gold */
    --about-text: #555555;
    --about-bg: #fcfcfc;
}

.about-section {
    padding: 70px 40px;
    background: var(--about-bg);
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 100px;
}

/* ==========================================================================
   LEFT SIDE VISUALS
   ========================================================================== */
.about-left {
    flex: 1.1;
    position: relative;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Elegant Faded Architectural Watermark */
.about-left::before {
    content: '';
    position: absolute;
    top: -50px; 
    left: -50px; 
    width:calc(100% + 100px); 
    height: calc(100% + 100px);
    background: url('../../assets/2.png') center/cover no-repeat; 
    opacity: 0.06; /* Extremely subtle luxury watermark */
    filter: grayscale(100%) contrast(120%);
    mask-image: radial-gradient(circle at center, black 40%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 70%);
    z-index: 1;
}

/* Sleek Geometric Badge */
.about-badge {
    position: relative;
    z-index: 5;
    background: var(--about-dark-blue);
    color: #ffffff;
    padding: 10px 45px;
    transform: skewX(-15deg);
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 15px 15px 40px rgba(0,0,0,0.1);
    border-bottom: 3px solid var(--about-gold); /* Gold accent */
}

.about-badge h3 {
    transform: skewX(15deg); 
    font-size: 22px;
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* The Overlapping 3 Circles (Gallery Style) */
.about-circles {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.circle-img {
    border-radius: 50%;
    /* Pure white gallery border with deep soft shadow for massive depth */
    border: 8px solid #ffffff; 
    object-fit: cover;
    box-shadow: 0 25px 50px rgba(30, 26, 34, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
}

.circle-img:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 35px 60px rgba(200, 169, 106, 0.25); /* Gold tinted hover shadow */
    border-color: #fafafa;
    z-index: 20 !important; /* Bring to very front on hover */
}

.circle-1, .circle-3 {
    width: 200px;
    height: 200px;
    z-index: 2;
}

.circle-2 {
    width: 280px;
    height: 280px;
    z-index: 3;
    margin: 0 -35px; /* Overlap logic */
}


/* ==========================================================================
   RIGHT SIDE CONTENT
   ========================================================================== */
.about-right {
    flex: 1;
    position: relative;
    z-index: 2;
}

.about-right h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.15;
    color: var(--about-dark-blue);
}

.about-right h2 span {
    color: var(--about-gold); /* Make 'RR HOMES' gold */
}

.about-right p {
    color: var(--about-text);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 45px;
    font-weight: 300;
    max-width: 95%;
}

.about-btn {
    background: var(--about-gold);
    color: #ffffff;
    padding: 16px 42px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.4s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--about-gold);
}

.about-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.about-btn:hover {
    background: var(--about-dark-blue);
    border-color: var(--about-dark-blue);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(30, 26, 34, 0.2);
}

.about-btn:hover::before {
    left: 100%;
}


/* ==========================================================================
   RESPONSIVENESS
   ========================================================================== */
@media screen and (max-width: 1200px) {
    .about-container { gap: 50px; }
    .circle-1, .circle-3 { width: 160px; height: 160px; }
    .circle-2 { width: 230px; height: 230px; margin: 0 -25px; }
    .about-right h2 { font-size: 40px; }
}

@media screen and (max-width: 992px) {
    .about-section { padding: 50px 20px; }
    .about-container { 
        flex-direction: column; 
        text-align: center; 
        gap: 40px; 
    }
    .about-left { width: 100%; padding: 10px 0; }
    .about-right p {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }
    .about-right h2 { font-size: 38px; margin-bottom: 20px; }
}

@media screen and (max-width: 768px) {
    .about-section { padding: 40px 15px; }
    .circle-1, .circle-3 { width: 110px; height: 110px; border-width: 4px; }
    .circle-2 { width: 160px; height: 160px; margin: 0 -20px; border-width: 5px; }
    .about-badge { padding: 8px 30px; margin-bottom: 20px; }
    .about-badge h3 { font-size: 18px; letter-spacing: 2px; }
    .about-right h2 { font-size: 32px; }
    .about-right p { font-size: 15px; line-height: 1.8; text-align: justify; margin-bottom: 30px; }
}
