/* General Body Styles */
body {
    margin: 0;
    font-family: 'Lato', sans-serif;
    background-color: #ffffff;
    color: #333;
    text-align: center;
}

.page-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header and Navigation */
header {
    padding: 20px 0;
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}

header nav a {
    font-weight: bold;
    color: #555;
    padding: 5px 0;
    letter-spacing: 1px;
}

header nav a.active {
    color: #b74444; /* Active link color */
}

/* Dividers */
.divider {
    border-top: 1px solid #c8e0e0;
}

.divider-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.divider-icon .circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #c8e0e0;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
}

/* Main Content: Hero Section */
main {
    padding: 40px 0;
}

.title-container {
    margin-bottom: 30px;
}

h1.name-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    color: #111;
}

p.subtitle {
    margin: 5px 0 0 0;
    font-size: 16px;
    letter-spacing: 2px;
    color: #555;
}

.main-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.latest-work-link {
    display: inline-block;
    border: 1px solid #c8e0e0;
    padding: 10px 20px;
    margin: 30px 0;
    color: #555;
}

.demo-reel-button {
    display: inline-block;
    background-color: #b74444;
    color: #fff;
    padding: 15px 40px;
    font-weight: bold;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* Social Section */
.social-section {
    padding: 20px 0;
}

.social-section h2 {
    font-size: 18px;
    color: #555;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #f0f0f0;
    border-radius: 50%;
}

.social-icons img {
    width: 24px;
    height: 24px;
    opacity: 0.8;
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid #c8e0e0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

footer p {
    margin: 0;
    color: #767676;
    font-size: 14px;
}

.powered-by {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #767676;
    font-size: 14px;
}

.powered-by img {
    height: 20px;
}

.footer-bottom {
    margin-top: 50px;
    font-size: 14px;
    font-weight: bold;
    color: #555;
}