* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lora', 'Roboto', serif;
    line-height: 1.6;
    color: #333333;
    background-color: #f5f0e7;
    padding-top: 110px;
}

header {
    background: #4a2c2c;
    color: #fff;
    padding: 1rem;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

header p {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
}

nav {
    background: #3a2222;
    padding: 0.5rem;
    position: fixed;
    width: 100%;
    top: 70px;
    z-index: 1001;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background 0.3s;
    font-family: 'Roboto', sans-serif;
}

nav a:hover {
    background: #5a3c3c;
}

nav a.active {
    color: #b78c5a;
    text-decoration: underline;
    font-weight: bold;
}

main {
    margin-top: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem;
}

.hero {
    background: url('images/hero.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 12rem 2rem 8rem;
    position: relative;
    margin-top: 0;
    max-width: 100%;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-family: 'Roboto', sans-serif;
}

.hero-description {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.6;
    margin: 20px 0;
    font-family: 'Lora', serif;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-quote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 3rem;
    font-family: 'Cormorant Garamond', serif;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #4a2c2c;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
    font-size: 1.1rem;
    font-family: 'Roboto', sans-serif;
}

.btn:hover {
    background: #5a3c3c;
}

.layout-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.main-content section {
    padding: 2rem;
    margin-bottom: 2rem;
}

.main-content h2 {
    margin: 1.5rem 0 1rem;
    font-size: 2rem;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    color: #4a2c2c;
}

.introduction {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.introduction p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.ideas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.idea-card {
    background: #fafafa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.2s ease;
}

.idea-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.idea-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.idea-card h3 {
    margin-bottom: 0.8rem;
    color: #4a2c2c;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
}

.idea-card p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.idea-card a {
    color: #4a2c2c;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
}

.idea-card a:hover {
    text-decoration: underline;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.work-item {
    display: flex;
    gap: 1rem;
    background: #fafafa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}

.work-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.work-cover {
    flex: 0 0 100px;
    height: 150px;
    border-radius: 4px;
    overflow: hidden;
}

.work-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-content {
    flex: 1;
}

.work-content h3 {
    margin-bottom: 0.5rem;
    color: #4a2c2c;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
}

.work-content p {
    font-size: 0.9rem;
}

.explore-section {
    margin: 40px 0 20px;
}

.explore-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    text-align: center;
    margin: 40px 0 20px;
    color: #4a2c2c;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.explore-card {
    background: #fafafa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.2s ease;
}

.explore-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.explore-card i {
    color: #b78c5a;
    margin-bottom: 1rem;
}

.explore-card h3 {
    margin-bottom: 0.5rem;
    color: #4a2c2c;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
}

.explore-card p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #666;
}

.explore-card a {
    color: #4a2c2c;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
}

.explore-card a:hover {
    text-decoration: underline;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.sidebar-card h3 {
    color: #4a2c2c;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #b78c5a;
    padding-bottom: 0.5rem;
}

.quote-text {
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    border-left: 3px solid #4a2c2c;
    padding-left: 1rem;
    margin-bottom: 0.8rem;
}

.quote-author {
    font-size: 0.9rem;
    color: #666;
    text-align: right;
}

.recommended-works {
    list-style: none;
    padding: 0;
}

.recommended-works li {
    margin-bottom: 1rem;
}

.recommended-works a {
    display: block;
    padding: 0.8rem;
    background: #f5f0e7;
    border-radius: 4px;
    color: #4a2c2c;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.recommended-works a:hover {
    background: #e5ddd0;
}

.update-list {
    list-style: none;
    padding: 0;
}

.update-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.update-list li:last-child {
    border-bottom: none;
}

.update-date {
    color: #b78c5a;
    font-size: 0.8rem;
    font-family: 'Roboto', sans-serif;
}

footer {
    background: #4a2c2c;
    color: #fff;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-info {
    margin-bottom: 1.5rem;
}

.footer-info p {
    margin-bottom: 0.5rem;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
}

.footer-info a {
    color: #b78c5a;
    text-decoration: none;
}

.footer-info a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .layout-container {
        grid-template-columns: 1fr;
    }

    .sidebar {
        order: 2;
    }

    .ideas-grid {
        grid-template-columns: 1fr;
    }

    .works-grid {
        grid-template-columns: 1fr;
    }

    .work-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .explore-grid {
        grid-template-columns: 1fr;
    }
}
