/**
 * Main CSS file for Panoee theme
 */

@import "tailwindcss";
@import "./fonts.css";
@import "./style.css";
@import "./admin.css";

:root {
    --color-primary: #F1E29B;
    --color-title: rgba(233,27,45,1);
}

/* Turbo.js progress bar */
.turbo-progress-bar {
    height: 3px;
    background-color: hsl(var(--p));
}

/* Skip link */
.skip-link:focus {
    background-color: hsl(var(--b1));
    color: hsl(var(--bc));
    padding: 0.5rem 1rem;
    z-index: 100;
    position: absolute;
    top: 0;
    left: 0;
}

/* WordPress core styles */
.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1.5rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
}

.wp-caption {
    margin-bottom: 1.5rem;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption-text {
    margin: 0.8rem 0;
    font-size: 0.875rem;
    color: hsl(var(--bc) / 0.7);
    text-align: center;
}

.gallery {
    margin-bottom: 1.5rem;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
    padding: 0.5rem;
}

.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

.gallery-columns-5 .gallery-item {
    max-width: 20%;
}

.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
}

.gallery-caption {
    display: block;
    font-size: 0.875rem;
    color: hsl(var(--bc) / 0.7);
}

/* Comments */
.comment-list {
    list-style: none;
    padding: 0;
}

.comment-body {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid hsl(var(--b3));
    border-radius: 0.5rem;
}

.comment-meta {
    margin-bottom: 0.5rem;
}

.comment-author .avatar {
    float: left;
    margin-right: 0.5rem;
    border-radius: 50%;
}

.comment-metadata {
    font-size: 0.875rem;
    color: hsl(var(--bc) / 0.7);
}

.comment-content {
    clear: both;
    margin-top: 0.5rem;
}

.comment-reply-link {
    font-size: 0.875rem;
}

/* Pagination */
.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    border-radius: 0.375rem;
    background-color: hsl(var(--b1));
    color: hsl(var(--bc));
    text-decoration: none;
}

.pagination .page-numbers.current {
    background-color: hsl(var(--p));
    color: hsl(var(--pc));
}

.pagination .page-numbers:hover:not(.current) {
    background-color: hsl(var(--b2));
}

/* Widget styles */
.widget {
    margin-bottom: 2rem;
}

.widget-title {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.widget ul {
    list-style: none;
    padding-left: 0;
}

.widget li {
    padding: 0.5rem 0;
    border-bottom: 1px solid hsl(var(--b3));
}

.widget li:last-child {
    border-bottom: none;
}

/* Custom styles for corporate theme */
.hero-section {
    background-color: hsl(var(--b2));
    padding: 4rem 0;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: hsl(var(--bc) / 0.8);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: hsl(var(--p));
    color: hsl(var(--pc));
    border-radius: 0.375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: hsl(var(--pf));
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
} 