/* ========================================
   CUSTOM STYLESHEET - EXPLORE ART CLASS
   ======================================== */

:root {
    --primary-color: #ed2f59;
    --dark-bg: #343a40;
    --light-bg: #f8f9fa;
    --text-white: #ffffff;
    --text-dark: #000000;
    --text-muted: #6c757d;
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 250;
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
    background: var(--dark-bg);
    height: 100%;
    position: relative;
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: inherit;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    transform: translateX(0);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.7);
}

/* ==================== NAVBAR ==================== */
#mainNav {
    background-color: var(--primary-color) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0 !important;
    min-height: 5rem;
    transition: all 0.3s ease;
    opacity: 1 !important;
}

#mainNav .container-fluid {
    padding-left: 0.5rem !important;
    padding-right: 2rem !important;
}

#mainNav.navbar-shrink {
    padding: 0 !important;
    background-color: var(--primary-color) !important;
}

.navbar-brand {
    padding: 0 !important;
    margin: 0 0 0 0.5rem !important;
    display: inline-block !important;
}

.navbar-brand img {
    max-height: 100px !important;
    max-width: 80vw;
    transition: all 0.3s ease;
}

#mainNav.navbar-shrink .navbar-brand img {
    max-height: 80px !important;
}

.navbar-nav .nav-link {
    color: #000000 !important;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 3.2rem 1rem 0.3rem !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link.active {
    color: #fff !important;
    font-weight: 400;
    border-bottom: 0.175rem solid #fff;
}

/* ==================== HERO SECTION ==================== */
.page-top {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: 4rem auto;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.page-top .container {
    position: relative;
    z-index: 2;
}

.page-top h1 {
    font-size: 1rem;
}

.page-top .main-sentence {
  font-size: 444%;
  /* line-height: 111%; */
  /* margin: 0 0 15% 0; */
  font-weight: 400;
  /* text-transform: uppercase;  */
  /*text-shadow: -3px -2px 5px rgb(255 255 255 / 50%);
   letter-spacing: 0.8rem; */
  /* background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
          background-clip: text; */
}

.page-top .sub-sentence {
  /* font-family: 'poppins';
	text-transform: uppercase;
	text-shadow: 0 0 0 rgba(0,0,0,0.0001); */
  font-size: 180%;

  /* line-height: 111%; */
  /* margin: 8% 0; */
  /* letter-spacing: 0.8rem; */
  /* background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0)); */
  /* -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
          background-clip: text; */
}

.page-top .sub-sentence span {
  white-space: nowrap;
}

.page-top .sub-sentence > span:first-child {
  display: block;
  text-indent: 5px;
  font-size: 145%;
}

.page-top .sub-sentence .rw-words {
  /* width: 100%; */
  height: 100px;
  -webkit-perspective: 800px;
  perspective: 800px;
  font-family: "Poppins";
  text-transform: uppercase;
}
.page-top .sub-sentence .rw-words span {
  position: absolute;
  left: 0vw;
  width: 100%;
  opacity: 0;
  white-space: nowrap;
  overflow: hidden;
  margin: 1rem auto;
}
.page-top .sub-sentence .rw-words-1 span {
  font-size: 150%;
  /* line-height: 200%; */
  /* margin: 4% 0 0 0; */
  -webkit-animation: rotateWords 21s linear infinite 0s;
  -ms-animation: rotateWords 21s linear infinite 0s;
  animation: rotateWords 21s linear infinite 0s;
}

.page-top .sub-sentence .rw-words span:nth-child(2) {
  -webkit-animation-delay: 3s;
  -ms-animation-delay: 3s;
  animation-delay: 3s;
}
.page-top .sub-sentence .rw-words span:nth-child(3) {
  -webkit-animation-delay: 6s;
  -ms-animation-delay: 6s;
  animation-delay: 6s;
}
.page-top .sub-sentence .rw-words span:nth-child(4) {
  -webkit-animation-delay: 9s;
  -ms-animation-delay: 9s;
  animation-delay: 9s;
}
.page-top .sub-sentence .rw-words span:nth-child(5) {
  -webkit-animation-delay: 12s;
  -ms-animation-delay: 12s;
  animation-delay: 12s;
}
.page-top .sub-sentence .rw-words span:nth-child(6) {
  -webkit-animation-delay: 15s;
  -ms-animation-delay: 15s;
  animation-delay: 15s;
}
.page-top .sub-sentence .rw-words span:nth-child(7) {
  -webkit-animation-delay: 18s;
  -ms-animation-delay: 18s;
  animation-delay: 18s;
}

@-webkit-keyframes rotateWords {
    0% {
        opacity: 0;
        -webkit-animation-timing-function: ease-in;
        width: 0px;
    }
    4% {
        opacity: 1;
        -webkit-animation-timing-function: ease-out;
        width: 100%;
    }
    12% {
        opacity: 1;
    }
    14% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
@-ms-keyframes rotateWords {
    0% {
        opacity: 0;
        -ms-animation-timing-function: ease-in;
        width: 0px;
    }
    4% {
        opacity: 1;
        -ms-animation-timing-function: ease-out;
        width: 100%;
    }
    12% {
        opacity: 1;
    }
    14% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
@keyframes rotateWords {
    0% {
        opacity: 0;
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        width: 0px;
    }
    4% {
        opacity: 1;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        width: 100%;
    }
    12% {
        opacity: 1;
    }
    14% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 400;
    padding: 1.25rem 2rem;
    font-size: 80%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
}

.btn-primary:hover {
    background-color: #c9245c;
    border-color: #c9245c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(237, 47, 89, 0.4);
}

/* ==================== SECTIONS ==================== */
.section-padding {
    padding: 2em 0;
    min-height: auto;
}

.section-heading {
    float: left;
    width: 100%;
    padding-bottom: 5px;
    margin-bottom: 5px;
    clear: both;
}

.section-heading h2 {
    font-size: 2.5rem;
    font-weight: 300;
    text-transform: uppercase;
    position: relative;
    display: block;
    line-height: 1.5;
    padding: 2rem 0;
}

.section-heading h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 80px;
    height: 2px;
    background: #ed2f59;
    left: 50%;
    margin-left: -40px;
    bottom: 0;
}

.row-bottom-padded-lg {
    padding-bottom: 2rem;
}

/* Bootstrap 4 compatibility */
.no-gutters {
    margin-right: 0;
    margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}
@media (min-width: 992px) {
    .text-lg-left {
        text-align: left !important;
    }
}

/* Hero text colors */
.color-t1 { color: #ed2f59; }
.color-t3 { color: #fff; }

/* Left vertical red divider in content rows */
.lvr {
    border-left: 2px solid #ed2f59;
    height: 50%;
    position: absolute;
    top: 25%;
    padding-right: 10px;
}

/* Instructor paragraph top border */
.p-tb {
    border-top: 2px solid #ed2f59;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .hero-line-2 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* ==================== INSTRUCTOR SECTION ==================== */
.instructor-section .instructorimg {
    border: 2px solid #545b62;
    border-radius: 50%;
    box-shadow: 0 0 6px 6px #6c757d;
    width: 260px;
    height: 260px;
    max-width: 70vw;
    max-height: 70vw;
    object-fit: cover;
    object-position: top center;
    display: block;
    margin: 2rem auto 1rem;
}

.instructor-section .instructor-title {
    font-size: 2rem;
    color: #ed2f59;
    text-transform: uppercase;
    padding-left: 2rem;
    margin: 2rem 0 0 0;
}

.instructor-section .instructor-pet-title {
    font-size: 1rem;
    color: #6b6b6b;
    text-transform: uppercase;
    padding-left: 2rem;
}

.instructor-section .instructor-post {
    color: #fff;
    font-size: 1.25rem;
    padding-left: 2rem;
}

@media (max-width: 991px) {
    .instructor-section .instructor-title,
    .instructor-section .instructor-pet-title,
    .instructor-section .instructor-post {
        text-align: center;
        padding-left: 0;
    }
}

/* ==================== CONTACT SECTION ==================== */
.contact-section .card {
    border: 0;
    border-left: 0.15rem solid #ed2f59;
    background-color: #f8f9fa !important;
    border-radius: 0 !important;
}

.contact-section .card i {
    color: #ed2f59;
    margin: 1rem auto;
    font-size: 2rem;
    display: block;
}

.contact-section .card a {
    color: #000;
    text-decoration: none;
}

.contact-section .card a:hover {
    text-decoration: underline;
}

.gmap {
    min-height: 400px;
    border: 0;
    height: 100%;
    width: 100%;
}

/* ==================== SECTION BACKGROUNDS ==================== */
.about-section {
    background-color: var(--dark-bg);
    color: white;
}

.instructor-section {
    background-color: var(--dark-bg);
    color: white;
}

.approach-section {
    background-color: var(--dark-bg);
    color: white;
}

.reviews-section {
    background-color: var(--dark-bg);
    color: white;
    min-height: 50vh;
}

.contact-section {
    background-color: var(--dark-bg);
    color: white;
    min-height: 50vh;
}

/* ==================== SECTION CONTENT STYLES ==================== */
.about-section p,
.instructor-section p,
.approach-section p {
    margin: 0 0 2rem 2rem;
    color: #fff;
    font-size: 1rem;
}

.about-section img,
.instructor-section img,
.approach-section img {
    max-height: 20rem;
    object-fit: cover;
}

@media only screen and (max-width: 992px) {
    .about-section img,
    .instructor-section img,
    .approach-section img {
        max-height: 10rem;
    }
}

/* ==================== SOCIAL STYLES ==================== */
.social {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social li {
    display: inline-block;
    margin: 0 0.25rem;
}

.social li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social.social-circle a {
    background: #ED2F59;
    color: #fff;
    border-radius: 50%;
}

.social.social-circle a:hover {
    background: #c9245c;
    transform: translateY(-3px);
}

/* ==================== FOOTER ==================== */
footer.footer {
    background-color: var(--primary-color) !important;
    padding: 1rem 0 !important;
    margin: 0 auto !important;
    text-align: center;
}

footer .container {
    margin: auto;
}

.footer h5 {
    color: #000 !important;
    font-weight: 400;
}

.footer .text-white-50,
.footer .text-white,
.footer a {
    color: #fff !important;
    text-decoration: none;
}

.footer .social-icon {
    color: #fff !important;
    font-size: 1.5rem;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.footer .social-icon:hover {
    transform: scale(1.2);
}

.copyright {
    font-size: 0.8rem !important;
    color: #fff !important;
}

.copyright a,
.copyright span {
    color: #fff !important;
    text-decoration: none;
}


.footer-menu ul { 
    padding: 0;
    margin: 0;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1rem;
}
.footer-menu ul li { 
    list-style-type: none; 
    display: inline; 
    font-size: 12px;
    border-right: thin solid #fff;
    padding: 0 0.5rem 0 0.5rem;
}
.footer-menu ul li a {
    color: #fff;
    line-height: 15px;
    text-decoration: none;
    font-weight: normal;
}
.footer-menu ul li a:hover { color: #fff; text-decoration: none; }
.footer-menu ul li:first-child { padding: 0 0.5rem 0 0; }
.footer-menu ul li:last-child { border-right: none; }


footer .list-unstyled li a {
    color: #fff !important;
    font-size: 12px;
    line-height: 15px;
    text-decoration: none;
    font-weight: normal;
}

footer .list-unstyled li a:hover {
    color: #fff !important;
    text-decoration: none;
}

footer hr {
    border-color: rgba(255, 255, 255, 0.2);
}

/* ==================== REVIEWS SECTION ==================== */
.review {
    padding: 10px;
    margin: 20px 10px;
    text-align: left;
}

.review .pic {
    width: 132px;
    height: 132px;
    position: relative;
    margin: auto;
}

.review .pic img {
    border: 2px solid #545b62;
    border-radius: 50%;
    box-shadow: 0 0 6px 6px #6c757d;
    height: auto;
    width: 100%;
    margin: -20px 0 0 0;
    text-align: left;
}

.review .review-content {
    display: table;
    position: relative;
    margin: auto;
}

.review .review-content:before {
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: -40px !important;
    left: -5px;
    font-size: 300%;
    color: #545b62;
    z-index: -1 !important;
}

.review .review-title {
    font-size: 24px;
    color: var(--primary-color);
    text-transform: uppercase;
}

.review .age-star {
    font-size: 1rem;
    font-weight: 300;
    color: #fff;
    border-left: 1px solid #6c757d;
    margin-left: 5px;
    padding-left: 5px;
    text-transform: none;
}

.review .description {
    font-size: 1rem;
    color: #fff;
    line-height: 1.6rem;
    margin: auto;
    font-style: italic;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
}

.owl-theme .owl-nav {
    margin-top: 2rem;
}

.owl-theme .owl-nav .owl-prev,
.owl-theme .owl-nav .owl-next {
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.owl-theme .owl-nav .owl-prev:hover,
.owl-theme .owl-nav .owl-next:hover {
    background: #c9245c;
}

.owl-theme .owl-dots .owl-dot span {
    background: var(--primary-color);
    width: 10px;
    height: 10px;
    transition: all 0.2s ease;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #ffffff;
    width: 14px;
    height: 14px;
}

/* ==================== HERO SECTION CLASSES ==================== */
.page-top {
    background-image: url('../images/eacbg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: "Great Vibes", cursive !important;
}

.main-sentence {
    font-family: 'Great Vibes', cursive;
}

.hero-subtitle {
    margin-top: 2rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-hero {
    margin-top: 2rem;
    padding: 1.25rem 2rem !important;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
}

/* ==================== INSTRUCTOR IMAGE (removed - use .instructorimg) ==================== */

/* ==================== REVIEWS SECTION ==================== */
.loading-message {
    color: #fff;
    text-align: center;
    padding: 2rem;
}

.debug-status {
    color: #999;
    font-size: 0.75rem;
}

/* ==================== CONTACT SECTION ==================== */
.contact-address {
    text-align: left;
}

.contact-link {
    color: #fff;
}

/* .map-iframe replaced by .gmap — see CONTACT SECTION above */

/* ==================== REVIEW IMAGE ==================== */
.review-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-reviews-message {
    color: #fff;
    text-align: center;
    padding: 2rem;
}

/* ==================== POLICY PAGES ==================== */
.policy-header {
    background-color: #2a2d31;
    padding: 110px 0 0;
    border-bottom: 3px solid #ed2f59;
    display: flex;
    align-items: center;
    min-height: 220px;
}

.policy-header h1 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0.35rem;
}

.policy-header p {
    color: #adb5bd;
    margin: 0;
    font-size: 0.92rem;
}

.policy-text-container {
    line-height: 1.85;
    font-size: 1rem;
    padding: 2.5rem 0;
}

.policy-text-container p {
    color: #d0d3d6;
    margin-bottom: 1rem;
    margin-left: 0;
}

.policy-section-heading {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 400;
    text-transform: uppercase;
    margin-top: 2.2rem;
    margin-bottom: 0.6rem;
}

.policy-last-updated {
    margin-top: 2.5rem;
    font-size: 0.88rem;
    color: #888;
    border-top: 1px solid #444;
    padding-top: 1rem;
}

.policy-link {
    color: #ed2f59;
    text-decoration: none;
}

.policy-link:hover {
    text-decoration: underline;
}


/* Duplicate footer rules removed - use footer.footer above */

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icon:hover {
    background: #c9245c;
    transform: translateY(-3px);
}

/* ==================== UTILITY CLASSES ==================== */
.rounded-lg {
    border-radius: var(--border-radius);
}

.shadow {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* ==================== ANIMATIONS ==================== */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ==================== SCROLLSPY ==================== */
.nav-link.active {
    color: white !important;
    font-weight: 600;
    border-bottom: 3px solid white;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-link {
        padding: 0.45rem 1rem !important;
        margin: 0 !important;
        font-size: 0.9rem;
    }

    .main-title {
        font-size: 2rem;
    }

    .page-top {
        margin-top: 60px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .page-top {
        height: auto;
        padding: 8rem 0 4rem;
    }
    
    .review-card {
        margin: 0.5rem;
    }
    
    .contact-card {
        margin-bottom: 1.5rem;
    }
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .navbar, .footer {
        display: none;
    }
    
    body {
        margin: 0;
        padding: 0;
    }
}
