/**
 * Theme Name:      Divi Assistant Child Theme
 * Theme URI:       https://www.elegantthemes.com/gallery/divi/
 * Description:     A child theme for Divi created by Divi Assistant.
 * Author:          Creative Connect AI
 * Author URI:      https://creative-connect-ai.com/
 * Template:         Divi
 * Version:         1.0.0
 * Text Domain:     divi-assistant-child-theme
 * License:         GPL2
 * License URI:     https://www.gnu.org/licenses/gpl-2.0.html
 */
  
 
/* ---------------------- Theme customization starts here ---------------------- */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root{
  --ccai-primary:#e8461e;
  --ccai-dark:#1a1a1a;
  --ccai-light:#f8f7f5;
  --ccai-gray:#6b6b6b;
  --ccai-white:#ffffff;
  --ccai-font:'Inter',sans-serif;
  --ccai-serif:'Playfair Display',serif;
}

.ccai-wrap *{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:var(--ccai-font);
}

.ccai-wrap{
  width:100%;
  overflow:hidden;
}

.ccai-wrap a{
  text-decoration:none;
  color:inherit;
  transition:color .3s;
}

.ccai-wrap a:hover{
  color:var(--ccai-primary);
}

/* ===== HERO SECTION ===== */
.ccai-hero{
  min-height:100vh;
  position:relative;
  background:var(--ccai-light);
  overflow:hidden;
}

.ccai-hero::before{
  content:'';
  position:absolute;
  top:0;
  right:0;
  width:60%;
  height:100%;
  background:linear-gradient(135deg,rgba(200,200,200,0.3),rgba(180,180,180,0.5));
  border-radius:0 0 0 40%;
  z-index:1;
}

.ccai-hero-content{
  position:relative;
  z-index:2;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  padding-bottom:40px;
}

.ccai-hero-left{
  max-width:50%;
}

.ccai-hero-label{
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--ccai-gray);
  margin-bottom:20px;
}

.ccai-hero-label span{
  color:var(--ccai-primary);
}

.ccai-hero h1{
  font-size:clamp(48px,8vw,120px);
  font-weight:900;
  line-height:0.95;
  color:var(--ccai-dark);
  letter-spacing:-3px;
}

.ccai-hero-right{
  text-align:right;
  max-width:45%;
}

.ccai-hero-right h2{
  font-size:clamp(40px,6vw,100px);
  font-weight:900;
  line-height:0.95;
  color:var(--ccai-dark);
  letter-spacing:-2px;
}

.ccai-hero-right h2 .dot{
  color:var(--ccai-primary);
}

.ccai-hero-tagline{
  font-size:14px;
  color:var(--ccai-gray);
  margin-top:15px;
  max-width:250px;
  margin-left:auto;
}

.ccai-scroll-hint{
  position:absolute;
  bottom:30px;
  left:5%;
  font-size:13px;
  color:var(--ccai-gray);
  display:flex;
  flex-direction: row;
  align-items:center;
  gap:8px;
  z-index:5;
}

.ccai-scroll-hint::before{
  content:'\2193';
  color:var(--ccai-primary);
}