body {
    margin: 0;
    font-family: Georgia, serif;
    color: #222;
    background: #fafafa;
}

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

.header {
    background: #f0f0f0;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.logo {
    height: 50px;
}

.site-title {
    font-size: 28px;
    margin: 10px 0 0;
}

.hero-rotator {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: fadeCycle 12s infinite;
}

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

/* Slide timing */
.hero-slide:nth-child(1) {
    animation-delay: 0s;
}

.hero-slide:nth-child(2) {
    animation-delay: 4s;
}

.hero-slide:nth-child(3) {
    animation-delay: 8s;
}

/* Fade animation */
@keyframes fadeCycle {
    0% { opacity: 0; }
    10% { opacity: 1; }
    30% { opacity: 1; }
    40% { opacity: 0; }
    100% { opacity: 0; }
}


.name {
    font-size: 36px;
    margin: 0;
}

.tagline {
    font-size: 18px;
    margin: 5px 0;
}

.profile-photo {
    width: 260px;
    border-radius: 4px;
    margin-left: 40px;
}

h3 {
    margin-top: 40px;
    font-size: 24px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.footer {
    background: #f0f0f0;
    padding: 20px;
    text-align: center;
    margin-top: 60px;
    font-size: 14px;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }
    .profile-photo {
        margin: 20px 0 0;
    }
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    background: #f5f5f5;
    border-bottom: 1px solid #ddd;
}

.header-logo {
    height: 70px;
    width: auto;
}

.header-right {
    text-align: right;
    font-family: "Georgia", serif;
    font-size: 0.95rem;
    line-height: 1.4;
}

.header-line {
    margin: 2px 0;
}

@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .header-right {
        text-align: center;
        margin-top: 10px;
    }
}


