/* General Styles */
@font-face {
    font-family: 'RalewayRegular';
    src: url('Raleway-Regular.ttf') format('truetype');
}
body {
    font-family: 'RalewayRegular', sans-serif;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    color: #2E2E2E;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #c7ddff;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-title h1 {
    font-size: 1.8rem;
}

/* Hero Section */
.hero {
    background: #F4F8FF;
    text-align: center;
    padding: 50px 20px;
}
.hero-img {
    width: 30%;
    height: 10%;
    max-width: 130px;   /* Controls size */
    margin: 0 auto 25px auto;
    display: block;
    border-radius: 0px;
    box-shadow: 0 ;
    object-fit: cover;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Sections */
section {
    padding: 60px 0;
}

/* About Section Two Columns */
.about-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
    text-align: justify;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    height: 100%;
    max-width: 500px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        max-width: 260px;
    }
}

/* WHY I STARTED OPEN HEART — 3 Cards with Icons */
.why-open-heart {
  padding: 80px 20px;
  background: #fff; /* calm soft background */
}

.cards-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.cards-wrapper h2 {
  font-size: 36px;
  font-weight: 700;
  color: #2E2E2E;
  margin-bottom: 40px;
  position: relative;
}

.cards-wrapper h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #2E2E2E; /* accent color */
  border-radius: 2px;
  margin: 12px auto 0;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.card {
  background: #F4F8FF;
  flex: 1 1 300px;
  max-width: 330px;
  padding: 35px 25px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.card-icon {
  font-size: 48px;
  color: #BFC7D3; /* same accent color — can adjust per card if you want */
  margin-bottom: 18px;
  text-align: center;
}

/* ensure icon sits centered horizontally */
.card-icon i {
  display: inline-block;
}

.card h3 {
  font-size: 24px;
  color: #2E2E2E;
  margin-bottom: 18px;
}

.card p {
  font-size: 17px;
  line-height: 1.75;
  color: #2E2E2E;
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cards-wrapper h2 {
    font-size: 30px;
  }
  .card {
    flex: 1 1 100%;
    max-width: none;
  }
  .cards-container {
    gap: 20px;
  }
}


/* Services Section */
.services {
    background: #F4F8FF;
    padding: 80px 0;
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    color: #2E2E2E;
    margin-bottom: 20px;
}

.services p {
    max-width: 900px;
    margin: 0 auto 20px auto;
    font-size: 1.1rem;
    color: #2E2E2E;
}

/* Service Grid */
.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 40px;
    justify-content: center;
}

/* Service Box */
.service-box {
    flex: 1 1 250px;
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.service-box i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: inline-block;
}

/* Colored Accents */
.service-box.purple i { color: #BFC7D3; }
.service-box.teal i { color: #BFC7D3; }
.service-box.pink i { color: #BFC7D3; }
.service-box.orange i { color: #BFC7D3; }
.service-box.blue i { color: #BFC7D3; }

/* Hover Effects */
.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.service-box h3 {
    margin: 15px 0 10px;
    color: #2E2E2E;
    font-size: 1.3rem;
}

.service-box p {
    color: #2E2E2E;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .service-grid {
        flex-direction: column;
        gap: 20px;
    }
}
/* Sessions Section */
.sessions {
    background: #fff;
    padding: 80px 0;
    text-align: center;
}

.sessions h2 {
    font-size: 2.5rem;
    color: #2E2E2E;
    margin-bottom: 40px;
}

/* SESSION DETAILS SECTION */
.session-section {
    background: #F4F8FF; /* soft lavender like your sample */
    padding: 80px 40px;
    border-radius: 12px;
    margin: 80px auto;
    max-width: 1100px;
}

.session-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

.session-left {
    flex: 1;
}

.session-left h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #2E2E2E;
    margin-bottom: 10px;
}

.session-tagline {
    font-size: 1.1rem;
    color: #2E2E2E;
}

.session-right {
    flex: 1.2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.session-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2E2E2E;
    margin-bottom: 5px;
}

.session-info p {
    font-size: 1rem;
    color: #2E2E2E;
    line-height: 1.6;
}
.session-info h4 i {
    color: #BFC7D3;      /* soft professional purple */
    margin-right: 10px;
    font-size: 1.3rem;
}

.session-info {
    background: #ffffffcc;  /* soft white with transparency */
    padding: 18px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.session-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}


/* Contact Section Layout */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.contact-info {
    flex: 1 1 300px;
}

.contact-info h2 {
    margin-bottom: 15px;
}

.book-btn {
    padding: 12px 25px;
    margin-top: 15px;
    font-size: 1rem;
    background: #BFC7D3;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}

.book-btn:hover {
    background: #fcf1ea;
}

.contact-form-wrapper {
    flex: 1 1 400px;
}

.contact-form-wrapper form {
    display: flex;
    flex-direction: column;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #2E2E2E;
}

button.submit-btn {
    padding: 12px;
    border: none;
    background: #BFC7D3;
    color: #2E2E2E;
    cursor: pointer;
    border-radius: 5px;
    border-color: #2E2E2E;
    transition: background 0.3s;
}

button.submit-btn:hover {
    background: #BFC7D3;
}

/* Footer */
footer {
    background: #c7ddff;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .contact-container {
        flex-direction: column;
    }
}
