/* Minimal Custom CSS - Bootstrap Workshop Booking System */

/* Bootstrap Theme Customization */
:root {
    --bs-primary: #2563eb;
    --bs-primary-rgb: 37, 99, 235;
    --bs-success: #10b981;
    --bs-success-rgb: 16, 185, 129;
    --bs-danger: #ef4444;
    --bs-danger-rgb: 239, 68, 68;
    --bs-warning: #f59e0b;
    --bs-warning-rgb: 245, 158, 11;
}

/* Hero Section - Brand Identity */
.hero-section {
    background: #ffffff;
    min-height: 50vh;
    padding: 3rem 0;
}

/* Larger hero text as requested */
.hero-section .fs-4 {
    font-size: 1.5rem !important;
    font-weight: 500;
    line-height: 1.4;
}

.hero-section .mb-4 {
    font-size: 1.25rem !important;
    font-weight: 400;
    line-height: 1.5;
}

/* Analytics Panel - Bootstrap Compatible */
.analytics-panel {
    max-width: 700px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

/* Stripe Elements Focus State - UX Requirement */
.stripe-element:focus-within {
    border-color: var(--bs-primary) !important;
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25) !important;
}

/* Card Hover Animation - Minimal Custom Effect */
.card-hover:hover {
    transform: translateY(-2px);
}

/* Status Badge Colors - Semantic Meaning */
.status-confirmed {
    background-color: var(--bs-success) !important;
}

.status-reserved {
    background-color: var(--bs-warning) !important;
}

.status-cancelled {
    background-color: var(--bs-danger) !important;
}

.status-payment_failed {
    background-color: var(--bs-danger) !important;
}

/* Analytics Panel Transaction Styling - Bootstrap Compatible */
.transaction-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    width: 100%;
}

.transaction-timestamp {
    font-size: 0.75rem;
    color: #9ca3af;
    width: clamp(50px, 8vw, 80px);
    text-align: right;
    flex-shrink: 0;
}

.transaction-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    min-width: 300px;
    border: 1px solid #e5e7eb;
}

.transaction-avatar {
    flex-shrink: 0;
}

.avatar-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bs-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.transaction-text {
    flex: 1;
    font-size: 0.75rem;
    /* Smallest text for details */
}

.customer-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.875rem;
    /* Second largest - customer name */
    display: block;
    margin-bottom: 0.125rem;
}

.other-text {
    color: #6b7280;
    font-size: 0.75rem;
    /* Smallest text for location/plan details */
}

.transaction-price {
    flex-shrink: 0;
}

.price-display {
    font-weight: 700;
    color: var(--bs-success);
    font-size: 1.375rem;
    /* Transaction amounts - normal size */
}

/* Total revenue display - much larger */
.revenue-display {
    font-size: 3.5rem !important;
    font-weight: 700 !important;
}
/* Sec
tion Titles - Match Video Width */
.display-5.fw-semibold {
    line-height: 1.3;
    word-wrap: break-word;
    hyphens: auto;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}/* Pre
ss Tearsheets Section */
.tearsheet-container {
    perspective: 1000px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tearsheet-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 1400px;
}

.tearsheet {
    width: 100%;
    height: 400px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.1),
        0 2px 4px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    font-family: 'Times New Roman', serif;
    display: flex;
    flex-direction: column;
}

.tearsheet:nth-child(1) {
    transform: rotate(-2deg);
}

.tearsheet:nth-child(2) {
    transform: rotate(1deg);
}

.tearsheet:nth-child(3) {
    transform: rotate(-1deg);
}

.tearsheet:nth-child(4) {
    transform: rotate(2deg);
}

.tearsheet:nth-child(5) {
    transform: rotate(-1.5deg);
}

.tearsheet:nth-child(6) {
    transform: rotate(1.5deg);
}

.tearsheet:hover {
    transform: translateY(-5px) rotate(0deg);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 4px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.publication-header {
    margin-bottom: 1.5rem;
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 3px solid #ddd;
    padding-bottom: 0.75rem;
    font-weight: bold;
    font-size: clamp(1.2rem, 4vw, 2.5rem);
    color: #2c3e50;
    font-family: 'Times New Roman', serif;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.1;
}

.tearsheet-quote {
    font-size: 1.3rem;
    line-height: 1.5;
    color: #34495e;
    font-weight: 400;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.tearsheet-meta {
    font-size: 0.95rem;
    color: #7f8c8d;
    border-top: 1px solid #ecf0f1;
    padding-top: 0.75rem;
    margin-top: auto;
}

.tearsheet-author {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .tearsheet-stack {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tearsheet {
        height: 250px;
        padding: 1rem;
    }
}

/* Publication-Specific Branding */

.tearsheet.futurism .publication-header {
    color: #000000;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    border-bottom-color: #000000;
}

.tearsheet.businessinsider .publication-header {
    color: #000000;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    border-bottom-color: #000000;
    text-transform: uppercase;
    font-size: clamp(0.9rem, 2.5vw, 1.8rem);
}

.tearsheet.wired .publication-header {
    color: #000000;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 900;
    border-bottom-color: #ff0040;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tearsheet.theguardian .publication-header {
    color: #052962;
    font-family: 'Guardian Egyptian Web', Georgia, serif;
    font-weight: 900;
    border-bottom-color: #052962;
}

.tearsheet.harvardgazette .publication-header {
    color: #a51c30;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: bold;
    border-bottom-color: #a51c30;
    font-size: clamp(1rem, 3vw, 2rem);
}

.tearsheet.fastcompany .publication-header {
    color: #000000;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 800;
    border-bottom-color: #000000;
}
/* Le
gal Pad Guarantee Section */
.legal-pad {
    background: linear-gradient(to bottom, #fff9c4 0%, #fff3a0 100%);
    border: 1px solid #e6d700;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    margin: 0 auto;
    max-width: 600px;
    transform: rotate(-1deg);
}

.legal-pad::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #ff6b6b;
    opacity: 0.7;
}

.legal-pad-content {
    padding: 40px 30px 40px 80px;
    background-image: repeating-linear-gradient(
        transparent,
        transparent 24px,
        rgba(0, 0, 0, 0.1) 24px,
        rgba(0, 0, 0, 0.1) 26px
    );
    min-height: 400px;
    position: relative;
}

.handwriting-text {
    font-family: 'Kalam', cursive;
    font-size: 1.1rem;
    line-height: 1.3;
    color: #2c3e50;
    text-align: left;
    transform: rotate(0.5deg);
}

.handwriting-text p {
    margin-bottom: 1.5rem;
    position: relative;
}

.handwriting-text p:nth-child(odd) {
    transform: rotate(-0.3deg);
}

.handwriting-text p:nth-child(even) {
    transform: rotate(0.2deg);
}

.signature {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: #2c3e50;
    text-align: right;
    margin-top: 2rem;
    transform: rotate(-1deg);
    font-weight: 600;
}

/* Red Guarantee Stamp Badge */
.legal-pad {
    position: relative;
}

.legal-pad::after {
    content: 'REFUND GUARANTEE';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: #dc3545;
    border: 3px solid #b02a37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    text-align: center;
    line-height: 1.1;
    letter-spacing: 0.5px;
    transform: rotate(15deg);
    box-shadow: 
        0 4px 8px rgba(220, 53, 69, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
    z-index: 10;
}/* I
ndent numbered list items in handwriting text */
.handwriting-text p:has-text("1."),
.handwriting-text p:has-text("2."),
.handwriting-text p:has-text("3."),
.handwriting-text p:has-text("4."),
.handwriting-text p:has-text("5."),
.handwriting-text p:has-text("6."),
.handwriting-text p:has-text("7."),
.handwriting-text p:has-text("8."),
.handwriting-text p:has-text("9.") {
    margin-left: 20px;
    text-indent: -20px;
}/* I
ndent numbered list items in handwriting text */
.handwriting-text .numbered-item {
    margin-left: 75px;
}

/* Pink Sticky Note Section */
.pink-sticky-note {
    background: linear-gradient(145deg, #ffb3d9 0%, #ff99cc 50%, #ff80bf 100%);
    border: 1px solid #ff66b3;
    border-radius: 8px;
    box-shadow: 
        0 15px 35px rgba(255, 102, 179, 0.4),
        0 8px 20px rgba(255, 102, 179, 0.3),
        0 4px 10px rgba(0, 0, 0, 0.15),
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(255, 102, 179, 0.2);
    position: relative;
    margin: 0 auto;
    max-width: 600px;
    transform: rotate(-1.5deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pink-sticky-note:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(255, 102, 179, 0.5),
        0 15px 30px rgba(255, 102, 179, 0.4),
        0 8px 16px rgba(0, 0, 0, 0.2),
        0 4px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(255, 102, 179, 0.2);
}

.pink-sticky-note-content {
    padding: 2rem;
    position: relative;
}

.sticky-note-title {
    font-family: 'Kalam', cursive;
    font-size: 1.6rem;
    font-weight: 700;
    color: #8b0040;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.sticky-note-text {
    font-family: 'Kalam', cursive;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4d0026;
    text-align: left;
    font-weight: 400;
}

/* Tape effects on all four corners */
.pink-sticky-note::before,
.pink-sticky-note::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 20px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.pink-sticky-note::before {
    top: -10px;
    left: -10px;
    transform: rotate(45deg);
}

.pink-sticky-note::after {
    top: -10px;
    right: -10px;
    transform: rotate(-45deg);
}

/* Additional tape effects for bottom corners */
.pink-sticky-note-content::before,
.pink-sticky-note-content::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 20px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.pink-sticky-note-content::before {
    bottom: -10px;
    left: -10px;
    transform: rotate(-45deg);
}

.pink-sticky-note-content::after {
    bottom: -10px;
    right: -10px;
    transform: rotate(45deg);
}

/* Newsletter Style for Print Newsletter Section */
.newsletter-container {
    background: #f8f6f0;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.newsletter-paper {
    background: linear-gradient(to bottom, #fefefe 0%, #f9f9f9 100%);
    border: 1px solid #ddd;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 4px 16px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    transform: rotate(0deg);
    font-family: 'Courier New', 'Courier', monospace;
}

.newsletter-title {
    font-family: 'Courier New', 'Courier', monospace;
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 3px solid #2c3e50;
    padding-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter-paragraph {
    font-family: 'Courier New', 'Courier', monospace;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.5rem;
    text-align: left;
    position: relative;
}

.newsletter-headline {
    font-family: 'Courier New', 'Courier', monospace;
    font-size: 1.4rem;
    font-weight: bold;
    color: #2c3e50;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.newsletter-bullet {
    font-family: 'Courier New', 'Courier', monospace;
    font-size: 1rem;
    line-height: 1.6;
    color: #34495e;
    margin-left: 2rem;
    margin-bottom: 0.75rem;
}

/* Support for italics and bold in newsletter content */
.newsletter-content em,
.newsletter-paragraph em,
.newsletter-headline em {
    font-style: italic;
}

.newsletter-content strong,
.newsletter-paragraph strong,
.newsletter-headline strong {
    font-weight: bold;
}

/* Book Now buttons in newsletter */
.newsletter-content .btn {
    font-family: 'Inter', sans-serif;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.newsletter-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* Main Content Section - Plain Text Formatting */
.content-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    max-width: 800px;
    margin: 0 auto;
}

.content-text h2 {
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.content-text h2:first-child {
    margin-top: 0;
}

.content-text p {
    margin-bottom: 1.5rem;
    text-align: left;
}

.content-text .ms-4 {
    color: #4b5563;
    font-size: 1rem;
    margin-left: 2rem !important;
    margin-bottom: 0.75rem;
}

/* Italic text support */
.content-text em {
    font-style: italic;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .content-text {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .content-text h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }
    
    .content-text .ms-4 {
        margin-left: 1rem !important;
    }
    
    .newsletter-container {
        padding: 2rem 1rem;
    }
    
    .newsletter-paper {
        padding: 2rem 1.5rem;
        transform: rotate(0deg);
    }
    
    .newsletter-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .newsletter-paragraph {
        font-size: 1rem;
        text-indent: 1rem;
    }
    
    /* Coffee stain mobile styles removed */
}

/* Pink Sticky Note Mobile optimizations */
@media (max-width: 768px) {
    .pink-sticky-note {
        max-width: 90%;
        margin: 0 auto;
        transform: rotate(-1deg);
    }
    
    .pink-sticky-note:hover {
        transform: rotate(0deg) translateY(-3px);
    }
    
    .pink-sticky-note-content {
        padding: 1.5rem;
    }
    
    .sticky-note-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .sticky-note-text {
        font-size: 1rem;
    }
    
    /* Reduce shadow intensity on mobile for better performance */
    .pink-sticky-note {
        box-shadow: 
            0 10px 25px rgba(255, 102, 179, 0.3),
            0 5px 15px rgba(255, 102, 179, 0.2),
            0 2px 8px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
    
    .pink-sticky-note:hover {
        box-shadow: 
            0 15px 35px rgba(255, 102, 179, 0.4),
            0 8px 20px rgba(255, 102, 179, 0.3),
            0 4px 12px rgba(0, 0, 0, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
}
/* Mobile-only zoom adjustment */
@media (max-width: 768px) {
    html {
        zoom: 0.75;
    }
}
