:root {
    --color-primary: #165153;
    /* Dark Teal */
    --color-secondary: #212121;
    /* Dark Grey */
    --color-background: #F3F1F0;
    /* Off-white */
    --color-white: #ffffff;
    --color-text-body: #333333;

    --font-heading: 'Abril Fatface', cursive, serif;
    --font-body: 'Karla', sans-serif;

    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;

    --container-width: 1100px;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-background);
    color: var(--color-text-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Header */
.site-header {
    background-color: var(--color-background);
    /* Or maybe darker like the original header? checking... original was light/white-ish */
    padding: var(--spacing-lg) 0;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    /* subtle separation */
}

.header-inner {
    display: flex;
    justify-content: center;
    /* Centered since branding is gone */
    align-items: center;
}

.site-branding {
    display: none;
    /* Hide if element still exists, though removed in HTML */
}

.site-navigation ul {
    display: flex;
    gap: var(--spacing-lg);
}

.site-navigation a {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.9rem;
    color: var(--color-primary);
}

.site-navigation a:hover,
.site-navigation a.current {
    color: var(--color-secondary);
}

/* Text Links */
.text-link {
    color: var(--color-primary);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: var(--color-secondary);
    background-color: rgba(0, 0, 0, 0.05);
    /* subtle highlight */
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    position: absolute;
    right: var(--spacing-md);
    /* Position it since center alignment changes things */
    top: 50%;
    transform: translateY(-50%);
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: center;
    padding: calc(var(--spacing-xl) * 2) 0;
    position: relative;
    /* Adding a subtle overlay or pattern if needed, but keeping clean for now */
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 400;
    /* Abril Fatface is already bold-ish */
    margin-bottom: var(--spacing-sm);
    line-height: 1.1;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Bio Section */
.bio-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-background);
}

.bio-content {
    max-width: 900px;
    text-align: center;
    font-size: 1.2rem;
}

.bio-content p {
    margin-bottom: var(--spacing-lg);
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

.cta-container {
    margin-top: var(--spacing-lg);
}

.btn {
    display: inline-block;
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 1rem 2.5rem;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
}

/* Gallery Section */
.gallery-section {
    padding-bottom: var(--spacing-xl);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.gallery-item img {
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.02);
}

/* Home Gallery Specifics */
.home-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.home-gallery .gallery-item {
    aspect-ratio: 4/3;
    /* Landscape */
    overflow: hidden;
    border-radius: 4px;
}

.home-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Footer */
.site-footer {
    padding: var(--spacing-xl) 0;
    text-align: center;
    color: var(--color-primary);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    /* subtle separation */
}

.social-links {
    margin-bottom: var(--spacing-md);
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

.social-links a {
    color: var(--color-primary);
    transition: transform 0.2s ease;
}

.social-links a:hover {
    transform: scale(1.1);
}

.site-info {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .site-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--color-background);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: var(--spacing-xl) var(--spacing-lg);
        transition: right 0.3s ease;
        z-index: 1000;
        display: flex;
        align-items: center;
        /* Center items vertically */
    }

    .site-navigation.active {
        right: 0;
    }

    .site-navigation ul {
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: var(--spacing-lg);
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

/* About Section Specifics */
.about-content-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-background);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
    margin-bottom: var(--spacing-xl);
}

.about-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-text {
    font-size: 1.15rem;
}

.about-text p {
    margin-bottom: var(--spacing-md);
}

.fun-facts-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    /* Optional: adds a nice card effect or just separation */
    padding: var(--spacing-lg);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.fun-facts-title {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.fun-facts-list {
    list-style: none;
    /* Removed discs for cleaner centered look */
    padding-left: 0;
    text-align: left;
    /* Keep text readable */
    display: inline-block;
    /* allows resizing to content */
}

.fun-facts-list li {
    margin-bottom: var(--spacing-sm);
    padding-left: 1.5rem;
    position: relative;
}

.fun-facts-list li::before {
    content: "•";
    /* Custom bullet */
    color: var(--color-primary);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1.4rem;
}

/* Gallery adjustments for reference look */
.three-col-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    /* Closer gap as per reference */
}

.three-col-gallery .gallery-item {
    aspect-ratio: 3/4;
    /* Vertical portrait look */
    overflow: hidden;
    border-radius: 4px;
}

.three-col-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Contact Section Specifics */
.contact-section {
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.contact-content {
    max-width: 800px;
}

.intro-text {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xl);
}

.large-icons {
    gap: var(--spacing-lg);
}

.large-icons a:hover {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .three-col-gallery,
    .home-gallery {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }
}