/* Baby Boy Baptism Theme - Blue & Joyful Colors */

/* Main body and text colors with blue tones */
body {
  color: #2c5aa0; /* Softer blue for text */
}

h1, h2, h3, h4, h5, h6 {
  color: #1e4088; /* Deep blue for headings */
}

/* Header styling with blue gradients */
#fh5co-header {
  background: linear-gradient(45deg, rgba(30, 64, 136, 0.7), rgba(44, 90, 160, 0.7)), url(../images/fundal3.jpg);
  background-size: cover;
  background-position: center;
}

/* Blue accent colors for links and buttons */
a {
  color: #4a90e2; /* Bright baby blue */
}

a:hover, a:active, a:focus {
  color: #357abd; /* Darker blue on hover */
}

/* Button styling with blue theme */
.btn-default {
  background: #4a90e2;
  color: white;
  border: 2px solid #4a90e2;
  border-radius: 25px;
  padding: 12px 24px;
  transition: all 0.3s ease;
}

.btn-default:hover {
  background: #357abd;
  border-color: #357abd;
  color: white;
  transform: translateY(-2px);
}

/* Section backgrounds with soft blue tints */
.fh5co-bg {
  background: linear-gradient(135deg, #f0f7ff 0%, #e1f2ff 100%);
}

.fh5co-section-gray {
  background: linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%);
}

/* Event cards with blue borders and shadows */
.event-wrap {
  border: 2px solid #b8d4f0;
  border-radius: 15px;
  background: white;
  box-shadow: 0 5px 15px rgba(74, 144, 226, 0.2);
  transition: all 0.3s ease;
}

.event-wrap:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(74, 144, 226, 0.3);
  border-color: #4a90e2;
}

/* Icon colors in blue */
.icon-calendar, .icon-clock {
  color: #4a90e2;
}

/* Button styling with blue theme */
.button.button5 {
  background: linear-gradient(45deg, #4a90e2, #6bb6ff);
  border: none;
  color: white;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
  transition: all 0.3s ease;
}

.button.button5:hover {
  background: linear-gradient(45deg, #357abd, #4a90e2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

/* Special styling for baptism theme */
h1 {
  text-shadow: 2px 2px 4px rgba(30, 64, 136, 0.3);
  color: #1e4088;
}

/* Gallery image overlays with blue tint */
.case-studies-summary {
  background: linear-gradient(45deg, rgba(74, 144, 226, 0.8), rgba(107, 182, 255, 0.8));
}

/* Navigation styling */
.fh5co-nav ul li a {
  color: rgba(255, 255, 255, 0.9);
}

.fh5co-nav ul li a:hover {
  color: #b8d4f0;
}

/* Overlay adjustments for better contrast */
.overlay {
  background: rgba(30, 64, 136, 0.4);
}

/* Clock styling with blue theme */
.clock {
  color: #1e4088;
}

/* Form elements with blue accents */
select, input[type="text"] {
  border: 2px solid #b8d4f0;
  border-radius: 8px;
  transition: border-color 0.3s ease;
}

select:focus, input[type="text"]:focus {
  border-color: #4a90e2;
  outline: none;
  box-shadow: 0 0 8px rgba(74, 144, 226, 0.3);
}

/* Labels with blue text */
#da-text, #nu-text {
  color: #1e4088;
  font-weight: 600;
}

/* Special baptism decorative elements */
.fh5co-heading h2::after {
  content: "💙";
  margin-left: 10px;
  font-size: 0.8em;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .event-wrap {
    margin-bottom: 20px;
  }
  
  .btn-default {
    padding: 10px 20px;
    font-size: 14px;
  }
}