/*
Theme Name: Windemere Pekingese
Description: Custom theme preserving the original Windemere Pekingese website design
Version: 1.0
Author: Reconstructed by Manus
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Kristen ITC', Arial, Tahoma, sans-serif;
    background-image: url('images/Background.jpg');
    background-attachment: fixed;
    background-repeat: repeat;
    font-size: 14px;
    color: #800000;
    margin: 0;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Kristen ITC', Arial, sans-serif;
    color: #800000;
    font-weight: bold;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    text-align: center;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #000000;
}

/* Links */
a {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    text-decoration: none;
    color: #800000;
}

a:hover {
    color: #990033;
    text-decoration: underline;
}

.link {
    font-family: Arial, Verdana, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: bold;
    color: #990033;
    text-decoration: none;
}

.link:hover {
    color: #285080;
    text-decoration: underline;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.site-header {
    text-align: center;
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.site-title {
    font-family: 'Kristen ITC', Arial, sans-serif;
    font-size: 3rem;
    color: #800000;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.site-description {
    font-family: 'Kristen ITC', Arial, sans-serif;
    font-size: 1.5rem;
    color: #800000;
    margin-bottom: 1rem;
}

/* Navigation */
.main-navigation {
    background: rgba(128, 0, 0, 0.9);
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: white;
    font-family: 'Kristen ITC', Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.nav-menu a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

/* Content */
.main-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-title {
    font-family: 'Kristen ITC', Arial, sans-serif;
    color: #800000;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 3px solid #800000;
    padding-bottom: 1rem;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.wp-caption {
    max-width: 100%;
    text-align: center;
    margin: 1rem 0;
}

.wp-caption-text {
    font-size: 12px;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.gallery-item {
    text-align: center;
}

/* Forms */
input, textarea, select {
    font-family: 'Kristen ITC', Arial, sans-serif;
    font-size: 11px;
    color: #800000;
    border: 2px solid #800000;
    padding: 0.5rem;
    border-radius: 4px;
}

button, input[type="submit"] {
    background-color: #800000;
    border: 2px solid #ffff66;
    font-family: 'Kristen ITC', Arial, sans-serif;
    color: white;
    font-size: 11px;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover, input[type="submit"]:hover {
    background-color: #990033;
}

/* Footer */
.site-footer {
    background: rgba(128, 0, 0, 0.9);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-text {
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-title {
        font-size: 2rem;
    }
    
    .site-description {
        font-size: 1.2rem;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .main-content {
        padding: 1rem;
    }
    
    .container {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .site-title {
        font-size: 1.5rem;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

/* WordPress Specific Classes */
.alignleft {
    float: left;
    margin: 0 1rem 1rem 0;
}

.alignright {
    float: right;
    margin: 0 0 1rem 1rem;
}

.aligncenter {
    display: block;
    margin: 1rem auto;
    text-align: center;
}

.wp-block-image {
    margin: 1rem 0;
}

/* Custom Classes for Windemere */
.header-text {
    font-family: 'Kristen ITC', Arial, sans-serif;
    color: #800000;
    font-weight: bold;
    font-size: 18pt;
}

.white-link {
    text-decoration: none;
    color: white;
    font-size: 12px;
}

.white-link:hover {
    color: #ffff66;
}

/* Print Styles */
@media print {
    body {
        background: white;
        color: black;
    }
    
    .main-navigation,
    .site-footer {
        display: none;
    }
}

