/* Holy Divas - Luxury Glamour Style */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

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

:root {
    --white: #ffffff;
    --ivory: #fffff0;
    --gold: #d4af37;
    --gold-light: #f4e5b2;
    --gold-dark: #b8941f;
    --purple: #6b46c1;
    --purple-light: #9f7aea;
    --purple-dark: #4a3475;
    --gray-light: #f8f9fa;
    --gray-medium: #e9ecef;
    --text-dark: #2d3748;
    --text-light: #718096;
}

body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    background: linear-gradient(180deg, var(--white) 0%, var(--ivory) 100%);
    color: var(--text-dark);
    line-height: 1.9;
    font-size: 19px;
}

header {
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 50%, var(--gold) 100%);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
    border-bottom: 6px solid var(--gold);
    box-shadow: 0 8px 20px rgba(107, 70, 193, 0.3);
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.08'%3E%3Cpath d='M40 40 L42 38 L44 40 L42 42 Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.logo h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 12px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
}

.tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold-light);
}

nav {
    background: var(--white);
    border-bottom: 3px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

nav li {
    margin: 0;
}

nav a {
    display: block;
    padding: 1.2rem 2.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav a:hover::after {
    width: 80%;
}

nav a:hover {
    color: var(--gold-dark);
    background: var(--gray-light);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero {
    text-align: center;
    padding: 5rem 3rem;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
    border: 1px solid var(--gold);
    margin-bottom: 4rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--gold-light);
    pointer-events: none;
}

.hero h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--purple-dark);
    margin-bottom: 2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.5rem;
    max-width: 900px;
    margin: 0 auto 2.5rem;
    color: var(--text-light);
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 2px solid var(--gold-dark);
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.card {
    background: var(--white);
    border: 1px solid var(--gray-medium);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--gold) 0%, var(--purple) 100%);
    transition: height 0.4s ease;
}

.card:hover::before {
    height: 100%;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    border-color: var(--gold);
}

.card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-bottom: 3px solid var(--gold);
}

.card-content {
    padding: 2rem;
}

.card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--purple-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.card-link {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--gold-dark);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
}

.card-link:hover {
    background: var(--gold);
    color: var(--white);
}

footer {
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 100%);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
    border-top: 6px solid var(--gold);
    margin-top: 5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-links a {
    color: var(--gold-light);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.copyright {
    font-size: 0.9rem;
    color: var(--purple-light);
    font-family: 'Montserrat', sans-serif;
}

.sidebar {
    background: var(--white);
    border: 1px solid var(--gray-medium);
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.sidebar h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--purple-dark);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gold);
}

.sidebar ul {
    list-style: none;
}

.sidebar li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--gray-medium);
}

.sidebar a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: block;
}

.sidebar a:hover {
    color: var(--gold-dark);
    padding-left: 10px;
}

.main-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

@media (max-width: 1024px) {
    .main-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .logo h1 {
        font-size: 2.2rem;
        letter-spacing: 6px;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    nav ul {
        flex-direction: column;
    }

    nav a {
        border-bottom: 1px solid var(--gray-medium);
        padding: 1rem 1.5rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }
}

.post-content {
    background: var(--white);
    padding: 3rem;
    border: 1px solid var(--gray-medium);
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.post-content h1, .post-content h2, .post-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--purple-dark);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.post-content h1 {
    font-size: 2.8rem;
    letter-spacing: 2px;
}

.post-content h2 {
    font-size: 2.2rem;
    letter-spacing: 1px;
}

.post-content h3 {
    font-size: 1.6rem;
}

.post-content p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

.post-content ul, .post-content ol {
    margin-left: 2.5rem;
    margin-bottom: 1.5rem;
}

.post-content li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

blockquote {
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--ivory) 100%);
    border-left: 5px solid var(--gold);
    padding: 2rem 2.5rem;
    margin: 3rem 0;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--purple-dark);
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

blockquote::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: var(--gold);
    position: absolute;
    top: -20px;
    left: 20px;
    opacity: 0.3;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-medium);
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    border-color: var(--gold);
}

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

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

.pagination {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 4rem 0;
}

.pagination a {
    padding: 0.9rem 2rem;
    background: var(--white);
    color: var(--purple-dark);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.pagination a:hover {
    background: var(--gold);
    color: var(--white);
}

.search-box {
    margin-bottom: 2rem;
}

.search-box input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-medium);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--gold);
}

.search-box button {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.search-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}
