/* Alley of the Dolls - Matching WordPress Button Theme */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,700;1,400;1,700&family=Lato:wght@300;400;700&display=swap');

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

html {
    font-size: 16px;
}

body {
    font-family: 'Lato', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #777;
    background-color: #f3f3f3;
    background-image: url('images/buttonbg.png');
    background-repeat: repeat;
    padding: 20px 0;
}

.site-wrapper {
    max-width: 1142px;
    width: 90%;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.container {
    padding: 20px;
}

/* Header */
header {
    background-color: #fff;
    color: #222;
    padding: 0;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.hero-banner {
    width: 100%;
    height: auto;
    display: block;
}

.header-content {
    padding: 40px 20px 30px;
}

header h1 {
    font-family: 'Lora', 'Garamond', serif;
    font-style: italic;
    font-size: 3em;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.2;
}

header h1 a {
    color: #1bb5b5;
    text-decoration: none;
    transition: color 0.3s;
}

header h1 a:hover {
    color: #f78769;
}

header .tagline {
    font-size: 1em;
    color: #777;
    font-weight: 300;
}

/* Navigation */
nav {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

nav a {
    color: #f78769;
    text-decoration: none;
    margin: 0 20px;
    font-weight: 400;
    font-size: 1.1em;
    transition: color 0.3s;
}

nav a:hover {
    color: #1bb5b5;
}

/* Episode List */
article.episode {
    background: #fff;
    padding: 40px 0;
    margin-bottom: 0;
    border-bottom: 1px solid #ddd;
}

article.episode:last-child {
    border-bottom: none;
}

.episode-header {
    margin-bottom: 15px;
}

.episode-number {
    color: #bbb;
    font-weight: 300;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.episode-date {
    color: #bbb;
    font-size: 0.9em;
    margin-left: 15px;
}

.episode h2 {
    font-family: 'Lora', 'Garamond', serif;
    font-style: italic;
    font-size: 2.2em;
    font-weight: 400;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.3;
}

.episode h2 a {
    color: #f78769;
    text-decoration: none;
    transition: color 0.3s;
}

.episode h2 a:hover {
    color: #1bb5b5;
}

.episode h3 {
    font-family: 'Lora', 'Garamond', serif;
    font-style: italic;
    font-size: 1.6em;
    font-weight: 400;
    color: #222;
    margin: 30px 0 20px;
    line-height: 1.3;
}

.episode-description {
    color: #777;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1em;
}

.episode-description p {
    margin-bottom: 15px;
}

/* Audio Player */
audio {
    width: 100%;
    max-width: 600px;
    margin: 20px 0;
    display: block;
}

/* Links */
.episode-links {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.episode-links a {
    color: #f78769;
    text-decoration: underline;
    font-weight: 400;
    transition: color 0.3s;
}

.episode-links a:hover {
    color: #1bb5b5;
}

.episode-links span {
    color: #bbb;
    font-size: 0.95em;
}

/* Buttons */
.button {
    display: inline-block;
    background-color: #f78769;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 400;
    transition: background-color 0.3s;
    border: none;
}

.button:hover {
    background-color: #1bb5b5;
    color: white;
}

/* About Page */
.about-content {
    background: #fff;
    padding: 40px 0;
    line-height: 1.8;
}

.about-content h2, .about-content h3 {
    font-family: 'Lora', 'Garamond', serif;
    font-style: italic;
    font-weight: 400;
    color: #222;
    margin: 30px 0 20px;
}

.about-content h2 {
    font-size: 2.2em;
}

.about-content h3 {
    font-size: 1.6em;
}

.about-content p {
    color: #777;
    margin-bottom: 20px;
}

.about-content a {
    color: #f78769;
    text-decoration: underline;
}

.about-content a:hover {
    color: #1bb5b5;
}

.about-content ul {
    list-style: none;
    padding: 0;
}

.about-content ul li {
    margin: 15px 0;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    color: #bbb;
    margin-top: 40px;
    border-top: 1px solid #ddd;
    background-color: #fff;
}

footer p {
    margin: 10px 0;
    font-size: 0.9em;
}

footer a {
    color: #f78769;
    text-decoration: none;
}

footer a:hover {
    color: #1bb5b5;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-wrapper {
        width: 95%;
    }

    .container {
        padding: 15px;
    }

    .header-content {
        padding: 30px 15px 20px;
    }

    header h1 {
        font-size: 2.2em;
    }

    .episode {
        padding: 30px 0;
    }

    .episode h2 {
        font-size: 1.8em;
    }

    nav a {
        display: inline-block;
        margin: 10px 15px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .site-wrapper {
        width: 100%;
    }

    .container {
        padding: 10px;
    }

    .header-content {
        padding: 25px 15px 15px;
    }

    header h1 {
        font-size: 1.8em;
    }

    .episode {
        padding: 25px 0;
    }

    .episode h2 {
        font-size: 1.5em;
    }

    nav {
        padding: 15px;
    }

    nav a {
        display: block;
        margin: 12px 0;
    }
}
