/* ChickenRoost.online - PawHut Chicken Coop Website Styles */
/* Based on Sushiko theme design */

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 300;
}

h2 {
    font-size: 2.5rem;
    font-weight: 300;
}

h3 {
    font-size: 1.8rem;
    font-weight: 400;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
}

/* Header Styles */
.header {
    background-color: #1a1a1a;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    font-weight: 300;
}

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

.nav-menu a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ff6b35;
}

.header-actions {
    display: flex;
    align-items: center;
}


.btn-primary {
    background-color: #ff6b35;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 300;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    border-color: #ff6b35;
}

.scroll-indicator::after {
    content: '↓';
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-light {
    background-color: #f8f8f8;
}

.section-white {
    background-color: #fff;
}

.section-dark {
    background-color: #1a1a1a;
    color: #fff;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.two-column-reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.two-column-reverse .column:first-child {
    order: 2;
}

.two-column-reverse .column:last-child {
    order: 1;
}

/* Three Column Layout */
.three-column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Four Column Layout */
.four-column {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Card Styles */
.card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.card-text {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #fff;
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.feature-text {
    color: #666;
    font-size: 0.9rem;
}

/* Statistics Section */
.stats-section {
    background-color: #1a1a1a;
    color: #fff;
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 300;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Contact Form */
.contact-form {
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    background-color: transparent;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-bottom-color: #ff6b35;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-section a:hover {
    color: #ff6b35;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.footer-bottom h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-bottom h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-bottom p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-bottom a:hover {
    color: #ff6b35;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #999;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ff6b35;
}

/* Decorative Elements */
.decorative-element {
    position: absolute;
    opacity: 0.1;
    z-index: 1;
}

.sakura-branch {
    width: 200px;
    height: 200px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M50 50 Q100 20 150 50 Q100 80 50 50" stroke="%23ff6b35" stroke-width="2" fill="none"/><circle cx="75" cy="45" r="3" fill="%23ff6b35"/><circle cx="100" cy="35" r="3" fill="%23ff6b35"/><circle cx="125" cy="45" r="3" fill="%23ff6b35"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

.pagoda {
    width: 150px;
    height: 150px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150"><rect x="50" y="100" width="50" height="50" fill="none" stroke="%23333" stroke-width="2"/><rect x="45" y="80" width="60" height="20" fill="none" stroke="%23333" stroke-width="2"/><rect x="40" y="60" width="70" height="20" fill="none" stroke="%23333" stroke-width="2"/><rect x="35" y="40" width="80" height="20" fill="none" stroke="%23333" stroke-width="2"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu .nav-menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Additional Styles for Inline Elements */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.decorative-element.sakura-branch {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
}

.decorative-element.pagoda {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto;
}

.image-full-width {
    width: 100%;
    border-radius: 8px;
    margin: 2rem 0;
}

.image-full-width-top {
    width: 100%;
    border-radius: 8px;
    margin-top: 2rem;
}

.rating-box {
    background-color: #f8f8f8;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.rating-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.rating-score {
    color: #4CAF50;
    font-weight: 500;
}

.pros-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pros-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.pros-check {
    color: #4CAF50;
}

.advantages-box {
    background-color: #e8f5e8;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #4CAF50;
}

.advantages-title {
    color: #2e7d32;
    margin-bottom: 1.5rem;
}

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.advantage-item h4 {
    color: #2e7d32;
    margin-bottom: 0.5rem;
}

.advantage-item p {
    margin: 0;
    font-size: 0.9rem;
}

.considerations-box {
    background-color: #fff3e0;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #ff9800;
}

.considerations-title {
    color: #e65100;
    margin-bottom: 1.5rem;
}

.considerations-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.consideration-item h4 {
    color: #e65100;
    margin-bottom: 0.5rem;
}

.consideration-item p {
    margin: 0;
    font-size: 0.9rem;
}

.testing-categories {
    margin-top: 2rem;
}

.testing-categories h4 {
    margin-bottom: 1rem;
}

.testing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.testing-item {
    text-align: center;
    padding: 1rem;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.testing-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.testing-item h5 {
    margin-bottom: 0.5rem;
}

.testing-item p {
    font-size: 0.8rem;
    color: #666;
}

.features-list {
    text-align: left;
    margin-top: 1rem;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

.comparison-table th {
    padding: 1rem;
    text-align: left;
    border: 1px solid #ddd;
    background-color: #f8f8f8;
}

.comparison-table td {
    padding: 1rem;
    border: 1px solid #ddd;
}

.comparison-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.comparison-table .score-good {
    text-align: center;
    color: #4CAF50;
}

.comparison-table .score-average {
    text-align: center;
    color: #ff9800;
}

.comparison-table .feature-name {
    font-weight: 500;
}

.contact-image {
    width: 100%;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-content {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    }
    
    .hero-content p {
        font-size: 1rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    }
    
    .two-column,
    .two-column-reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .three-column {
        grid-template-columns: 1fr;
    }
    
    .four-column {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .image-gallery {
        grid-template-columns: 1fr;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .card {
        margin-bottom: 1rem;
    }
    
    .btn-primary {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }
    
    .contact-form {
        padding: 2rem 1rem;
    }
    
    .hero {
        height: 80vh;
    }
    
    .scroll-indicator {
        bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .four-column {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .contact-form {
        padding: 2rem 1rem;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .contact-form {
        padding: 1.5rem 0.5rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}
