/*
Theme Name: Desireland
Theme URI: https://desireland.app
Author: Desireland Team
Author URI: https://desireland.app
Description: A clean, fast-loading blog theme with a black, white, and beige color scheme
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: desireland
*/

:root {
    --primary-color: #000000;
    --secondary-color: #F5F5DC;
    --text-color: #333333;
    --background-color: #FFFFFF;
    --accent-color: #000000;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    background-image: url('data:image/svg+xml;utf8,<svg width="100%25" height="100%25" xmlns="http://www.w3.org/2000/svg"><path d="M0 40 Q50 80 100 40 T200 40 T300 40 T400 40 T500 40 T600 40 T700 40 T800 40 T900 40 T1000 40 V1000 H0 Z" fill="%23F5F5DC" fill-opacity="0.15"/></svg>');
    background-repeat: repeat;
    background-size: 600px 200px;
}

/* Header Styles */
.site-header {
    background-color: #000 !important;
    border-bottom: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 1rem 0;
}

.site-title {
    font-family: 'Inter', serif;
    font-size: 2rem;
    letter-spacing: 2px;
}

.site-title a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}

/* Navigation */
.main-navigation {
    background-color: var(--background-color);
}

.main-navigation a {
    color: var(--primary-color);
}

.main-navigation a:hover {
    color: var(--accent-color);
}

/* Content Area */
.content-area {
    background-color: var(--background-color);
    padding: 2rem 0;
}

/* Sidebar */
.widget-area {
    background-color: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 4px;
}

/* Footer */
.site-footer {
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 2rem 0;
}

/* Blog Post Styles */
.entry-title a {
    color: var(--primary-color);
    text-decoration: none;
}

.entry-meta {
    color: #666;
    font-size: 0.9rem;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--background-color);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

/* NEW ADDITION: Utility classes */
.bg-beige {
    background-color: rgb(245, 227, 194) !important;
}
.text-beige {
    color: #F5F5DC !important;
}

/* NEW ADDITION: Notification bar */
.notification-bar {
    background-color: rgb(245, 227, 194);
    color: #222;
    font-size: 1rem;
    border-bottom: 1px solid #e5e5c7;
    z-index: 1050;
}

/* NEW ADDITION: Download button */
.btn-beige {
    background-color: rgb(245, 227, 194);
    color: #000;
    border: none;
    font-weight: 600;
    border-radius: 8px;
    padding: 0.5rem 1.5rem;
    transition: background 0.2s, color 0.2s;
}
.btn-beige:hover, .btn-beige:focus {
    background-color: rgb(245, 227, 194);
    color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-header {
        padding: 0.5rem 0;
    }
    
    .content-area {
        padding: 1rem 0;
    }
}

@media (max-width: 991px) {
    .btn-beige.btn-lg {
        display: none !important;
    }
}

/* NEW ADDITION: Prepare for wavy card styles */
.card-wavy {
    border-radius: 32px 32px 48px 48px/32px 32px 64px 64px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    background: #fff;
    position: relative;
    margin-bottom: 2rem;
    transition: box-shadow 0.2s;
    min-height: 480px;
    display: block;
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-wavy .card-bottom {
    background: #000;
    color: #fff;
    padding: 1.5rem 1rem 1.5rem 1.5rem;
    border-bottom-left-radius: 48px 64px;
    border-bottom-right-radius: 48px 64px;
    min-height: 120px;
    position: relative;
    z-index: 2;
}

.card-category {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: #fff;
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    padding: 0.25rem 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    z-index: 3;
    border: 1.5px solid #000;
}

.card-wavy .entry-title {
    color: #fff;
    transition: color 0.2s ease;
}

.card-wavy:hover .entry-title {
    color: #fff;
}

.card-wavy .post-thumbnail {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.card-wavy .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card-wavy:hover .post-thumbnail img {
    transform: scale(1.1);
}

/* NEW ADDITION: Single Post Page Styles */
.single-post-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.single-post-header {
    margin-bottom: 3rem;
}

.single-post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.single-post-category {
    background: #000;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

.single-post-date {
    color: #666;
    font-size: 0.95rem;
}

.single-post-title {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.single-post-featured-image {
    margin: 2rem 0 3rem;
    border-radius: 12px;
    overflow: hidden;
}

.single-post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.single-post-excerpt {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 3rem;
    font-style: italic;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.single-post-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
}

.single-post-content p {
    margin-bottom: 1.5rem;
}

.single-post-content h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1.5rem;
    font-weight: 700;
}

.single-post-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.single-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.single-post-content blockquote {
    border-left: 4px solid #000;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #444;
}

.single-post-content ul, 
.single-post-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.single-post-content li {
    margin-bottom: 0.75rem;
}

.single-post-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.single-post-tags {
    margin-bottom: 2rem;
}

.single-post-tags a {
    display: inline-block;
    background: #f5f5f5;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    margin: 0.25rem;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.2s;
}

.single-post-tags a:hover {
    background: #eee;
}

.single-post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.single-post-navigation a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.single-post-navigation a:hover {
    color: #000;
}

@media (max-width: 768px) {
    .single-post-container {
        padding: 2rem 1rem;
    }
    
    .single-post-title {
        font-size: 2rem;
    }
    
    .single-post-excerpt {
        font-size: 1.1rem;
    }
    
    .single-post-content {
        font-size: 1rem;
    }
}

/* NEW ADDITION: Download App Block Styles */
.download-app-block {
    background: #d6ccfa;
    border-radius: 16px;
    margin: 3.5rem 0 3.5rem 0;
    padding: 3.5rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
    min-width: 70vw;
    margin: auto;
}
.download-app-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.download-app-left {
    flex: 1 1 60%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.download-app-headline {
    font-size: 2.3rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2.2rem;
    color: #fff;
}
.download-app-btn {
    background: #000;
    color: #fff;
    font-weight: 700;
    font-size: 1.35rem;
    padding: 1.1rem 0;
    width: 400px;
    text-align: center;
    border: none;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    margin-bottom: 1rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.download-app-btn:hover {
    background: #222;
    color: #fff;
}
.download-app-right {
    flex: 1 1 40%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.download-app-right svg {
    max-width: 200px;
    height: auto;
}
@media (max-width: 1100px) {
    .download-app-headline {
        font-size: 1.5rem;
    }
    .download-app-btn {
        width: 100%;
        font-size: 1.1rem;
    }
    .download-app-right svg {
        max-width: 120px;
    }
}
@media (max-width: 900px) {
    .download-app-block {
        padding: 2rem 0.5rem;
        border-radius: 10px;
        left: 0;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }
    .download-app-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .download-app-right {
        justify-content: flex-start;
        margin-top: 2rem;
    }
    .download-app-btn {
        width: 100%;
        min-width: 0;
    }
} 