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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    position: relative;
}

h1 {
    font-size: 3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.subhead {
    font-size: 1.5rem;
    font-weight: 300;
    color: #666;
    margin-bottom: 40px;
}

.image-container {
    margin-bottom: 40px;
    background-color: #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.portrait-placeholder {
    width: 100%;
    max-width: 500px;
    height: 600px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    position: relative;
    margin: 0 auto;
}

.portrait-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
}

.portrait-placeholder span {
    position: relative;
    z-index: 1;
    opacity: 0.9;
}

.contact-info {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 32px;
}

.contact-info a {
    color: #667eea;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.address {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.tagline {
    font-size: 1.375rem;
    color: #444;
    font-weight: 300;
    font-style: italic;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 100;
    transition: all 0.3s ease;
    filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.4));
}

.whatsapp-float:hover {
    transform: scale(1.1);
    filter: drop-shadow(2px 2px 15px rgba(0,0,0,0.4));
}

.whatsapp-float img {
    display: block;
    width: auto;
    height: 50px;
}

.slider {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 600px;
    margin: 0 auto;
    overflow: hidden;
    background-color: #f0f0f0;
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img,
.slide iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide iframe {
    border: none;
}

.slide-text {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px 30px;
    font-size: 1.5rem;
    font-weight: 300;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    text-align: center;
    min-width: 200px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    border: none;
    font-size: 2.5rem;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: 15px;
}

.next {
    right: 15px;
}

.dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: rgba(255, 255, 255, 0.9);
}

.maple-leaf-bg {
    position: absolute;
    top: -10px;
    left: 50%;
    margin-left: 60px;
    z-index: 0;
    transform: rotate(-15deg);
    animation: gentleSway 8s ease-in-out infinite;
}

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

@keyframes gentleSway {
    0%, 100% { transform: rotate(15deg) scale(1); }
    50% { transform: rotate(20deg) scale(1.05); }
}

.container > * {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

h1 { animation-delay: 0.1s; }
.subhead { animation-delay: 0.2s; }
.image-container { animation-delay: 0.3s; }
.contact-info { animation-delay: 0.4s; }
.address { animation-delay: 0.5s; }
.tagline { animation-delay: 0.6s; }

/* Mobile optimizations for elderly users */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .subhead {
        font-size: 1.25rem;
        margin-bottom: 30px;
    }
    
    .portrait-placeholder {
        height: 450px;
    }
    
    .contact-info {
        font-size: 1.125rem;
    }
    
    .address {
        font-size: 1rem;
    }
    
    .tagline {
        font-size: 1.25rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float img {
        height: 40px;
    }
    
    .slider {
        height: 450px;
    }
    
    .slide-text {
        font-size: 1.25rem;
        padding: 12px 25px;
        bottom: 20px;
    }
    
    .slider-btn {
        font-size: 2rem;
        padding: 8px 15px;
    }
    
    .prev {
        left: 10px;
    }
    
    .next {
        right: 10px;
    }
    
    .maple-leaf-bg {
        width: 120px;
        height: 120px;
        top: 5px;
        left: auto;
        right: 10px;
        margin-left: 0;
    }
}

/* Touch swipe hint on mobile */
@media (hover: none) {
    .slider-btn {
        background-color: rgba(255, 255, 255, 0.7);
    }
}
