/* ========================================
   GLOBAL STYLES & VARIABLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    touch-action: manipulation;
    -ms-touch-action: manipulation;
}

body {
    touch-action: pan-y;
    -ms-touch-action: pan-y;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

:root {
    --cream-light: #FEF8F1;      /* lightest backgrounds */
    --cream-medium: #F4EDE3;     /* accents and alternate backgrounds */
    --maroon-light: #7A2134;     /* primary maroon accent */
    --maroon-dark: #521421;      /* strong maroon for text/dark elements */
    --gradient: linear-gradient(135deg, var(--maroon-light) 0%, var(--maroon-dark) 100%);
}

@font-face {
    font-family: 'Ananias';
    src: url('Ananias.ttf') format('truetype');
}

@font-face {
    font-family: 'Nixie';
    src: url('NixieOne.ttf') format('truetype');
}

body {
    font-family: 'Nixie', sans-serif;
    line-height: 1.6;
    color: var(--maroon-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}



/* ========================================
   GLOBAL COMPONENTS
   ======================================== */

/* Navigation - HAMBURGER MENU ALWAYS */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out; 
}

.navbar.hidden {
    transform: translateY(-100%);
}


.nav-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.nav-brand {
    font-size: 32px;
    font-weight: bold;
    background: var(--maroon-light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Ananias', cursive;
    display: flex;
    align-items: center;
    gap: 10px;   
}

.nav-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* Hamburger Menu - Always Visible */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--maroon-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation Links - Slide-in Menu */
.nav-links {
    position: fixed;
    top: 85px;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: calc(100vh - 85px);
    background: white;
    flex-direction: column;
    padding: 40px 30px;
    gap: 25px;
    box-shadow: -5px 0 25px rgba(0,0,0,0.15);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: flex;
}

.nav-links.active {
    right: 0;
}

.nav-links a {
    color: var(--maroon-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
    font-size: 18px !important;
    padding: 12px 0;
    border-bottom: 1px solid var(--cream-medium);
}

.nav-links a:last-child {
    border-bottom: none;
}

.nav-links a:hover {
    color: var(--maroon-light);
}

/* Footer */
.footer {
    background: var(--maroon-light);
    color: white;
    padding: 40px 0;
    text-align: center;
}

/* Shared Section Title */
.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--maroon-dark);
    font-family: 'Ananias', cursive;
}

/* Shared CTA Button */
.cta-button {
    padding: 15px 40px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeInUp 1s ease 0.4s backwards;
}

a.cta-button,
a.cta-button:visited,
a.cta-button:hover,
a.cta-button:active,
a.cta-button:focus {
    text-decoration: none !important;
}

@media (max-width: 768px) {
    .cta-button {
        text-decoration: none;
    }
}



.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(166, 94, 46, 0.4);
}

/* ========================================
   HOME PAGE - LOGO INTRO
   ======================================== */

.logo-intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
}

.play-intro {
    animation: fadeIntro 1.75s ease-in-out forwards;
    pointer-events: auto;
}

@keyframes fadeIntro {
    0%, 70% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        pointer-events: none;
    }
}

.logo-container {
    transform: scale(8);
}

.play-logo {
    animation: zoomLogo 3s ease-in-out forwards;
}

@keyframes zoomLogo {
    0% {
        transform: scale(1);
    }
    70% {
        transform: scale(8);
    }
    100% {
        transform: scale(8);
    }
}

.logo-placeholder {
    width: 150px;
    height: 150px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: var(--maroon-dark);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.logo-intro-image {
    width: 150px;
    height: 150px;
    object-fit: contain;
    background: white;
    border-radius: 20px;
    padding: 20px;
}

/* Prevent body scroll when popup is open */
body.popup-open {
    overflow: hidden;
}

/* Full-screen overlay */
.popup-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Show overlay */
.popup-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

/* Popup container */
.popup-container {
    width: 98vw;
    max-width: 600px;
    max-height: 60vh;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

/* Desktop optimization for popup */
@media (min-width: 769px) {
    .popup-container {
        max-height: 85vh;
        max-width: 650px;
    }
    
    .popup-scrollable {
        padding: 30px 40px;
    }
}

/* Popup close button (X) */
.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    border: 2px solid var(--maroon-dark);
    color: var(--maroon-dark);
    font-size: 28px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 0;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    font-weight: bold;
}

.popup-close:hover {
    background: var(--maroon-dark);
    color: white;
    transform: rotate(90deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.popup-close:active {
    transform: rotate(90deg) scale(0.95);
}

/* Scrollable wrapper inside popup */
.popup-scrollable {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}



/* ========================================
   HOME PAGE - HERO SECTION
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cream-light);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.2) rotate(5deg);
    }
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--maroon-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
    font-family: 'Ananias', cursive;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 20px;
    color: var(--maroon-dark);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

/* ========================================
   HOME PAGE - STORY SECTION
   ======================================== */

.our-story {
    padding: 100px 0;
    background: var(--cream-light);
    position: relative;
    overflow: hidden;
}

.our-story-background {
    position: absolute;
    top: 500px;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('logo.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 60%;
    opacity: 0.09;
    pointer-events: none;
    z-index: 0;
}

/* Profile Picture Circle */
.profile-picture-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.profile-picture {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 4px solid white;
    position: relative;
    background: var(--cream-medium);
}

.profile-picture::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: var(--gradient);
    z-index: -1;
    opacity: 0.3;
}

.profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.profile-picture-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--maroon-light);
    background: var(--cream-medium);
}

/* Mobile optimization for profile picture */
@media (max-width: 768px) {
    .profile-picture {
        width: 120px;
        height: 120px;
        border: 3px solid white;
    }
    
    .profile-picture-placeholder {
        font-size: 50px;
    }
    
    .profile-picture-container {
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .profile-picture {
        width: 100px;
        height: 100px;
    }
    
    .profile-picture-placeholder {
        font-size: 40px;
    }
}

.our-story-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.5;
    color: var(--maroon-dark);
}

.our-story-content p {
    margin-bottom: 25px;
    text-align: justify;
}

.our-story-content p:last-child {
    margin-bottom: 0;
}

/* ========================================
   HOME PAGE - GALLERY SECTION
   ======================================== */

.gallery {
    padding: 100px 0;
    background: var(--cream-light);
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(214, 138, 61, 0.05) 0%, transparent 50%);
    animation: floatBackground 20s ease-in-out infinite;
}

@keyframes floatBackground {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(10%) translateY(-5%); }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.gallery-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    border-radius: 20px;
    mix-blend-mode: overlay;
}

.gallery-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(166, 94, 46, 0.25);
}

.gallery-item:hover::before {
    opacity: 0.15;
}

.gallery-item::after {
    content: '⤢';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--maroon-dark);
    opacity: 0;
    transform: scale(0.5) rotate(-45deg);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 2;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover::after {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.media-image,
.media-video {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover .media-image,
.gallery-item:hover .media-video {
    transform: scale(1.08);
}

.media-caption {
    padding: 25px;
    color: var(--maroon-dark);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    background: white;
    position: relative;
    z-index: 2;
    min-height: 90px;
    display: none;
    align-items: center;
}

.media-caption::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    width: 40px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.gallery-item .media-video {
    position: relative;
}

.gallery-item:has(.media-video)::after {
    content: '▶';
    font-size: 20px;
}

/* ========================================
   HOME PAGE - FULLSCREEN MEDIA MODAL
   ======================================== */

.media-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.media-modal.show {
    display: flex;
}

.modal-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    color: white;
    font-size: 36px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 2001;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-content {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.modal-media {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-media img {
    max-width: 90vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.modal-media video {
    max-width: 90vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.modal-media .media-placeholder {
    width: 80vw;
    height: 70vh;
    max-width: 1200px;
}

.modal-caption {
    color: white;
    font-size: 18px;
    text-align: center;
    max-width: 800px;
}

/* ========================================
   HOME PAGE - SUBSCRIBE SECTION
   ======================================== */

.subscribe {
    padding: 100px 0;
    background: var(--cream-light);
}

.subscribe-subtitle {
    text-align: center;
    color: var(--maroon-light);
    font-size: 18px;
    margin-bottom: 40px;
}

.subscribe-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.subscribe-form input {
    padding: 15px 25px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.2s;
}

.subscribe-form input:focus {
    outline: none;
    border-color: var(--maroon-dark);
}

.subscribe-form button {
    padding: 15px 40px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.2s, box-shadow 0.3s;
}

.subscribe-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(166, 94, 46, 0.4);
}

.subscribe-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 200px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f0eb 0%, #e8ddd4 100%);
    overflow: hidden;
}

.testimonials-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.testimonials-track {
    display: flex;
    gap: 15px;
    animation: scroll 40s linear infinite;
    width: fit-content;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    flex: 0 0 400px;
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #8b7355;
    text-align: right;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ========================================
   HOME PAGE - CONNECT SECTION
   ======================================== */

.connect {
    padding: 100px 0;
    background: var(--cream-medium);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px;
    background: white;
    border-radius: 20px;
    text-decoration: none;
    color: var(--maroon-light);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    min-width: 150px;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(166, 94, 46, 0.2);
    color: var(--maroon-dark);
}

.social-link svg {
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

.social-link span {
    font-weight: 600;
    font-size: 16px;
}

/* ========================================
   HOME PAGE - NOTIFICATION OVERLAY
   ======================================== */

.notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.notification-overlay.show {
    opacity: 1;
    pointer-events: all;
}

.notification-box {
    background: var(--cream-light);
    border-radius: 24px;
    padding: 80px 100px;
    text-align: center;
    max-width: 700px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(166, 94, 46, 0.4);
}

.notification-overlay.show .notification-box {
    transform: scale(1);
}

.notification-icon {
    font-size: 96px;
    margin-bottom: 32px;
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.notification-message {
    font-size: 56px;
    font-weight: 600;
    color: var(--maroon-dark);
    line-height: 1.3;
    margin-bottom: 20px;
}

.notification-submessage {
    font-size: 28px;
    color: var(--maroon-dark);
    margin-top: 16px;
}

/* ========================================
   ABOUT LIZ PAGE - HERO SECTION
   ======================================== */

.video-section {
    width: 100%;
    min-height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    padding: 0;
    margin: 0;
}

.video-container {
    width: 100%;
    max-width: 1200px;
    position: relative;
    padding: 0;
    margin: 0;
}

.video-container iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    display: block;
    margin: 0;
    padding: 0;
}

/* Mobile optimization for video - remove ALL extra space */
@media (max-width: 768px) {
    .video-section {
        padding: 0;
        margin: 0;
        min-height: 0;
        height: auto;
    }
    
    .video-container {
        width: 100%;
        padding: 0;
        margin: 0;
        height: auto;
    }
    
    .video-container iframe {
        width: 100%;
        height: auto;
        margin: 0;
        padding: 0;
        vertical-align: bottom;
    }
}

.about-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream-light);
    padding-top: 160px;
    padding-bottom: 20px;
}

.about-hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

/* Mobile spacing adjustments */
@media (max-width: 768px) {
    .about-hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 10px;
    }
    
    .about-detail-section {
        padding-top: 20px;
    }
    
    .our-story-content h3:first-of-type {
        margin-top: 0;
        padding-top: 0;
    }
}

/* ========================================
   ABOUT LIZ PAGE - MAIN CONTENT
   ======================================== */

.about-detail-section {
    padding: 40px 0 80px 0;
    background: var(--cream-light);
}

/* Mobile spacing reduction */
@media (max-width: 768px) {
    .about-detail-section {
        padding: 20px 0 60px 0;
    }
}

.about-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-detail-container {
    padding-top: 0;
}

.about-liz-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
    margin-top: 0;
}

.about-liz-image-wrapper {
    position: relative;
}

.about-liz-image-container {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
}

.about-liz-image-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: var(--gradient);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.about-liz-image-placeholder {
    width: 100%;
    height: 500px;
    background: var(--cream-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    color: var(--maroon-light);
    border-radius: 20px;
}

.about-liz-image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.about-liz-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--maroon-dark);
    font-family: 'Ananias', cursive;
    margin-bottom: 10px;
}

.about-liz-text h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--maroon-light);
    margin-bottom: 30px;
    font-style: italic;
}

.about-background {
    position: absolute;
    top: 100;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('logo.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 60%;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}

/* ========================================
   LIZ PROFILE CARDS (Meet Liz section)
   ======================================== */

.liz-profile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 18px;
    max-width: 900px;
    margin: 28px auto 48px;
}

.liz-profile-card {
    background: white;
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: 0 3px 16px rgba(82, 20, 33, 0.07);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.liz-profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    border-radius: 14px 14px 0 0;
}

.liz-profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(122, 33, 52, 0.12);
}

.liz-profile-card-number {
    font-family: 'Ananias', cursive;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--maroon-light);
    opacity: 0.4;
}

.liz-profile-card-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--maroon-dark);
    font-weight: 500;
    margin: 0;
}

@media (max-width: 860px) {
    .liz-profile-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

@media (max-width: 540px) {
    .liz-profile-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 20px auto 36px;
    }

    .liz-profile-card {
        padding: 20px 18px;
    }

    .liz-profile-card-text {
        font-size: 14px;
    }
}

       /* ========================================
           WHAT WE DO SECTION
           ======================================== */

        .what-we-do {
            padding: 100px 0;
            background: var(--cream-medium);
            position: relative;
            overflow: hidden;
        }

        .what-we-do::before {
            content: '';
            position: absolute;
            top: -80px;
            left: 0;
            width: 100%;
            height: 80px;
            background: var(--cream-light);
            clip-path: ellipse(55% 100% at 50% 0%);
        }

        .what-we-do::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: 0;
            width: 100%;
            height: 80px;
            background: var(--cream-light);
            clip-path: ellipse(55% 100% at 50% 100%);
            z-index: 1;
        }

        .what-we-do-inner {
            position: relative;
            z-index: 0;
        }

        .what-we-do-subtitle {
            text-align: center;
            font-size: 18px;
            color: var(--maroon-light);
            margin-bottom: 60px;
            font-style: italic;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .what-we-do-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .what-we-do-item {
            background: white;
            border-radius: 18px;
            padding: 32px 24px;
            box-shadow: 0 6px 30px rgba(82, 20, 33, 0.07);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 14px;
            transition: transform 0.35s ease, box-shadow 0.35s ease;
            position: relative;
            overflow: hidden;
        }

        .what-we-do-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--gradient);
            border-radius: 18px 0 0 18px;
        }

        .what-we-do-item:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 50px rgba(122, 33, 52, 0.15);
        }

        .what-we-do-number {
            font-family: 'Ananias', cursive;
            font-size: 13px;
            font-weight: 700;
            color: var(--maroon-light);
            opacity: 0.45;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .what-we-do-text {
            font-size: 16px;
            line-height: 1.65;
            color: var(--maroon-dark);
            font-weight: 500;
            margin: 0;
        }

        /* Responsive: 2 columns on tablet */
        @media (max-width: 1024px) {
            .what-we-do-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }

        /* Responsive: 1 column on mobile */
        @media (max-width: 600px) {
            .what-we-do {
                padding: 80px 0;
            }

            .what-we-do-grid {
                grid-template-columns: 1fr;
                gap: 16px;
                padding: 0 16px;
            }

            .what-we-do-item {
                padding: 24px 20px;
                flex-direction: row;
                align-items: flex-start;
                gap: 16px;
            }

            .what-we-do-number {
                flex-shrink: 0;
                padding-top: 2px;
            }

            .what-we-do-subtitle {
                font-size: 16px;
                margin-bottom: 40px;
                padding: 0 20px;
            }
        }

        @media (max-width: 480px) {
            .what-we-do-item {
                padding: 20px 18px;
            }

            .what-we-do-text {
                font-size: 15px;
            }
        }

/* ========================================
   ABOUT LIZ PAGE - CREDENTIALS SECTION
   ======================================== */

.credentials-section {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
}

.credentials-section h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--maroon-dark);
    font-family: 'Ananias', cursive;
    margin-bottom: 30px;
    text-align: center;
}

.about-hero-title {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--maroon-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
    font-family: 'Ananias', cursive;
}


.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.credential-item {
    display: flex;
    align-items: start;
    gap: 15px;
}

.credential-icon {
    font-size: 32px;
    color: var(--maroon-light);
    flex-shrink: 0;
}

.credential-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--maroon-dark);
    margin-bottom: 5px;
}

.credential-text p {
    font-size: 16px;
    color: var(--maroon-light);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   ABOUT LIZ PAGE - PHILOSOPHY SECTION
   ======================================== */

.philosophy-section {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-section h3 {
    font-size: 38px;
    font-weight: 700;
    color: var(--maroon-dark);
    font-family: 'Ananias', cursive;
    margin-bottom: 30px;
}

.philosophy-quote {
    font-size: 24px;
    line-height: 1.8;
    color: var(--maroon-dark);
    font-style: italic;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.philosophy-quote::before {
    content: '"';
    font-size: 80px;
    color: var(--maroon-light);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
}

.about-liz-cta {
    text-align: center;
    margin-top: 60px;
}

/* Remove diagonal pattern */
.about-detail-section .background-pattern {
    display: none;
}

.about-detail-container {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.our-story-content .about-background {
    display: none;
}

.our-story-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--maroon-dark);
    margin: 60px 0 30px 0;
    position: relative;
    padding-bottom: 15px;
    font-family: 'Ananias', cursive;
}

.our-story-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.our-story-content h3:first-of-type {
    margin-top: 0;
}

/* Mobile - reduce h3 top margin */
@media (max-width: 768px) {
/* =====================================================
   SMALLER HEADINGS ON MOBILE
   ===================================================== 
   
   Add these rules to your @media (max-width: 768px) section
   in styles.css
*/

@media (max-width: 768px) {
    
    /* ========================================
       GLOBAL HEADING SIZES - MOBILE
       ======================================== */
    
    /* Main hero/page titles */
    .hero-title,
    .offering-hero-title,
    .shop-hero-title {
        font-size: 36px !important;  /* was 40-50px */
    }

    .about-hero-title{
        font-size: 26px !important;
    }
    
    /* Section titles */
    .section-title {
        font-size: 32px !important;  /* was 36-48px */
    }
    
    /* Featured offering title */
    .featured-offering-title {
        font-size: 28px !important;  /* was 32-45px */
    }
    
    .featured-offering-subtitle {
        font-size: 22px !important;  /* was 30px */
    }
    
    /* About page headings */
    .about-liz-text h2 {
        font-size: 28px !important;  /* was 32px */
    }
    
    .about-liz-text h3 {
        font-size: 18px !important;  /* was 19-20px */
    }
    
    /* Content headings (h3 in story sections) */
    .our-story-content h3 {
        font-size: 24px !important;  /* was 26-32px */
    }
    
    /* Credentials section */
    .credentials-section h3 {
        font-size: 26px !important;  /* was 28-32px */
    }
    
    /* Philosophy section */
    .philosophy-section h3 {
        font-size: 28px !important;  /* was 30-38px */
    }
    
    /* Detail pages */
    .detail-content h3 {
        font-size: 26px !important;  /* was 28-32px */
    }
    
    /* Offering cards */
    .offering-title {
        font-size: 22px !important;  /* was 24px */
    }
    
    /* Painting titles */
    .painting-title {
        font-size: 26px !important;  /* was 28-48px */
    }
    
    /* Hero subtitles */
    .hero-subtitle {
        font-size: 16px !important;  /* was 16-20px */
    }
    
    .offering-hero-subtitle {
        font-size: 22px !important;  /* was 25px */
    }
    
}

/* ========================================
   EVEN SMALLER FOR VERY SMALL SCREENS
   ======================================== */

@media (max-width: 480px) {
    
    .hero-title,
    .offering-hero-title,
    .shop-hero-title {
        font-size: 28px !important;  /* Smaller on very small screens */
    }

    .about-hero-title{
        font-size: 22px !important;
    }

    .section-title {
        font-size: 28px !important;
    }
    
    .featured-offering-title {
        font-size: 24px !important;
    }
    
    .featured-offering-subtitle {
        font-size: 20px !important;
    }
    
    .our-story-content h3 {
        font-size: 22px !important;
    }
    
    .painting-title {
        font-size: 24px !important;
    }
}
}

.our-story-content p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: left;
    color: #3a2128;
}

.our-story-content .drop-cap::first-letter {
    font-size: 72px;
    line-height: 60px;
    float: left;
    margin: 8px 12px 0 0;
    color: var(--maroon-light);
    font-weight: bold;
}

.our-story-content .pull-quote {
    font-size: 24px;
    font-style: italic;
    color: var(--maroon-light);
    margin: 40px 0;
    padding: 30px 40px;
    background: white;
    border-left: 4px solid var(--maroon-light);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-radius: 0 10px 10px 0;
}

.our-story-content .section-divider {
    width: 100px;
    height: 2px;
    background: var(--gradient);
    margin: 50px auto;
    opacity: 0.3;
}

.our-story-content .emphasis {
    font-weight: 600;
    color: var(--maroon-dark);
}

.about-liz-cta {
    text-align: center;
    margin-top: 60px;
    padding: 50px 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.about-liz-cta p {
    font-size: 22px;
    color: var(--maroon-dark);
    margin-bottom: 30px;
}

/* ========================================
   ABOUT LIZ PAGE - VIDEO SECTION
   ======================================== */

.video-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream-medium);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(122, 33, 52, 0.04) 0%, transparent 50%);
    animation: floatBackground 25s ease-in-out infinite;
}

.video-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--maroon-dark);
    margin: 0 auto;
}

.video-wrapper::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    right: 40px;
    bottom: 40px;
    background: var(--gradient);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.15;
}

.video-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(122, 33, 52, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.video-wrapper:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 40px 100px rgba(122, 33, 52, 0.35);
}

.video-wrapper:hover::after {
    opacity: 1;
}

.video-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.video-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-wrapper:hover img {
    transform: scale(1.08);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--maroon-dark);
    padding-left: 6px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 2;
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.video-wrapper:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.15);
    background: white;
    box-shadow: 0 20px 60px rgba(122, 33, 52, 0.5);
}

.video-caption {
    margin-top: 40px;
    font-size: 22px;
    color: var(--maroon-dark);
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.video-caption::before {
    content: '✦';
    display: block;
    font-size: 16px;
    color: var(--maroon-light);
    margin-bottom: 15px;
    font-style: normal;
}

/* ========================================
   OFFERINGS PAGE - HERO SECTION
   ======================================== */

.offerings-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream-light);
    padding-top: 160px;
    padding-bottom: 10px;
}

.offerings-hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.offering-hero-title {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 5px;
    background: var(--maroon-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
    font-family: 'Ananias', cursive;
}

.offering-hero-subtitle {
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 5px;
    background: var(--maroon-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
    font-family: 'Ananias', cursive;
}
/* ========================================
   OFFERINGS PAGE - FEATURED OFFERING
   ======================================== */

.featured-offering-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream-light);
    padding: 10px 0;
    position: relative;
}

.featured-offering-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.featured-offering-image {
    width: 100%;
    height: 700px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    background: var(--cream-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    color: var(--maroon-light);
    position: relative;
}

.featured-offering-image::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: 30px;
    bottom: 30px;
    background: var(--gradient);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.2;
}

.featured-offering-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-offering-content {
    padding: 40px 0;
}

.featured-offering-title {
    font-size: 45px;
    font-weight: 800;
    color: var(--maroon-dark);
    margin-bottom: 30px;
    font-family: 'Ananias', cursive;
    line-height: 1.2;
}

.featured-offering-subtitle {
    font-size: 30px;
    font-weight: 800;
    color: var(--maroon-dark);
    margin-bottom: 30px;
    font-family: 'Ananias', cursive;
    line-height: 1.2;
}


.featured-offering-text {
    font-size: 24px;
    line-height: 1.6;
    color: var(--maroon-dark);
    margin-bottom: 25px;
}

.featured-offering-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--maroon-light);
    margin-bottom: 40px;
}

.featured-offering-button {
    display: inline-block;
    padding: 18px 50px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.offering-button.disabled {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
}


.featured-offering-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(166, 94, 46, 0.4);
}

/* ========================================
   OFFERINGS PAGE - GRID SECTION
   ======================================== */

.offerings-section {
    padding: 80px 0;
    background: var(--cream-medium);
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 40px auto 0;
    padding: 0 40px;
}

.offering-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.offering-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(166, 94, 46, 0.2);
}

.offering-image {
    width: 100%;
    height: 250px;
    background: var(--cream-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--maroon-light);
    overflow: hidden;
}

.offering-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offering-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.offering-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--maroon-dark);
    margin-bottom: 15px;
    font-family: 'Ananias', cursive;
}

.offering-text {
    font-size: 16px;
    color: var(--maroon-light);
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.offering-button {
    padding: 12px 30px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.3s;
}

.offering-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(166, 94, 46, 0.4);
}

/* ========================================
   OFFERING DETAIL PAGES - HERO SECTION
   ======================================== */

.detail-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream-light);
    padding-top: 160px;
    padding-bottom: 10px;
}

.detail-hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

/* ========================================
   OFFERING DETAIL PAGES - MAIN CONTENT
   ======================================== */

.detail-section {
    padding: 10px 0 80px 0;
    background: var(--cream-light);
}

.detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.detail-image-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.detail-image {
    width: 100%;
    height: 500px;
    background: var(--cream-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    color: var(--maroon-light);
}

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-content {
    max-width: 800px;
    margin: 0 auto;
}

.detail-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--maroon-dark);
    margin-bottom: 25px;
    text-align: justify;
}

.detail-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--maroon-dark);
    margin: 40px 0 20px;
    font-family: 'Ananias', cursive;
}

.detail-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.detail-content li {
    font-size: 18px;
    line-height: 1.8;
    color: var(--maroon-dark);
    margin-bottom: 15px;
}

.back-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.3s;
    margin-top: 40px;
}

.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(166, 94, 46, 0.4);
}

/* ========================================
   OFFERING DETAIL PAGES - CHECKOUT
   ======================================== */

.checkout-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 40px;
    background: var(--gradient);
    color: white !important;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    font-family: 'Nixie', sans-serif;
    box-shadow: 0 4px 14px rgba(122, 33, 52, 0.3);
}

.checkout-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(166, 94, 46, 0.4);
}

.checkout-link:active {
    transform: translateY(-1px);
}

.session-option {
    background: white;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.session-option h2 {
    color: var(--maroon-dark);
    margin-bottom: 15px;
}

.session-button {
    margin-top: 20px;
}

/* ========================================
   SHOP PAGE
   ======================================== */

body {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh;
}

.shop-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream-light);
    padding-top: 80px;
    padding-bottom: 40px;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
}

.shop-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(122, 33, 52, 0.05) 0%, transparent 50%);
    animation: floatBackground 20s ease-in-out infinite;
}

.shop-hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.shop-hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--maroon-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
    font-family: 'Ananias', cursive;
}

.shop-hero-subtitle {
    font-size: 22px;
    color: var(--maroon-dark);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.2s backwards;
    line-height: 1.6;
}

.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--maroon-light);
    font-size: 16px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.shop-section {
    padding: 0;
    background: var(--cream-light);
    position: relative;
}

.shop-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.paintings-grid {
    display: block;
}

.painting-card {
    min-height: 100vh;
    height: auto;
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    position: relative;
    scroll-snap-align: start;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.painting-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.painting-card:hover::before {
    opacity: 0.1;
}

.painting-image {
    width: 100%;
    height: 65vh;
    background: var(--cream-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    color: var(--maroon-light);
    overflow: hidden;
    position: relative;
    padding: 20px;
}

.painting-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.painting-card:hover .painting-image img {
    transform: scale(1.05);
}

.painting-status {
    position: absolute;
    top: 40px;
    right: 40px;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.status-available {
    color: #16a34a;
}

.status-sold {
    color: var(--maroon-light);
}

.painting-content {
    padding: 60px 80px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    background: white;
    min-height: 35vh;
    justify-content: center;
}

.painting-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--maroon-dark);
    margin-bottom: 15px;
    font-family: 'Ananias', cursive;
    text-align: center;
}

.painting-dimensions {
    font-size: 18px;
    color: var(--maroon-light);
    margin-bottom: 25px;
    font-style: italic;
    text-align: center;
}

.painting-description {
    font-size: 20px;
    color: var(--maroon-dark);
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.painting-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: auto;
    padding-top: 25px;
}

.painting-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--maroon-dark);
    font-family: 'Ananias', cursive;
}

.painting-button {
    padding: 16px 40px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.painting-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(122, 33, 52, 0.4);
}

.painting-button.sold {
    background: #94a3b8;
    cursor: not-allowed;
}

.painting-button.sold:hover {
    transform: none;
    box-shadow: none;
}

.shop-note {
    max-width: 100%;
    margin: 0;
    text-align: center;
    padding: 80px;
    background: var(--cream-light);
    border-radius: 0;
    box-shadow: none;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
}

.shop-note p {
    font-size: 22px;
    color: var(--maroon-dark);
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 900px;
}

.shop-note p:last-child {
    margin-bottom: 0;
    font-style: italic;
    font-weight: 600;
}

.red-thread-button {
    padding: 16px 40px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 1024px) {
    .nav-brand {
        font-size: 28px;
    }
    
    .nav-logo {
        width: 50px;
        height: 50px;
    }
    
    .offerings-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-offering-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 30px;
    }

    .featured-offering-image {
        height: 500px;
    }

    .featured-offering-title {
        font-size: 60px;
    }

    .featured-offering-subtitle {
        font-size: 42px;
    }

    .featured-offering-text {
        font-size: 20px;
    }
    
    .painting-image {
        height: 60vh;
    }

    .painting-content {
        padding: 40px 50px;
        min-height: 40vh;
    }

    .painting-title {
        font-size: 36px;
    }

    .painting-description {
        font-size: 18px;
    }

    .painting-price {
        font-size: 32px;
    }

    .shop-hero-title {
        font-size: 42px;
    }
}

@media (max-width: 968px) {
    .about-liz-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-liz-text h2 {
        font-size: 36px;
    }

    .about-liz-text h3 {
        font-size: 20px;
    }

    .philosophy-quote {
        font-size: 20px;
        padding: 30px;
    }

    .credentials-section {
        padding: 30px;
    }

    .about-liz-image-placeholder {
        height: 400px;
        font-size: 80px;
    }
}

@media (max-width: 768px) {
    .nav-brand-text {
        display: none !important;
    }

    .nav-brand {
        font-size: 0;      /* CHANGE from 22px to 0 */
        gap: 0;            /* CHANGE from 10px to 0 */
    }
    
    .nav-logo {
        width: 45px;
        height: 45px;
    }
    
    .hero,
    .about-hero,
    .detail-hero,
    .offerings-hero,
    .shop-hero {
        padding-top: 120px;
        padding-bottom: 30px;
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .about-content {
        font-size: 16px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .media-image,
    .media-video {
        height: 240px;
    }
    
    .notification-box {
        padding: 60px 40px;
        max-width: 90%;
    }
    
    .notification-icon {
        font-size: 72px;
    }
    
    .notification-message {
        font-size: 40px;
    }
    
    .notification-submessage {
        font-size: 22px;
    }

    .offerings-grid {
        grid-template-columns: 1fr;
    }

    .offerings-hero {
        padding-top: 140px;
        min-height: 40vh;
    }

    .featured-offering-section {
        min-height: auto;
        padding: 40px 0;
    }

    .featured-offering-container {
        padding: 0 20px;
        gap: 30px;
    }

    .featured-offering-image {
        height: 350px;
        font-size: 80px;
    }

    .featured-offering-title {
        font-size: 32px;
    }

    .featured-offering-text {
        font-size: 18px;
    }

    .featured-offering-description {
        font-size: 16px;
    }

    .featured-offering-button {
        padding: 15px 35px;
        font-size: 18px;
        width: 100%;
        text-align: center;
    }

    .about-hero {
        padding-top: 140px;
    }

    .detail-hero {
        padding-top: 140px;
    }

    .detail-image {
        height: 300px;
        font-size: 80px;
    }

    .detail-content p,
    .detail-content li {
        font-size: 16px;
    }

    .detail-content h3 {
        font-size: 28px;
    }

    .booking-button-container {
        padding: 30px 0;
    }
    
    .testimonial-card {
        flex: 0 0 190px;
        padding: 20px 20px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .testimonials-track {
        animation: scroll 20s linear infinite;
        gap: 10px;
    }
    
    .painting-image {
        height: 55vh;
        padding: 15px;
    }

    .painting-content {
        padding: 30px 25px;
        min-height: 45vh;
    }

    .painting-title {
        font-size: 28px;
    }

    .painting-description {
        font-size: 16px;
    }

    .painting-footer {
        flex-direction: column;
        gap: 20px;
    }

    .shop-hero-title {
        font-size: 36px;
    }

    .shop-hero-subtitle {
        font-size: 18px;
    }

    .shop-note {
        padding: 60px 30px;
    }

    .shop-note p {
        font-size: 18px;
    }
    
    .video-section {
        min-height: 80vh;
        padding: 60px 0;
    }

    .video-container {
        padding: 0 20px;
    }

    .video-wrapper {
        border-radius: 20px;
    }

    .video-wrapper::before {
        top: -20px;
        left: -20px;
        right: 20px;
        bottom: 20px;
        border-radius: 20px;
    }

    .play-overlay {
        width: 70px;
        height: 70px;
        font-size: 24px;
        padding-left: 4px;
    }

    .video-caption {
        font-size: 18px;
        margin-top: 30px;
    }
    
    .about-detail-section {
        padding: 30px 0 60px 0;
    }
    
    .about-liz-layout {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 50px;
    }
    
    .about-liz-image-placeholder {
        height: 400px;
        font-size: 100px;
    }
    
    .about-liz-text h2 {
        font-size: 32px;
        margin-bottom: 8px;
    }
    
    .about-liz-text h3 {
        font-size: 19px;
        margin-bottom: 25px;
    }
    
    .credentials-section {
        padding: 35px 25px;
        margin-bottom: 50px;
    }
    
    .credentials-section h3 {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .credential-icon {
        font-size: 28px;
    }
    
    .credential-text h4 {
        font-size: 17px;
    }
    
    .credential-text p {
        font-size: 15px;
    }
    
    .philosophy-section h3 {
        font-size: 30px;
        margin-bottom: 25px;
    }
    
    .philosophy-quote {
        font-size: 19px;
        padding: 30px 25px;
        line-height: 1.6;
    }
    
    .philosophy-quote::before {
        font-size: 65px;
        top: 8px;
        left: 18px;
    }
    
    .about-liz-cta {
        padding: 40px 25px;
        margin-top: 50px;
    }
    
    .about-liz-cta p {
        font-size: 18px;
        margin-bottom: 25px;
    }
    
    .our-story-content h3 {
        font-size: 26px;
        margin: 40px 0 20px 0;
    }
    
    .our-story-content p {
        font-size: 17px;
    }
    
    .our-story-content .pull-quote {
        font-size: 20px;
        padding: 20px 25px;
        margin: 30px 0;
    }
    
    .our-story-content .drop-cap::first-letter {
        font-size: 56px;
        line-height: 48px;
    }
    
    .social-links {
        gap: 25px;
        flex-direction: column;
        align-items: stretch;
    }
    
    .social-link {
        padding: 25px;
        min-width: auto;
        width: 100%;
        flex-direction: row;
        justify-content: center;
    }
    
    .social-link svg {
        width: 32px;
        height: 32px;
    }
    
    .social-link span {
        font-size: 16px;
    }
    
    .modal-close {
        width: 50px;
        height: 50px;
        font-size: 34px;
    }
    
    .subscribe-container {
        padding: 0 20px;
    }
    
    .cta-button,
    .checkout-link,
    .featured-offering-button,
    .offering-button,
    .painting-button,
    .back-button,
    .subscribe-form button {
        width: 100%;
        padding: 16px 30px;
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .nav-brand {
        font-size: 19px;
    }
    
    .nav-logo {
        width: 40px;
        height: 40px;
    }
    
    .hero-title,
    .offering-hero-title,
    .shop-hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .notification-message {
        font-size: 28px;
    }
    
    .notification-submessage {
        font-size: 18px;
    }
    
    .painting-content {
        padding: 30px 20px;
    }
    
    .featured-offering-title {
        font-size: 26px;
    }
    
    .featured-offering-subtitle {
        font-size: 20px;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .hero,
    .about-hero,
    .detail-hero,
    .offerings-hero,
    .shop-hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 30px;
    }
    
    .painting-image {
        height: 70vh;
    }
    
    .painting-content {
        min-height: auto;
    }
    
    .video-wrapper {
        max-width: 85%;
        margin: 0 auto;
    }
    
    .gallery-item {
        height: auto;
    }
    
    .media-image,
    .media-video {
        height: 220px;
    }
}



@media (hover: none) and (pointer: coarse) {
    .nav-links a,
    .cta-button,
    .offering-button,
    .painting-button,
    .subscribe-form button,
    .back-button,
    .checkout-link,
    .social-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .gallery-item:hover,
    .offering-card:hover,
    .social-link:hover {
        transform: none;
    }
    
    .cta-button:active,
    .offering-button:active,
    .painting-button:active,
    .checkout-link:active {
        transform: scale(0.98);
    }
}


/* ========================================
   FIX FOR CTA BUTTON UNDERLINE ON MOBILE
   ======================================== */

/* Replace the existing CTA button link styling section in your styles.css with this: */

a.cta-button,
a.cta-button:visited,
a.cta-button:hover,
a.cta-button:active,
a.cta-button:focus {
    text-decoration: none !important;
}

/* Additional mobile fix - add this to your mobile media query section */
@media (max-width: 768px) {
    .cta-button,
    a.cta-button,
    a.cta-button:link,
    a.cta-button:visited,
    a.cta-button:hover,
    a.cta-button:active {
        text-decoration: none !important;
        -webkit-text-decoration: none !important;
    }
}

/* ALTERNATIVE SOLUTION: If the above doesn't work, replace the entire CTA button section with this: */

.cta-button {
    padding: 15px 40px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none !important;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeInUp 1s ease 0.4s backwards;
    display: inline-block; /* This is important for links */
}

/* Remove text-decoration from all link states */
.cta-button,
a.cta-button,
button.cta-button {
    text-decoration: none !important;
    -webkit-text-decoration: none !important;
    -moz-text-decoration: none !important;
}

a.cta-button:link,
a.cta-button:visited,
a.cta-button:hover,
a.cta-button:active,
a.cta-button:focus {
    text-decoration: none !important;
    -webkit-text-decoration: none !important;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(166, 94, 46, 0.4);
}