/* new/css/new-look.css */

:root {
  /* User Palette */
  --color-1: #f4c3b5; /* Lightest - Peach */
  --color-2: #d5a394; /* Mid - Rose Gold */
  --color-3: #c39f94; /* Mid/Dark - Muted Rose */
  --color-4: #d8b5a8; /* Mid - Pale Rose */

  /* Functional Colors */
  --primary-color: #c39f94; /* Main Brand Color */
  --secondary-color: #d5a394; /* Secondary Brand Color */
  --accent-color: #f4c3b5; /* Highlight */

  --bg-light: #fffbf9; /* Extremely light tint of the palette for backgrounds */
  --bg-dark: #fdf5f2; /* Slightly darker background */

  --text-main: #4a4a4a; /* Dark Grey for body text - High Contrast */
  --text-heading: #2c2c2c; /* Almost Black for headings - High Contrast */
  --white: #f9f9f9;

  --heading-font: "Montserrat", sans-serif;
  --body-font: "Roboto Slab", serif;
  --shadow-soft: 0 10px 30px rgba(195, 159, 148, 0.15);
  --shadow-hover: 0 15px 35px rgba(195, 159, 148, 0.25);
}

body {
  color: var(--text-main);
  background-color: var(--white);
  font-family: var(--body-font);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--text-heading); /* Changed from primary-color for readability */
}

/* Navbar */
#mainNav {
  background-color: #ffffff; /* Solid white for professionalism */
  padding-top: 15px;
  padding-bottom: 15px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05); /* Neutral, subtle shadow */
  transition: padding 0.3s ease;
  border-bottom: none;
}

#mainNav .navbar-brand {
  color: var(--color-3);
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  font-size: 2.8rem; /* Slightly larger */
  letter-spacing: 0.5px;
  line-height: 1;
  display: flex; /* Ensure proper alignment */
  align-items: center;
}
#mainNav .navbar-brand .sub {
  color: var(--text-main) !important;
  font-family: "Dancing Script", cursive;
  font-size: 1.4rem; /* Adjusted for proportion */
  font-weight: 400;
  margin-left: 10px; /* More space between parts */
  text-transform: none; /* Ensure it's not forced uppercase */
}

#mainNav .navbar-nav .nav-item .nav-link {
  color: var(--text-heading);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px; /* Reduced from 2px for a tighter, more professional look */
  padding: 10px 15px;
  transition: color 0.3s ease;
}

/* Clean hover state - no animations */
#mainNav .navbar-nav .nav-item .nav-link:hover,
#mainNav .navbar-nav .nav-item .nav-link.active {
  color: var(--color-3) !important;
}

/* Remove the underline animation */
#mainNav .navbar-nav .nav-item .nav-link::after {
  display: none;
}

@media (min-width: 1200px) {
  #mainNav.navbar-shrink {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  }
  #mainNav.navbar-shrink .navbar-brand {
    font-size: 1.8rem;
  }
  #mainNav.navbar-shrink .navbar-brand .sub {
    font-size: 1.1rem;
  }
  #mainNav.navbar-shrink .navbar-nav .nav-item .nav-link {
    color: var(--text-heading);
  }
  #mainNav.navbar-shrink .navbar-nav .nav-item .nav-link.active,
  #mainNav.navbar-shrink .navbar-nav .nav-item .nav-link:hover {
    color: var(--color-3) !important;
  }
}

/* Header */
header.masthead {
  background: linear-gradient(135deg, #c39f94 0%, #d5a394 100%);
  position: relative;
  overflow: hidden;
  padding-bottom: 150px; /* Extra space for the curve */
  clip-path: ellipse(150% 100% at 50% 0%); /* Modern curved bottom */
  color: var(--white);
}
/* Add a dark overlay to ensure text readability on header image */
header.masthead::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
}
header.masthead .container {
  position: relative;
  z-index: 1;
}

header.masthead .intro-text {
  padding-top: 180px;
  padding-bottom: 100px;
}

header.masthead .intro-text .intro-heading {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

header.masthead .intro-text .sub-heading {
  font-family: "Dancing Script", cursive;
  font-size: 3.5rem;
  color: var(--bg-light);
  margin-bottom: 30px;
  display: block;
  text-shadow: none;
}

header.masthead .intro-text .intro-lead-in {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 50px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: none;
}

/* Buttons */
.btn-primary {
  background-color: #ffffff; /* White background for high contrast */
  border-color: #ffffff;
  color: var(--color-3); /* Text in brand color */
  border-radius: 50px;
  padding: 18px 45px;
  font-family: var(--heading-font);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: var(
    --bg-light
  ) !important; /* Slightly off-white on hover */
  border-color: var(--bg-light) !important;
  color: var(--color-2) !important;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Sections */
section {
  padding: 100px 0;
}
.bg-light-custom {
  background-color: var(--bg-dark) !important; /* Very subtle tint */
}

section h2.section-heading {
  color: var(
    --color-3
  ); /* Palette color for big headings is okay if large enough */
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}
/* Decorative underline for headings */
section h2.section-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--color-2);
  margin: 15px auto 0;
  border-radius: 2px;
}

section h3.section-subheading {
  font-family: var(--body-font);
  color: var(--text-main);
  margin-bottom: 70px;
  font-size: 1.1rem;
}

/* --- Info Cards Section (Professional Redesign - Split Layout) --- */
.info-card {
  display: flex;
  background: #f8f9fa; /* Light grey background for contrast */
  border: 1px solid #e0e0e0; /* Slightly darker border */
  border-radius: 0; /* Square corners for professional look */
  box-shadow: none; /* Flat design */
  transition: all 0.3s ease;
  height: 100%;
  align-items: stretch;
  min-height: 220px;
}

.info-card:hover {
  background: #ffffff; /* White on hover for "lift" effect */
  border-color: var(--color-3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
  z-index: 2;
}

.info-card-image {
  flex: 0 0 50%; /* 50/50 Split */
  position: relative;
  overflow: hidden;
}

.info-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.info-card:hover .info-card-image img {
  transform: scale(1.1);
}

.info-card-content {
  flex: 1;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* Center align text */
  text-align: center;
  background-color: transparent; /* Inherit from card */
}

.info-card-content h4 {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  color: var(--text-heading);
  font-weight: 800; /* Extra bold */
  line-height: 1.4;
}

.info-card-content h4 a {
  color: inherit;
  text-decoration: none;
}

.info-card-content h4 a:hover {
  color: inherit;
  text-decoration: none;
}

.info-card-content h4::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--color-2);
  margin: 15px auto 0;
  transition: width 0.3s ease;
}

.info-card:hover .info-card-content h4::after {
  width: 50px;
}

.info-card-content p {
  font-family: var(--body-font);
  font-size: 0.9rem;
  color: #888;
  margin: 0;
  line-height: 1.6;
}

/* Responsive: Stack on mobile */
@media (max-width: 768px) {
  .info-card {
    flex-direction: column;
  }
  .info-card-image {
    height: 200px; /* Fixed height for image on mobile */
  }
}

/* Footer */
footer.footer {
  background-color: #222; /* Darker background */
  padding: 60px 0 40px;
  color: #aaa;
  font-family: var(--body-font);
  font-size: 0.9rem;
  border-top: 5px solid var(--color-3); /* Brand color accent on top */
}

footer.footer h5 {
  color: #fff;
  font-family: var(--heading-font);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-brand {
  font-family: "Dancing Script", cursive !important;
  font-size: 2rem !important;
  text-transform: none !important;
  color: var(--color-3) !important;
  margin-bottom: 10px !important;
}

footer.footer a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
}

footer.footer a:hover {
  color: var(--color-2);
  padding-left: 5px; /* Subtle movement on hover */
}

.footer-contact i {
  color: var(--color-3);
  width: 20px;
  text-align: center;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  display: block;
}

.copyright {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* --- Main Slider --- */
#main-slider {
  padding-bottom: 60px;
  margin-top: 120px; /* Added top margin to separate from fixed navbar */
}

.carousel-inner {
  border-radius: 0; /* Match square look of info cards */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.carousel-item {
  height: 450px; /* Fixed height for professional presence */
  background-color: #333;
}

.carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.carousel-caption {
  bottom: 20%;
  left: 15%;
  right: 15%;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-caption h5 {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.carousel-caption p {
  font-family: var(--body-font);
  font-size: 1.2rem;
  color: #fff;
  font-weight: 300;
}

.carousel-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators .active {
  background-color: var(--color-2);
}

/* --- Professional Profile Section --- */
.profile-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  padding: 40px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 20px;
}

.profile-image-container {
  margin-top: auto;
  flex: 0 0 320px; /* Fixed width */
  height: 450px; /* Fixed height - Portrait ratio but controlled */
  position: relative;
}

.profile-image {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.profile-content {
  flex: 1;
  padding: 0;
  display: block;
}

.profile-name {
  font-family: var(--heading-font);
  font-size: 2.2rem;
  color: var(--color-3);
  margin-bottom: 5px;
  font-weight: 700;
}

.profile-role {
  font-family: var(--body-font);
  font-size: 1.1rem;
  color: #999;
  margin-bottom: 30px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  display: inline-block;
}

.profile-bio-list {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2; /* Split list into 2 columns for better readability */
  column-gap: 40px;
}

.profile-bio-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #555;
  break-inside: avoid;
}

.profile-bio-list li::before {
  content: "\f00c";
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--color-2);
  font-size: 0.8rem;
}

@media (max-width: 991px) {
  .profile-card {
    flex-direction: column;
    padding: 30px;
  }
  .profile-image-container {
    flex: none;
    width: 100%;
    height: 350px; /* Slightly shorter for mobile */
    max-width: 350px; /* Limit width on mobile */
    margin: 0 auto 30px;
  }
  .profile-content {
    padding: 0;
  }
  .profile-bio-list {
    columns: 1;
  }
  .profile-name {
    text-align: center;
  }
  .profile-role {
    display: block;
    text-align: center;
  }
}

/* --- Bootstrap Overrides for Theme Colors --- */
.bg-light {
  background-color: var(--bg-light) !important;
}

.bg-white {
  background-color: var(--white) !important;
}

.bg-light-custom {
  background-color: var(--bg-dark) !important;
}

/* --- Spacing Adjustments --- */
#info-cards {
  padding-bottom: 0px;
}

#team {
  padding-top: 0px;
}

/* Floating Contact Buttons */
.floating-contact-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn-float {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white !important;
  font-size: 28px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-whatsapp {
  background-color: #25d366;
}

/* Adjust for mobile to not cover content */
@media (max-width: 768px) {
  .floating-contact-buttons {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
  .btn-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}
