@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=Cinzel:wght@400;600&display=swap');

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

body {
    font-family: 'Cormorant Garamond', serif;
    background-color: #faf8f5;
    color: #2c2c2c;
    overflow-x: hidden;
}

.footer {
    padding: clamp(20px, 4vw, 40px) clamp(15px, 4vw, 60px);
    background-color: #2c2c2c;
    color: #fff;
}

.page-hero {
    background: linear-gradient(135deg, #f4a442 0%, #c85a1a 50%, #8b3a0e 100%);
    padding: clamp(3.5rem, 12vw, 6.25rem) clamp(1.25rem, 5vw, 3.75rem) clamp(3rem, 10vw, 5rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L35 25L60 30L35 35L30 60L25 35L0 30L25 25Z' fill='%23ffd89c' opacity='0.1'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, #faf8f5, transparent);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: min(90%, 56.25rem);
    margin: 0 auto;
}

.breadcrumb {
    color: #fff5e6;
    font-size: clamp(0.7rem, 1.8vw, 0.875rem);
    letter-spacing: clamp(0.5px, 0.1vw, 1px);
    text-transform: uppercase;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.blog-category-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: clamp(0.5rem, 1.5vw, 0.625rem) clamp(1.25rem, 3vw, 1.5rem);
    border-radius: 25px;
    font-size: clamp(0.65rem, 1.5vw, 0.75rem);
    letter-spacing: clamp(1px, 0.2vw, 1.5px);
    text-transform: uppercase;
    margin-bottom: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.blog-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.75rem, 6vw, 3rem);
    color: white;
    font-weight: 600;
    margin-bottom: clamp(1.25rem, 3vw, 1.875rem);
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.blog-meta-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(0.75rem, 2.5vw, 1.5rem);
    flex-wrap: wrap;
    color: #fff5e6;
    font-size: clamp(0.75rem, 1.8vw, 0.875rem);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: clamp(0.4rem, 1vw, 0.5rem);
    padding: clamp(0.4rem, 1.2vw, 0.5rem) clamp(0.75rem, 1.8vw, 1rem);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    transition: all 0.3s;
}

.meta-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.blog-content-wrapper {
    max-width: min(90%, 62.5rem);
    margin: clamp(-2.5rem, -8vw, -4rem) auto 0;
    padding: 0 clamp(1.25rem, 4vw, 3.75rem) clamp(4rem, 10vw, 6.25rem);
    position: relative;
    z-index: 2;
}

.featured-image-container {
    width: 100%;
    height: clamp(15rem, 35vw, 28rem);
    border-radius: clamp(0.75rem, 2vw, 1rem);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-bottom: clamp(2.5rem, 6vw, 4rem);
    background: white;
}

.featured-image-container img,
.featured-image-container svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-image-container:hover img,
.featured-image-container:hover svg {
    transform: scale(1.05);
}

.blog-content-card {
    background: white;
    border-radius: clamp(0.75rem, 2vw, 1rem);
    padding: clamp(2rem, 6vw, 4rem);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.blog-content {
    font-size: clamp(1rem, 2.2vw, 1.125rem);
    line-height: 1.9;
    color: #3a3a3a;
}

.blog-content p {
    margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
}

.blog-content h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.5rem, 4.5vw, 2rem);
    color: #2c2c2c;
    margin-top: clamp(2rem, 5vw, 3rem);
    margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 600;
    position: relative;
    padding-left: clamp(0.75rem, 2vw, 1rem);
}

.blog-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: linear-gradient(to bottom, #f4a442, #c85a1a);
    border-radius: 2px;
}

.blog-content h3 {
    font-size: clamp(1.25rem, 3.5vw, 1.625rem);
    color: #2c2c2c;
    margin-top: clamp(1.5rem, 4vw, 2.25rem);
    margin-bottom: clamp(0.75rem, 2vw, 1.125rem);
    font-weight: 600;
}

.blog-content ul,
.blog-content ol {
    margin: clamp(1rem, 2.5vw, 1.5rem) 0;
    padding-left: clamp(1.5rem, 3.5vw, 2rem);
}

.blog-content li {
    margin-bottom: clamp(0.5rem, 1.5vw, 0.75rem);
}

.blog-content li::marker {
    color: #c85a1a;
}

.blog-content blockquote {
    border-left: 4px solid #f4a442;
    padding: clamp(1rem, 3vw, 1.5rem) clamp(1.25rem, 4vw, 2rem);
    margin: clamp(1.5rem, 4vw, 2rem) 0;
    background: #fff5e6;
    font-style: italic;
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: #5a4a3a;
    border-radius: 4px;
}

.blog-content a {
    color: #c85a1a;
    text-decoration: none;
    border-bottom: 1px solid rgba(200, 90, 26, 0.3);
    transition: all 0.3s;
}

.blog-content a:hover {
    border-bottom-color: #c85a1a;
    color: #d97a2f;
}

.share-section {
    text-align: center;
    padding: clamp(2rem, 5vw, 2.5rem);
    background: #fff5e6;
    border-radius: clamp(0.5rem, 1.5vw, 0.75rem);
    margin: clamp(2rem, 5vw, 3rem) 0;
}

.share-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.25rem, 3.5vw, 1.5rem);
    color: #2c2c2c;
    margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 600;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: clamp(0.5rem, 1.5vw, 1rem);
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: clamp(0.4rem, 1vw, 0.5rem);
    padding: clamp(0.625rem, 1.5vw, 0.75rem) clamp(1rem, 2.5vw, 1.5rem);
    border-radius: 25px;
    text-decoration: none;
    font-size: clamp(0.8rem, 1.8vw, 0.875rem);
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.share-btn.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0c63d4 100%);
}

.share-btn.twitter {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
}

.share-btn.linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
}

.share-btn.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
}

.blog-navigation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(1.25rem, 3vw, 2rem);
    margin-bottom: clamp(3rem, 6vw, 4rem);
}

.nav-post {
    background: white;
    border-radius: clamp(0.5rem, 1.5vw, 0.75rem);
    padding: clamp(1.25rem, 3vw, 1.75rem);
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #ffeacc;
}

.nav-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(200, 90, 26, 0.15);
    border-color: #f4a442;
}

.nav-post-label {
    font-size: clamp(0.65rem, 1.5vw, 0.75rem);
    color: #c85a1a;
    text-transform: uppercase;
    letter-spacing: clamp(0.5px, 0.1vw, 1px);
    margin-bottom: clamp(0.5rem, 1.5vw, 0.75rem);
    font-weight: 600;
}

.nav-post-title {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 600;
    color: #2c2c2c;
    line-height: 1.4;
}

.related-posts-section {
    background: white;
    border-radius: clamp(0.75rem, 2vw, 1rem);
    padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 3rem);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: clamp(3rem, 7vw, 4.5rem);
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.5rem, 4.5vw, 2.25rem);
    color: #2c2c2c;
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    position: relative;
    padding-bottom: clamp(1rem, 2.5vw, 1.5rem);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(60px, 12vw, 80px);
    height: 3px;
    background: linear-gradient(90deg, #f4a442, #c85a1a);
    border-radius: 2px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(1.25rem, 3vw, 2rem);
}

.related-card {
    background: white;
    border-radius: clamp(0.5rem, 1.5vw, 0.75rem);
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #ffeacc;
}

.related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(200, 90, 26, 0.15);
    border-color: #f4a442;
}

.related-image {
    width: 100%;
    height: clamp(10rem, 22vw, 12rem);
    overflow: hidden;
}

.related-image img,
.related-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-card:hover .related-image img,
.related-card:hover .related-image svg {
    transform: scale(1.1);
}

.related-content {
    padding: clamp(1rem, 2.5vw, 1.5rem);
}

.related-category {
    font-size: clamp(0.6rem, 1.4vw, 0.6875rem);
    color: #c85a1a;
    text-transform: uppercase;
    letter-spacing: clamp(0.5px, 0.1vw, 1px);
    margin-bottom: clamp(0.5rem, 1.2vw, 0.625rem);
    font-weight: 600;
    background: #ffeacc;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
}

.related-title {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 600;
    color: #2c2c2c;
    line-height: 1.4;
    margin-bottom: clamp(0.5rem, 1.5vw, 0.75rem);
}

.related-excerpt {
    font-size: clamp(0.85rem, 1.8vw, 0.9375rem);
    color: #666;
    line-height: 1.7;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: clamp(0.5rem, 1.2vw, 0.625rem);
    background: linear-gradient(135deg, #f4a442 0%, #c85a1a 100%);
    color: white;
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3.5vw, 2rem);
    border-radius: 30px;
    text-decoration: none;
    font-size: clamp(0.875rem, 1.8vw, 1rem);
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 auto;
    display: flex;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(200, 90, 26, 0.3);
}

.back-to-blog:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(200, 90, 26, 0.4);
    background: linear-gradient(135deg, #d97a2f 0%, #a85515 100%);
}

/* Responsive Typography */
@media (max-width: 768px) {
    .blog-content {
        text-align: left;
    }
    
    .blog-content p {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: clamp(2.5rem, 10vw, 3.5rem) clamp(1rem, 4vw, 1.25rem) clamp(2rem, 8vw, 3rem);
    }
    
    .blog-meta-hero {
        gap: clamp(0.5rem, 2vw, 0.75rem);
    }
    
    .share-buttons {
        gap: clamp(0.4rem, 1.2vw, 0.5rem);
    }
}

.share-btn.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.share-btn.copy {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

.share-btn {
    border: none;
    cursor: pointer;
}

.copy-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1000;
    font-weight: 600;
}

.copy-notification.show {
    opacity: 1;
    transform: translateY(0);
}