/* Font Face Declarations */
@font-face {
    font-family: 'Ammayaar';
    src: url('./assets/fonts/Ammayaar.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('./assets/fonts/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('./assets/fonts/Inter-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #faf8f5;
    height: 100vh;
    overflow: hidden;
}

/* Coming Soon Container */
.coming-soon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: #f5f5dc;
}

.coming-soon-content {
    text-align: center;
    max-width: 600px;
    padding: 2rem;
}

/* Logo Styles */
.logo {
    font-family: 'Ammayaar', 'Playfair Display', serif;
    font-size: 6rem;
    font-weight: 700;
    color: #8b1538;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(139, 21, 56, 0.1);
}

/* Tagline Styles */
.tagline {
    font-family: 'Ammayaar', 'Playfair Display', serif;
    font-size: 3rem;
    color: #6b5b4f;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    font-style: italic;
}

/* Coming Soon Text */
.coming-soon-text h2 {
    font-size: 2.5rem;
    color: #3d2914;
    margin-bottom: 1rem;
    font-weight: 500;
}

.coming-soon-text p {
    font-size: 1.1rem;
    color: #6b5b4f;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Hamburger Menu Styles */
.hamburger-menu {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 50px;
    height: 50px;
}

.hamburger-btn span {
    display: block;
    height: 4px;
    width: 100%;
    background: #8b1538;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-btn:hover span {
    background: #6b1028;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 21, 56, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-content {
    text-align: center;
    position: relative;
}

.close-btn {
    position: absolute;
    top: -50px;
    right: -20px;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    padding: 10px;
}

.menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-items li {
    margin: 2rem 0;
}

.menu-items a {
    color: white;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 500;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.menu-items a:hover {
    color: #f5f5dc;
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Page Container Styles */
.page-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: #faf8f5;
    min-height: 100vh;
}

/* Page Header Styles */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #8b1538;
}

.page-header .logo {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.page-header .tagline {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Page Content Styles */
.page-content {
    line-height: 1.6;
    color: #3d2914;
    font-family: 'Inter', sans-serif;
    animation: fadeIn 0.6s ease-in-out;
}

/* Staggered fade-in animation for sections */
.page-content section:nth-child(1) {
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.page-content section:nth-child(2) {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.page-content section:nth-child(3) {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.page-content section:nth-child(4) {
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.page-content section:nth-child(5) {
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.page-content section:nth-child(6) {
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.page-content h2 {
    color: #8b1538;
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: color 0.3s ease;
}

.page-content h2:hover {
    color: #6b1028;
}

.page-content h3 {
    color: #8b1538;
    margin: 1.5rem 0 0.75rem 0;
    font-size: 1.2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: color 0.3s ease;
}

.page-content h3:hover {
    color: #6b1028;
}

.page-content p {
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.page-content strong {
    font-weight: 500;
    color: #3d2914;
}

/* Contact Information Styles */
.contact-info {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(139, 21, 56, 0.1);
    border-left: 4px solid #8b1538;
}

.contact-item h3 {
    color: #8b1538;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.contact-item address {
    font-style: normal;
    line-height: 1.6;
    color: #3d2914;
    font-family: 'Inter', sans-serif;
}

.contact-item p {
    margin: 0;
    color: #3d2914;
    font-family: 'Inter', sans-serif;
}

/* Contact Links */
.contact-link {
    color: #8b1538;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.contact-link:hover {
    color: #6b1028;
    border-bottom: 1px solid #6b1028;
    transform: translateY(-1px);
    text-shadow: 0 1px 2px rgba(139, 21, 56, 0.2);
}

.contact-link:focus {
    outline: 2px solid #8b1538;
    outline-offset: 2px;
    border-radius: 2px;
}

/* Highlight Box Styles */
.highlight-box {
    background: #f5f5dc;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid #8b1538;
    border-radius: 8px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 21, 56, 0.08), transparent);
    transition: left 0.6s;
}

.highlight-box:hover::before {
    left: 100%;
}

.highlight-box::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(139, 21, 56, 0.05), transparent);
    transition: width 0.4s ease;
}

.highlight-box:hover::after {
    width: 100%;
}

.highlight-box:hover {
    box-shadow: 0 8px 20px rgba(139, 21, 56, 0.2);
    transform: translateX(6px) translateY(-4px) scale(1.02);
    border-left-width: 8px;
    background: linear-gradient(135deg, #f5f5dc 0%, #f0f0e8 100%);
}

.highlight-box:active {
    transform: translateX(3px) translateY(-2px) scale(1.01);
    transition: transform 0.1s ease;
}

.highlight-box p {
    position: relative;
    z-index: 2;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.highlight-box:hover p {
    transform: translateX(2px);
    color: #2d1f0f;
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

.highlight-box strong {
    color: #8b1538;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.highlight-box:hover strong {
    color: #6b1028;
}

/* Founder Section Styles */
.founder-section {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem;
    background: #f5f5dc;
    border-radius: 10px;
    border-left: 4px solid #8b1538;
}

.founder-image {
    flex-shrink: 0;
    width: 200px;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(139, 21, 56, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(139, 21, 56, 0.3);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.founder-text {
    flex: 1;
    min-width: 0;
}

.founder-text h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #8b1538;
    font-size: 1.4rem;
}

.founder-text p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Brand Tagline Section */
.tagline-section {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f5f5dc 0%, #faf8f5 100%);
    border-radius: 15px;
    border: 2px solid #8b1538;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.tagline-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 21, 56, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

.tagline-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 21, 56, 0.1), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.tagline-section:hover::after {
    left: 100%;
}

.tagline-section:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(139, 21, 56, 0.2);
    border-color: #6b1028;
    background: linear-gradient(135deg, #f5f5dc 0%, #faf8f5 50%, #f0f0e8 100%);
}

.brand-tagline {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.tagline-section:hover .brand-tagline {
    transform: translateY(-2px);
}

.main-tagline {
    font-family: 'Ammayaar', 'Playfair Display', serif !important;
    font-size: 2.5rem !important;
    color: #8b1538 !important;
    margin: 0 0 1rem 0 !important;
    letter-spacing: 3px;
    text-shadow: 0 2px 4px rgba(139, 21, 56, 0.1);
    font-weight: 700;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.tagline-section:hover .main-tagline {
    color: #6b1028 !important;
    text-shadow: 0 3px 6px rgba(139, 21, 56, 0.2);
    transform: scale(1.05);
}

.tagline-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #3d2914;
    font-style: italic;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.tagline-section:hover .tagline-description {
    color: #2d1f0f;
    transform: translateY(2px);
}

/* Back to Home Link */
.back-link {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.75rem 1.5rem;
    background: #8b1538;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    border: 2px solid #8b1538;
    letter-spacing: 0.5px;
}

.back-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.back-link:hover::before {
    left: 100%;
}

.back-link::after {
    content: '←';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.back-link:hover::after {
    opacity: 1;
    left: 0.5rem;
    animation: bounceLeft 0.6s ease-in-out;
}

.back-link:hover {
    background: #6b1028;
    border-color: #6b1028;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 16px rgba(139, 21, 56, 0.4);
    padding-left: 2.5rem;
}

.back-link:focus {
    outline: 2px solid #f5f5dc;
    outline-offset: 2px;
}

.back-link:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 4px 8px rgba(139, 21, 56, 0.3);
    transition: transform 0.1s ease;
}

/* Bounce animation for back arrow */
@keyframes bounceLeft {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(-50%) translateX(0);
    }
    40% {
        transform: translateY(-50%) translateX(-3px);
    }
    60% {
        transform: translateY(-50%) translateX(-1px);
    }
}

@keyframes subtlePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(139, 21, 56, 0.1);
    }
    50% {
        transform: scale(1.01);
        box-shadow: 0 4px 12px rgba(139, 21, 56, 0.15);
    }
}

@keyframes gentleGlow {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(139, 21, 56, 0.1);
    }
    50% {
        box-shadow: 0 4px 16px rgba(139, 21, 56, 0.2);
    }
}

/* Enhanced Focus States for Accessibility */
.hamburger-btn:focus {
    outline: 3px solid #8b1538;
    outline-offset: 3px;
    border-radius: 4px;
}

.close-btn:focus {
    outline: 3px solid white;
    outline-offset: 3px;
    border-radius: 4px;
}

.menu-items a:focus {
    outline: 3px solid #f5f5dc;
    outline-offset: 3px;
    border-radius: 4px;
    background-color: rgba(245, 245, 220, 0.1);
}

/* Enhanced Focus States for Interactive Elements */
.contact-item:focus {
    outline: 3px solid #8b1538;
    outline-offset: 2px;
    border-radius: 8px;
    background-color: rgba(139, 21, 56, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 21, 56, 0.2);
    animation: gentleGlow 2s ease-in-out infinite;
}

.founder-section:focus {
    outline: 3px solid #8b1538;
    outline-offset: 2px;
    border-radius: 10px;
    background-color: rgba(139, 21, 56, 0.02);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 21, 56, 0.15);
    animation: subtlePulse 3s ease-in-out infinite;
}

.brand-tagline:focus {
    outline: 3px solid #8b1538;
    outline-offset: 2px;
    border-radius: 8px;
    background-color: rgba(139, 21, 56, 0.02);
    animation: gentleGlow 2.5s ease-in-out infinite;
}

/* Enhanced visual feedback for all clickable elements */
.contact-item[tabindex]:hover,
.founder-section[tabindex]:hover,
.brand-tagline[tabindex]:hover {
    cursor: pointer;
}

/* Subtle animation for page load */
.page-container {
    animation: fadeIn 0.8s ease-out;
}

/* Enhanced hamburger menu button feedback */
.hamburger-btn:hover {
    transform: scale(1.1);
    background-color: rgba(139, 21, 56, 0.05);
    border-radius: 8px;
}

.hamburger-btn:active {
    transform: scale(1.05);
    transition: transform 0.1s ease;
}

/* Enhanced menu items feedback */
.menu-items a {
    position: relative;
    overflow: hidden;
}

.menu-items a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.menu-items a:hover::before {
    left: 100%;
}

/* Enhanced Focus for Headings */
.page-content h2:focus,
.page-content h3:focus {
    outline: 2px solid #8b1538;
    outline-offset: 2px;
    border-radius: 4px;
    background-color: rgba(139, 21, 56, 0.05);
}

/* Skip Link for Screen Readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #8b1538;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1001;
    font-weight: 500;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 6px;
    outline: 2px solid white;
    outline-offset: 2px;
}

/* Screen Reader Only Content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Enhanced Keyboard Navigation Indicators */
.contact-item[tabindex]:focus-visible,
.founder-section[tabindex]:focus-visible,
.brand-tagline[tabindex]:focus-visible {
    outline: 3px solid #8b1538;
    outline-offset: 2px;
    border-radius: 8px;
}

/* Improved Focus Visibility for All Interactive Elements */
*:focus-visible {
    outline: 2px solid #8b1538;
    outline-offset: 2px;
    border-radius: 2px;
}

/* Enhanced Focus for Links */
a:focus-visible {
    outline: 3px solid #8b1538;
    outline-offset: 2px;
    border-radius: 4px;
    background-color: rgba(139, 21, 56, 0.1);
}

/* Focus Management for Sections */
section[role="region"]:focus {
    outline: 2px solid #8b1538;
    outline-offset: 2px;
    border-radius: 8px;
    background-color: rgba(139, 21, 56, 0.02);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Content Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(139, 21, 56, 0.1);
    }
    50% {
        box-shadow: 0 4px 16px rgba(139, 21, 56, 0.2);
    }
}

/* Additional Interactive Enhancements */
.page-content {
    position: relative;
}

.page-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -5px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #8b1538, #f5f5dc, #8b1538);
    opacity: 0.3;
    animation: glow 3s ease-in-out infinite;
}

/* Enhanced Focus States */
.contact-item:focus-within {
    outline: 2px solid #8b1538;
    outline-offset: 2px;
    border-radius: 8px;
}

.founder-section:focus-within {
    outline: 2px solid #8b1538;
    outline-offset: 2px;
    border-radius: 10px;
}

/* Smooth Transitions for All Interactive Elements */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Enhanced Interactive Elements */
.contact-item:hover {
    animation: pulse 0.6s ease-in-out;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 21, 56, 0.15);
}

.page-content section {
    animation: slideInFromLeft 0.8s ease-out;
}

.page-content section:nth-child(even) {
    animation-delay: 0.1s;
}

.page-content section:nth-child(odd) {
    animation-delay: 0.2s;
}

/* Enhanced Contact Information Styling */
.contact-info {
    margin: 2rem 0;
}

.contact-item {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 21, 56, 0.05), transparent);
    transition: left 0.5s;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item h3 {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.contact-item:hover h3 {
    color: #6b1028;
}

/* Enhanced hover effects for contact items */
.contact-item:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(139, 21, 56, 0.2);
    border-left-width: 6px;
    background-color: rgba(139, 21, 56, 0.02);
}

.contact-item:active {
    transform: translateY(-1px) scale(1.01);
    transition: transform 0.1s ease;
}

/* Mobile-specific contact enhancements */
@media (max-width: 768px) {
    .contact-item {
        /* Ensure proper touch targets on mobile */
        min-height: 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .contact-link {
        /* Better mobile touch experience */
        -webkit-tap-highlight-color: rgba(139, 21, 56, 0.2);
        tap-highlight-color: rgba(139, 21, 56, 0.2);
    }

    /* Enhanced phone link for mobile */
    .phone-link {
        font-weight: 600;
        color: #2e7d32;
        text-decoration: none;
        border-bottom: 2px solid transparent;
        transition: all 0.3s ease;
    }

    .phone-link:hover,
    .phone-link:focus {
        border-bottom-color: #2e7d32;
        background-color: rgba(46, 125, 50, 0.1);
        padding: 0.2rem 0.4rem;
        border-radius: 4px;
    }

    /* Enhanced email link for mobile */
    .email-link {
        font-weight: 600;
        color: #1565c0;
        text-decoration: none;
        border-bottom: 2px solid transparent;
        transition: all 0.3s ease;
    }

    .email-link:hover,
    .email-link:focus {
        border-bottom-color: #1565c0;
        background-color: rgba(21, 101, 192, 0.1);
        padding: 0.2rem 0.4rem;
        border-radius: 4px;
    }
}

/* Enhanced About Content Styling */
.founder-text p {
    transition: all 0.3s ease;
    position: relative;
}

.founder-text:hover p {
    color: #2d1f0f;
    transform: translateX(3px);
}

.founder-text p::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 2px;
    height: 0;
    background: #8b1538;
    transition: height 0.3s ease;
}

.founder-text:hover p::before {
    height: 100%;
}

/* Enhanced founder section interactions */
.founder-section:hover .founder-image {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 12px 25px rgba(139, 21, 56, 0.3);
}

.founder-section:hover .founder-text h3 {
    color: #6b1028;
    transform: translateX(5px);
}

/* Enhanced Typography for Both Pages */
.page-content h2 {
    position: relative;
    transition: all 0.3s ease;
}

.page-content h2::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: #8b1538;
    transition: height 0.3s ease;
}

.page-content h2:hover::before {
    height: 100%;
}

.page-content h3 {
    transition: all 0.3s ease;
    position: relative;
}

.page-content h3:hover {
    transform: translateX(5px);
}

/* Enhanced Interactive Link Styling */
.contact-link {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.4s ease;
    z-index: 0;
}

.contact-link:hover::before {
    left: 100%;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #6b1028;
    transition: width 0.3s ease;
    z-index: 1;
}

.contact-link:hover::after {
    width: 100%;
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(139, 21, 56, 0.2);
    background-color: rgba(139, 21, 56, 0.05);
}

.contact-link:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
}

/* Phone and Email Link Specific Styling */
.phone-link {
    background-color: rgba(46, 125, 50, 0.05);
    border: 1px solid rgba(46, 125, 50, 0.2);
}

.phone-link:hover {
    color: #2e7d32;
    border-color: #2e7d32;
    background-color: rgba(46, 125, 50, 0.1);
    transform: translateY(-2px) scale(1.05);
}

.phone-link::after {
    background: #2e7d32;
}

.email-link {
    background-color: rgba(21, 101, 192, 0.05);
    border: 1px solid rgba(21, 101, 192, 0.2);
}

.email-link:hover {
    color: #1565c0;
    border-color: #1565c0;
    background-color: rgba(21, 101, 192, 0.1);
    transform: translateY(-2px) scale(1.05);
}

.email-link::after {
    background: #1565c0;
}

/* Improved Typography Hierarchy */
.page-content h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: #8b1538;
    margin: 0.5rem 0;
    transition: width 0.3s ease;
}

.page-content h2:hover::after {
    width: 80px;
}

/* Enhanced Section Styling */
.page-content section {
    margin-bottom: 2.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(139, 21, 56, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border-radius: 4px;
}

.page-content section::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(180deg, #8b1538, #6b1028);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.page-content section:hover::before {
    width: 4px;
}

.page-content section:last-child {
    border-bottom: none;
}

.page-content section:hover {
    padding-left: 1rem;
    background-color: rgba(139, 21, 56, 0.02);
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(139, 21, 56, 0.1);
}

/* Enhanced Address Styling */
.contact-item address {
    transition: all 0.3s ease;
    position: relative;
}

.contact-item:hover address {
    color: #2d1f0f;
    transform: translateX(2px);
}

/* Enhanced Paragraph Styling */
.page-content p {
    transition: color 0.3s ease;
}

.page-content section:hover p {
    color: #2d1f0f;
}

/* Enhanced Strong Text Styling */
.page-content strong {
    transition: color 0.3s ease;
    position: relative;
}

.page-content strong:hover {
    color: #8b1538;
}

/* Enhanced List Styling for About Page */
.page-content ul li,
.page-content ol li {
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0.5rem;
}

.page-content ul li:hover,
.page-content ol li:hover {
    color: #2d1f0f;
    transform: translateX(3px);
}

.page-content ul li::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: #8b1538;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.page-content ul li:hover::before {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        font-size: 4rem;
        letter-spacing: 2px;
    }
    
    .tagline {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .coming-soon-text h2 {
        font-size: 2rem;
    }
    
    .coming-soon-text p {
        font-size: 1rem;
    }

    .page-container {
        padding: 1rem;
        max-width: 100%;
    }

    .page-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .page-header .logo {
        font-size: 3rem !important;
        letter-spacing: 2px;
    }

    .page-header .tagline {
        font-size: 1.5rem !important;
        letter-spacing: 1px;
    }

    .page-content {
        padding: 0;
    }

    .page-content h2 {
        font-size: 1.3rem;
        margin: 1.5rem 0 0.8rem 0;
    }

    .page-content h3 {
        font-size: 1.1rem;
        margin: 1.2rem 0 0.6rem 0;
    }

    .page-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 0.8rem;
    }

    .page-content section {
        margin-bottom: 2rem;
        padding: 0.8rem 0;
    }

    /* Contact page specific responsive styles */
    .contact-info {
        gap: 1.2rem;
        margin: 1.5rem 0;
    }

    .contact-item {
        padding: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .contact-item h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .contact-item address,
    .contact-item p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .contact-link {
        font-size: 0.9rem;
        padding: 0.2rem 0;
        display: inline-block;
    }

    /* About page specific responsive styles */
    .founder-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .founder-image {
        width: 180px;
        height: 220px;
        margin-bottom: 0.5rem;
    }

    .founder-text {
        text-align: left;
        width: 100%;
    }

    .founder-text h3 {
        text-align: center;
        margin-bottom: 1rem;
    }

    .founder-text p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .highlight-box {
        padding: 1.2rem;
        margin: 1.2rem 0;
    }

    .highlight-box p {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .tagline-section {
        margin: 2rem 0;
        padding: 1.5rem;
    }

    .main-tagline {
        font-size: 2rem !important;
        letter-spacing: 2px;
        line-height: 1.1;
    }

    .tagline-description {
        font-size: 1rem;
        line-height: 1.4;
    }

    .back-link {
        padding: 0.7rem 1.3rem;
        font-size: 0.9rem;
        margin-top: 1.5rem;
    }

    /* Menu responsive adjustments */
    .menu-items a {
        font-size: 1.8rem;
    }

    .hamburger-menu {
        top: 15px;
        right: 15px;
    }

    .hamburger-btn {
        padding: 12px;
        width: 45px;
        height: 45px;
    }

    /* Improved touch targets for mobile */
    .contact-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 0.5rem 0;
    }

    /* Better spacing for mobile readability */
    .page-content section:hover {
        padding-left: 0.3rem;
    }
}

@media (max-width: 480px) {
    .coming-soon-content {
        padding: 1rem;
    }
    
    .logo {
        font-size: 3.5rem;
    }
    
    .tagline {
        font-size: 2rem;
    }
    
    .coming-soon-text h2 {
        font-size: 1.5rem;
    }
    
    .menu-items a {
        font-size: 1.5rem;
    }

    .page-container {
        padding: 0.75rem;
        max-width: 100%;
    }

    .page-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }

    .page-header .logo {
        font-size: 2.5rem !important;
        margin-bottom: 0.3rem;
    }

    .page-header .tagline {
        font-size: 1.2rem !important;
        margin-bottom: 0.5rem;
    }

    .page-content {
        padding: 0;
    }

    .page-content h2 {
        font-size: 1.2rem;
        margin: 1.2rem 0 0.6rem 0;
    }

    .page-content h3 {
        font-size: 1rem;
        margin: 1rem 0 0.5rem 0;
    }

    .page-content p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 0.7rem;
    }

    .page-content section {
        margin-bottom: 1.5rem;
        padding: 0.6rem 0;
    }

    /* Contact page mobile optimization */
    .contact-info {
        gap: 1rem;
        margin: 1.2rem 0;
    }

    .contact-item {
        padding: 1rem;
        margin-bottom: 0.3rem;
    }

    .contact-item h3 {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }

    .contact-item address,
    .contact-item p {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .contact-link {
        font-size: 0.85rem;
        min-height: 44px;
        padding: 0.6rem 0;
        display: flex;
        align-items: center;
    }

    /* About page mobile optimization */
    .founder-section {
        padding: 1rem;
        gap: 1rem;
        margin: 1.2rem 0;
    }

    .founder-image {
        width: 140px;
        height: 170px;
        margin-bottom: 0.3rem;
    }

    .founder-text {
        width: 100%;
    }

    .founder-text h3 {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 0.8rem;
    }

    .founder-text p {
        font-size: 0.9rem;
        line-height: 1.4;
        text-align: left;
    }

    .highlight-box {
        padding: 1rem;
        margin: 1rem 0;
    }

    .highlight-box p {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
        line-height: 1.3;
    }

    .tagline-section {
        margin: 1.5rem 0;
        padding: 1rem;
    }

    .main-tagline {
        font-size: 1.6rem !important;
        letter-spacing: 1px;
        line-height: 1.1;
        margin-bottom: 0.8rem !important;
    }

    .tagline-description {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .back-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        margin-top: 1.2rem;
    }

    /* Enhanced mobile menu */
    .hamburger-menu {
        top: 12px;
        right: 12px;
    }

    .hamburger-btn {
        padding: 10px;
        width: 40px;
        height: 40px;
    }

    .hamburger-btn span {
        height: 3px;
    }

    /* Better mobile touch targets */
    .menu-items li {
        margin: 1.5rem 0;
    }

    /* Improved mobile spacing */
    .page-content section:hover {
        padding-left: 0.2rem;
        border-left-width: 2px;
    }

    /* Mobile-specific contact link styling */
    .phone-link,
    .email-link {
        font-weight: 500;
        text-decoration: underline;
    }

    /* Better mobile readability for address */
    .contact-item address {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

/* Extra small mobile devices */
@media (max-width: 360px) {
    .page-container {
        padding: 0.5rem;
    }

    .page-header .logo {
        font-size: 2.2rem !important;
    }

    .page-header .tagline {
        font-size: 1.1rem !important;
    }

    .page-content h2 {
        font-size: 1.1rem;
    }

    .page-content p {
        font-size: 0.85rem;
    }

    .contact-item {
        padding: 0.8rem;
    }

    .contact-item h3 {
        font-size: 0.9rem;
    }

    .contact-item address,
    .contact-item p {
        font-size: 0.8rem;
    }

    .founder-image {
        width: 120px;
        height: 150px;
    }

    .founder-text p {
        font-size: 0.85rem;
    }

    .main-tagline {
        font-size: 1.4rem !important;
    }

    .tagline-description {
        font-size: 0.8rem;
    }

    .back-link {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

/* Landscape orientation optimizations for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .page-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }

    .page-header .logo {
        font-size: 2.5rem !important;
    }

    .page-header .tagline {
        font-size: 1.3rem !important;
    }

    .founder-section {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 1.5rem;
    }

    .founder-image {
        width: 120px;
        height: 150px;
        flex-shrink: 0;
    }

    .founder-text h3 {
        text-align: left;
        margin-top: 0;
    }

    .tagline-section {
        padding: 1rem;
    }

    .main-tagline {
        font-size: 1.8rem !important;
    }
}

/* High DPI displays optimization */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .contact-link,
    .back-link {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    .page-header .logo,
    .main-tagline {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Mobile-specific performance optimizations */
@media (max-width: 768px) {
    /* Reduce animations on mobile for better performance */
    .page-content::before {
        display: none;
    }

    .contact-item::before,
    .highlight-box::before {
        display: none;
    }

    /* Optimize images for mobile */
    .founder-image img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }

    /* Better mobile scrolling */
    .page-container {
        -webkit-overflow-scrolling: touch;
        overflow-scrolling: touch;
    }

    /* Prevent zoom on input focus (iOS Safari) */
    input, select, textarea {
        font-size: 16px;
    }

    /* Better mobile text selection */
    .page-content {
        -webkit-user-select: text;
        -moz-user-select: text;
        -ms-user-select: text;
        user-select: text;
    }

    /* Optimize font rendering on mobile */
    body {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
}

/* Mobile accessibility enhancements */
@media (max-width: 768px) {
    /* Larger focus indicators for mobile */
    .contact-link:focus,
    .back-link:focus {
        outline: 3px solid #8b1538;
        outline-offset: 3px;
    }

    /* Better contrast for mobile screens */
    .page-content h2,
    .page-content h3 {
        color: #6b1028;
    }

    /* Enhanced readability spacing */
    .page-content section {
        line-height: 1.6;
    }

    .contact-item address {
        line-height: 1.5;
    }

    /* Improved touch targets for mobile accessibility */
    .contact-item[tabindex] {
        min-height: 48px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .founder-section[tabindex] {
        min-height: 48px;
    }

    .brand-tagline[tabindex] {
        min-height: 48px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* Enhanced mobile focus states */
    .contact-item:focus,
    .founder-section:focus,
    .brand-tagline:focus {
        outline: 4px solid #8b1538;
        outline-offset: 2px;
        transform: scale(1.02);
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .contact-link,
    .back-link {
        border: 2px solid currentColor;
    }

    .contact-item,
    .highlight-box {
        border: 2px solid #8b1538;
    }

    .page-content h2::after {
        height: 3px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .page-content::before {
        animation: none;
    }

    .tagline-section::before {
        animation: none;
    }
}