/*--------------------------------------------------------------
# ROYAL GROUP WELLNESS CENTER - CUSTOM STYLES
# Updated to show full photo without cropping
# Version: 2.2
# Last Updated: October 2025
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Header Styling - Dark Navy Background
--------------------------------------------------------------*/
.header {
  background-color: #002457 !important;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.3);
  padding: 12px 0;
}

.header.light-background {
  background-color: #002457 !important;
}

.header .logo h1,
.header .logo,
.header .logo .sitename {
  color: #fedd10 !important;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  line-height: 1.2;
}

.header .logo img {
  height: 60px;
  width: auto;
  margin-right: 15px;
}

/*--------------------------------------------------------------
# Navigation Menu - White Text
--------------------------------------------------------------*/
.header .navmenu a,
.header .navmenu a:focus {
  color: #ffffff !important;
  font-weight: 500;
  font-size: 16px;
  text-transform: capitalize;
  padding: 8px 16px;
}

.header .navmenu>ul>li>a:hover,
.header .navmenu>ul>li>a.active {
  color: #ffd700 !important;
  position: relative;
}

.header .navmenu>ul>li>a:before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: #ffd700 !important;
  visibility: hidden;
  transition: all 0.3s ease-in-out 0s;
  transform: translateX(-50%);
}

.header .navmenu>ul>li>a:hover:before,
.header .navmenu>ul>li>a.active:before {
  width: 80%;
  visibility: visible;
}

/*--------------------------------------------------------------
# Language Dropdown Styling
--------------------------------------------------------------*/
.header .language-dropdown a {
  color: #ffffff !important;
  display: flex;
  align-items: center;
  gap: 5px;
}

.header .language-dropdown a:hover {
  color: #ffd700 !important;
}

.header .language-dropdown .dropdown-menu {
  background-color: #002457;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 8px 0;
  margin-top: 10px;
}

.header .language-dropdown .dropdown-menu a {
  color: #ffffff;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.header .language-dropdown .dropdown-menu a:hover {
  background-color: rgba(255, 215, 0, 0.1);
  color: #ffd700 !important;
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
.mobile-nav-toggle {
  color: #ffffff !important;
  font-size: 28px;
  cursor: pointer;
}

.header.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1000;
}

@media (max-width: 1199px) {
  .header .navmenu ul {
    background-color: #002457;
  }
}

/*--------------------------------------------------------------
# Hero Section - Show Full Background Images
--------------------------------------------------------------*/
.hero.section {
  background-size: contain, cover !important;
  background-position: right bottom, center center !important;
  background-repeat: no-repeat, no-repeat !important;
  background-attachment: scroll !important;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Hero Content - Above overlay */
.hero .container {
  position: relative;
  z-index: 2;
}

.hero .row {
  align-items: center;
}

.hero .col-lg-6 {
  padding: 20px;
}

/*--------------------------------------------------------------
# Hero Typography
--------------------------------------------------------------*/
.hero h2.text-highlight1 {
  color: #002457 !important;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 25px;
  text-shadow: none;
  font-family: var(--heading-font), 'Segoe UI', Arial, sans-serif;
  letter-spacing: -1px;
}

.hero p.text-highlight1 {
  color: #2c3e5f !important;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 40px;
  text-shadow: none;
  font-family: var(--default-font), 'Segoe UI', Arial, sans-serif;
  letter-spacing: 0.2px;
  max-width: 90%;
}

/*--------------------------------------------------------------
# Call-to-Action Button
--------------------------------------------------------------*/
.hero .btn-get-started {
  background-color: #002457;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  padding: 18px 45px;
  border-radius: 50px;
  border: none;
  transition: all 0.4s ease;
  display: inline-block;
  text-decoration: none;
  font-style: italic;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(30, 42, 71, 0.25);
}

.hero .btn-get-started::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.5s ease;
}

.hero .btn-get-started:hover {
  background-color: #151f35;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(30, 42, 71, 0.35);
  color: #ffffff;
  text-decoration: none;
}

.hero .btn-get-started:hover::before {
  left: 100%;
}

/*--------------------------------------------------------------
# Footer Styling
--------------------------------------------------------------*/
.footer {
  background-color: #f8f9fa;
  padding: 30px 0;
}

.footer .copyright {
  color: #002457;
  font-size: 14px;
  font-weight: 400;
}

.footer .sitename {
  color: #002457;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Animation for Hero Elements
--------------------------------------------------------------*/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h2.text-highlight1,
.hero p.text-highlight1,
.hero .btn-get-started {
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero p.text-highlight1 {
  animation-delay: 0.2s;
}

.hero .btn-get-started {
  animation-delay: 0.4s;
}

/*--------------------------------------------------------------
# Responsive Design - Show Full People Photo
--------------------------------------------------------------*/
@media (min-width: 1400px) {
  .hero h2.text-highlight1 { font-size: 64px; }
  .hero p.text-highlight1 { font-size: 24px; }
  .hero.section {
    background-size: auto 100%, cover !important;
  }
}

@media (max-width: 1199px) {
  .hero h2.text-highlight1 { font-size: 52px; }
  .hero p.text-highlight1 { font-size: 20px; }
  .hero .btn-get-started { font-size: 18px; padding: 16px 40px; }
  .hero.section {
    background-size: auto 90%, cover !important;
  }
}

@media (max-width: 992px) {
  .hero.section { 
    min-height: 100vh;
    padding: 60px 0;
    background-size: auto 85%, cover !important;
    background-position: right bottom, center center !important;
  }
  
  .hero h2.text-highlight1 { font-size: 44px; }
  .hero p.text-highlight1 { font-size: 19px; max-width: 100%; }
  .hero .btn-get-started { font-size: 17px; padding: 15px 35px; }
  .hero .col-lg-6:last-child { margin-top: 30px; }
}

@media (max-width: 768px) {
  .hero.section { 
    min-height: 85vh;
    padding: 30px 0 30px 0;
    background-size: auto 55%, cover !important;
    background-position: right bottom, center center !important;
  }
  
  .hero h2.text-highlight1 { font-size: 34px; margin-bottom: 15px; }
  .hero p.text-highlight1 { font-size: 16px; margin-bottom: 25px; max-width: 100%; line-height: 1.5; }
  .hero .btn-get-started { font-size: 15px; padding: 12px 28px; }
  
  .hero .container {
    height: 100%;
    display: flex;
    align-items: flex-start;
    padding-top: 15px;
  }
}

@media (max-width: 576px) {
  .hero.section { 
    min-height: 80vh;
    padding: 20px 0 20px 0;
    background-size: auto 50%, cover !important;
    background-position: right bottom, center center !important;
  }
  
  .hero h2.text-highlight1 { 
    font-size: 27px; 
    line-height: 1.2; 
    margin-bottom: 12px; 
  }
  .hero p.text-highlight1 { 
    font-size: 16px; 
    line-height: 1.4; 
    margin-bottom: 20px; 
    max-width: 100%; 
  }
  .hero .btn-get-started { 
    font-size: 12px; 
    padding: 11px 11px; 
    /* width: 100%;  */
    text-align: left; 
  }
  
  .hero .col-lg-6 { padding: 8px 15px; }
  
  .hero .container {
    height: 100%;
    display: flex;
    align-items: flex-start;
    padding-top: 10px;
  }
  
  .hero .row {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# About Page - Content Description Font Size
--------------------------------------------------------------*/
.content-description {
    font-size: 1.25rem;
    line-height: 1.7;
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    .content-description {
        font-size: 1.1rem;
        line-height: 1.6;
    }
}