/* Page-specific styles for index.html - fonts loaded via base.css */
:root {
    --off_black: #040302;
    --darkest_brown: #242011;
    --dark_olive: #484B28;
    --light_olive: #6F714C;
    --plaster: #E4E2D4;
    --dark_concrete: #969481;
    --dark_concrete_trans: rgba(150, 148, 129, .3);
    --dark_concrete_trans2: rgba(150, 148, 129, .6);
    --light_concrete: #C4C0AB;
    --light_concrete_trans: rgba(196, 192, 171, .3);
    --light_concrete_trans2: rgba(196, 192, 171, .5);
    --metc_red: #DE240A;
    --metc_gold: #D59341;

    --persian-green: #1E9B95ff;
    --verdigris: #3DB3ABff;
    --dark-cyan: #169A94ff;
    --dark-cyan-2: #0D9690ff;
    --light-sea-green: #30B2AAff;
    --light-sea-green_trans: rgba(48, 178, 170, .3);
    --light-sea-green_trans2: rgba(48, 178, 170, .5);
    --dark-cyan-3: #11908Cff;
    --tiffany-blue: #75CEC3ff;
    --dark-cyan-4: #0A8683ff;
    --light-sea-green-2: #26A49Dff;
    --tiffany-blue-2: #69CBC1ff;
    --friend_red: #b80073;
    --friend_pink: #ff70c2;
    --friend_orange: #ffa17a;
    --friend_yellow: #f9f871;
    --friend_blue: #718bc5;
    --friend_purple: #b88dee;


    --purple-pizzazz: #EE5ED2ff;
    --rose-pink: #F36BD9ff;
    --dark-magenta: #A20B82ff;
    --razzle-dazzle-rose: #E055C6ff;
    --razzle-dazzle-rose_trans: rgb(224, 85, 198, .8);
    --mardi-gras: #8C0571ff;
    --fandango: #AC138Bff;
    --razzle-dazzle-rose-2: #E24BC2ff;
    --fandango-2: #B31691ff;
    --steel-pink: #CE34ABff;
    --fandango-3: #B21D92ff;

    /* Page-specific glow for purple theme */
    --shadow-glow-pink: 0 0 30px rgba(238, 94, 210, 0.4);

    /* Navbar/Dropdown theming */
    --navbar-bg: var(--purple-pizzazz);
    --dropdown-bg: var(--fandango);
    --dropdown-text: var(--metc-white);
}

body {
    width: 100%;
    height: 100%;
    background: url("../images/purple_bg_plaster.b18947bc06d7.jpeg") no-repeat center center fixed;
    background-color: transparent !important;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
    z-index: 2;
}

.navbar {
    background-color: var(--purple-pizzazz);
}

#home-section {
    background-color: var(--razzle-dazzle-rose_trans);
}

#mission-section{
    background-color: var(--razzle-dazzle-rose_trans);
}

#about-section{
    background-color: var(--razzle-dazzle-rose_trans);
}

#media-section{
    background-color: var(--razzle-dazzle-rose_trans);
}

.who-background, .who-background-highlight {
  position: relative;
}

.who-background{
    display: inline-block;
}

.who-background:before{
    content: " ";
    display: block;
    height: 100%;
    width: 100%;
    margin-left: -2px;
    position: absolute;
    border-radius: 2%;
    padding: 10px;
    background-image: linear-gradient(
        -100deg,
        rgba(255, 20, 0, 0.2),
        rgba(255, 20, 0, 0.7) 95%,
        rgba(255, 20, 0, 0.1)
    );
}

.highlight-olive {
  background-image: linear-gradient(100deg,rgba(72, 75, 40, 1) 10%, rgba(111, 113, 76, 1) 60%, rgba(150, 148, 129, 1) 100%);
    padding-left: 5px;
    border-radius: 5px;
}

.highlight-olive-light{
    background: #6F714C;
    background: linear-gradient(100deg,rgba(111, 113, 76, 1) 10%, rgba(150, 148, 129, 1) 60%, rgba(196, 192, 171, 1) 100%);
    padding-left: 5px;
    border-radius: 5px;
}

.curve {
	width: 25%;
	height: auto;
	float: left;
	margin-right:2rem;
	shape-outside:circle();
}

#mc-embedded-subscribe {
    background-color: var(--plaster);
}

#link-ad-top{
    color: var(--dark_olive);
}

.card_background{
    background-color: var(--razzle-dazzle-rose_trans);
}

.card1{
    background-color: var(--razzle-dazzle-rose_trans);
}

.card2{
    background-color: var(--plaster);
}

.small_font{
    font-size: .85em;
}

.slide_in_from_left {
  display: inline-block;
  margin: 0 0.5rem;

  animation: slideInLeft; /* referring directly to the animation's @keyframe declaration */
  animation-duration: 2s; /* don't forget to set a duration! */
    animation-fill-mode: backwards;
}

/* ========================================
   INDEX PAGE - HERO SECTION
   ======================================== */
.hero-index {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-3xl) var(--space-lg);
}

.hero-index .hero-side-left,
.hero-index .hero-side-right {
    position: absolute;
    top: 0;
    height: 150%;
    width: auto;
    max-width: 60%;
    pointer-events: none;
    z-index: 1;
}

.hero-index .hero-side-left {
    left: 0;
}

.hero-index .hero-side-right {
    right: 0;
}

/* Hide hero side images on mobile */
@media (max-width: 768px) {
    .hero-index .hero-side-left,
    .hero-index .hero-side-right {
        display: none;
    }
}

.hero-index::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(238, 94, 210, 0.15),
        rgba(179, 22, 145, 0.2)
    );
    pointer-events: none;
}

.hero-index .hero-content {
    position: relative;
    z-index: 2;
    color: var(--metc-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-index .hero-title {
    font-family: var(--font-display);
    color: var(--metc-white);
}

.hero-index .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Scroll indicator - raspberry arrow */
.hero-index .scroll-indicator {
    color: #E30B5D;
}

.hero-index .scroll-indicator svg {
    opacity: 1;
    filter: drop-shadow(0 2px 4px rgba(227, 11, 93, 0.5));
}

/* Enhanced cards for index page */
.index-card {
    background: var(--razzle-dazzle-rose_trans);
    backdrop-filter: var(--glass-blur-md);
    -webkit-backdrop-filter: var(--glass-blur-md);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-normal),
                box-shadow var(--transition-normal);
    overflow: hidden;
}

.index-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), var(--shadow-glow-pink);
}

/* Section enhancements */
#home-section,
#mission-section,
#about-section,
#media-section {
    position: relative;
}

/* Gradient overlay for sections */
.section-gradient-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(140, 5, 113, 0.1) 100%
    );
    pointer-events: none;
}

/* Enhanced navbar for purple theme */
.navbar {
    backdrop-filter: var(--glass-blur-sm);
    -webkit-backdrop-filter: var(--glass-blur-sm);
}

/* Button style for index page */
.btn-index {
    background: linear-gradient(135deg, var(--purple-pizzazz), var(--fandango));
    border: none;
    border-radius: var(--radius-md);
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--metc-white);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    text-decoration: none;
    display: inline-block;
}

.btn-index:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow-pink);
    color: var(--metc-white);
}

/* Decorative floating elements */
.floating-decoration {
    position: absolute;
    border-radius: var(--radius-circle);
    opacity: 0.1;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* ========================================
   NEWSLETTER SECTION
   ======================================== */
.newsletter-section {
    background: linear-gradient(
        135deg,
        var(--mardi-gras) 0%,
        var(--fandango) 50%,
        var(--razzle-dazzle-rose) 100%
    );
    padding: var(--space-2xl) 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(
        ellipse,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 60%
    );
    pointer-events: none;
}

.newsletter-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: var(--glass-blur-lg);
    -webkit-backdrop-filter: var(--glass-blur-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--metc-white);
    margin-bottom: var(--space-sm);
}

.newsletter-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

@media (min-width: 576px) {
    .newsletter-form {
        flex-direction: row;
        align-items: stretch;
    }
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.15);
    color: var(--metc-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--metc-white);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.newsletter-btn {
    padding: 1rem 2rem;
    background: var(--metc-white);
    color: var(--fandango);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: var(--friend_yellow);
    color: var(--mardi-gras);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.newsletter-btn:active {
    transform: translateY(0);
}

/* ========================================
   FOOTER SECTION
   ======================================== */
.footer-main {
    background: linear-gradient(
        180deg,
        var(--mardi-gras) 0%,
        #5a0449 100%
    );
    padding: var(--space-2xl) 0 var(--space-lg);
    color: var(--metc-white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: var(--space-lg);
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-logo {
    max-width: 120px;
    height: auto;
    filter: brightness(1.1);
    transition: filter var(--transition-normal);
}

.footer-logo:hover {
    filter: brightness(1.3);
}

.footer-tagline {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.footer-column h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--metc-white);
    margin-bottom: var(--space-md);
    position: relative;
    padding-bottom: var(--space-sm);
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--purple-pizzazz);
    border-radius: var(--radius-pill);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-xs);
    font-size: 0.95rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--friend_pink);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-sm);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-circle);
    transition: all var(--transition-normal);
}

.footer-social a:hover {
    background: var(--purple-pizzazz);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(238, 94, 210, 0.4);
}

.footer-social img {
    width: 24px;
    height: 24px;
    filter: brightness(1.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: var(--space-md);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--friend_pink);
}

/* ========================================
   MONTY PYTHON STYLE MUSE HEADS
   ======================================== */
.muse-heads-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.muse-head {
    position: fixed;
    width: 150px;
    height: 150px;
    opacity: 0;
    pointer-events: none;
    transition: none;
}

.muse-head img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(3px 3px 5px rgba(0,0,0,0.3));
}

/* Pop from left */
.muse-head.pop-from-left.active {
    animation: popFromLeft 4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

@keyframes popFromLeft {
    0% {
        transform: translateX(0) rotate(-10deg);
        opacity: 0;
    }
    15% {
        transform: translateX(140px) rotate(5deg);
        opacity: 1;
    }
    30% {
        transform: translateX(120px) rotate(-3deg);
    }
    50% {
        transform: translateX(130px) rotate(8deg) scale(1.1);
        opacity: 1;
    }
    70% {
        transform: translateX(125px) rotate(-5deg);
        opacity: 1;
    }
    85% {
        transform: translateX(140px) rotate(3deg);
        opacity: 1;
    }
    100% {
        transform: translateX(0) rotate(-10deg);
        opacity: 0;
    }
}

/* Pop from right */
.muse-head.pop-from-right.active {
    animation: popFromRight 4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

@keyframes popFromRight {
    0% {
        transform: translateX(0) rotate(10deg);
        opacity: 0;
    }
    15% {
        transform: translateX(-140px) rotate(-5deg);
        opacity: 1;
    }
    30% {
        transform: translateX(-120px) rotate(3deg);
    }
    50% {
        transform: translateX(-130px) rotate(-8deg) scale(1.1);
        opacity: 1;
    }
    70% {
        transform: translateX(-125px) rotate(5deg);
        opacity: 1;
    }
    85% {
        transform: translateX(-140px) rotate(-3deg);
        opacity: 1;
    }
    100% {
        transform: translateX(0) rotate(10deg);
        opacity: 0;
    }
}

/* Pop from top */
.muse-head.pop-from-top.active {
    animation: popFromTop 4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

@keyframes popFromTop {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    15% {
        transform: translateY(140px) rotate(-8deg);
        opacity: 1;
    }
    30% {
        transform: translateY(120px) rotate(5deg);
    }
    50% {
        transform: translateY(130px) rotate(-5deg) scale(1.1);
        opacity: 1;
    }
    70% {
        transform: translateY(125px) rotate(3deg);
        opacity: 1;
    }
    85% {
        transform: translateY(140px) rotate(-3deg);
        opacity: 1;
    }
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
}

/* Pop from bottom */
.muse-head.pop-from-bottom.active {
    animation: popFromBottom 4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

@keyframes popFromBottom {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    15% {
        transform: translateY(-140px) rotate(8deg);
        opacity: 1;
    }
    30% {
        transform: translateY(-120px) rotate(-5deg);
    }
    50% {
        transform: translateY(-130px) rotate(5deg) scale(1.1);
        opacity: 1;
    }
    70% {
        transform: translateY(-125px) rotate(-3deg);
        opacity: 1;
    }
    85% {
        transform: translateY(-140px) rotate(3deg);
        opacity: 1;
    }
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
}

/* Individual muse personality tweaks */
.muse-jessica img {
    filter: drop-shadow(3px 3px 5px rgba(0,0,0,0.3))
            sepia(10%) saturate(120%);
}

.muse-christine img {
    filter: drop-shadow(3px 3px 5px rgba(0,0,0,0.3))
            sepia(5%) saturate(110%);
}

.muse-claire img {
    filter: drop-shadow(3px 3px 5px rgba(0,0,0,0.3))
            sepia(8%) saturate(115%);
}

/* ========================================
   VINTAGE FLOWERS - Hero Background
   ======================================== */
.hero-flowers {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.vintage-flower {
    position: absolute;
    opacity: 0.6;
    filter: drop-shadow(0 4px 8px rgba(90,4,73,0.3));
}

.flower-group {
    transform-origin: center center;
}

/* Large flower - bottom left */
.flower-1 {
    width: 180px;
    height: 180px;
    bottom: 5%;
    left: 5%;
    animation: flowerSway1 8s ease-in-out infinite, flowerFade 12s ease-in-out infinite;
}

/* Medium flower - top right */
.flower-2 {
    width: 140px;
    height: 140px;
    top: 10%;
    right: 8%;
    animation: flowerSway2 10s ease-in-out infinite, flowerFade 14s ease-in-out infinite 2s;
}

/* Small flower - middle right */
.flower-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 15%;
    animation: flowerSway1 7s ease-in-out infinite, flowerFade 11s ease-in-out infinite 1s;
}

/* Tiny flower - top left */
.flower-4 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 12%;
    animation: flowerSway2 9s ease-in-out infinite, flowerFade 13s ease-in-out infinite 3s;
}

/* Extra flower - bottom right */
.flower-5 {
    width: 120px;
    height: 120px;
    bottom: 15%;
    right: 5%;
    animation: flowerSway1 11s ease-in-out infinite, flowerFade 10s ease-in-out infinite 1.5s;
}

@keyframes flowerSway1 {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(5deg) scale(1.02);
    }
    50% {
        transform: rotate(-3deg) scale(0.98);
    }
    75% {
        transform: rotate(4deg) scale(1.01);
    }
}

@keyframes flowerSway2 {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    33% {
        transform: rotate(-4deg) scale(1.03);
    }
    66% {
        transform: rotate(6deg) scale(0.97);
    }
}

@keyframes flowerFade {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.75;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .vintage-flower {
        opacity: 0.5;
    }
    .flower-1 { width: 120px; height: 120px; }
    .flower-2 { width: 100px; height: 100px; }
    .flower-3 { width: 70px; height: 70px; }
    .flower-4 { width: 50px; height: 50px; }
    .flower-5 { width: 80px; height: 80px; }
}

@media (max-width: 480px) {
    .flower-3, .flower-4 {
        display: none;
    }
}

/* ========================================
   SUBTLE TESTIMONIAL QUOTES
   ======================================== */
.subtle-quote {
    max-width: 500px;
    padding: 1.5rem 2rem;
    margin: 0 auto;
    text-align: center;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.subtle-quote:hover {
    opacity: 1;
}

.subtle-quote-text {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--darkest_brown);
    position: relative;
    margin-bottom: 0.75rem;
}

.subtle-quote-text::before {
    content: '«';
    font-size: 1.5rem;
    opacity: 0.4;
    margin-right: 0.25rem;
}

.subtle-quote-text::after {
    content: '»';
    font-size: 1.5rem;
    opacity: 0.4;
    margin-left: 0.25rem;
}

.subtle-quote-author {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--dark_olive);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.subtle-quote-role {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--dark_concrete);
    font-style: italic;
    text-transform: none;
}

/* Position variations */
.subtle-quote.quote-left {
    margin-left: 5%;
    margin-right: auto;
    text-align: left;
}

.subtle-quote.quote-right {
    margin-right: 5%;
    margin-left: auto;
    text-align: right;
}

/* Responsive */
@media (max-width: 768px) {
    .subtle-quote {
        max-width: 90%;
        padding: 1rem;
    }

    .subtle-quote.quote-left,
    .subtle-quote.quote-right {
        margin: 0 auto;
        text-align: center;
    }

    .subtle-quote-text {
        font-size: 0.95rem;
    }
}
