/* Shared Styles for Additional Pages */

/* Page Hero Sections */
.page-hero {
    position: relative;
    padding: 100px 0 80px;
    text-align: center;
    background-size: cover;
    background-position: center;
    color: #fff;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.page-hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 20px;
    line-height: 1.6;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
    background: #fff;
}

.content-section.gray {
    background: #f9f9f9;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

.section-subtitle {
    font-size: 24px;
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Competition Categories Grid */
.competition-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.category-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.3);
}

.category-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.category-card-content {
    padding: 30px;
    text-align: center;
}

.category-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #333;
}

.category-card .btn-primary {
    display: inline-block;
}

/* Rewards Section */
.rewards-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(195, 149, 99, 0.1) 100%);
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.reward-item {
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.reward-number {
    font-size: 72px;
    font-weight: 900;
    color: #d4a574;
    margin-bottom: 20px;
}

.reward-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.reward-item p {
    font-size: 16px;
    color: #666;
}

/* Contact Form */
.contact-section {
    padding: 80px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #333;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 18px;
    color: #d4a574;
    margin-bottom: 10px;
}

.contact-item p, .contact-item a {
    font-size: 16px;
    color: #666;
    text-decoration: none;
}

.contact-item a:hover {
    color: #d4a574;
}

.contact-form {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4a574;
}

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

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-checkbox input {
    width: auto;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    height: 350px;
}

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

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

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

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

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.info-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.3);
}

.info-card i {
    font-size: 48px;
    color: #d4a574;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.info-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* CTA Banner */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #d4a574 0%, #c39563 100%);
    text-align: center;
    color: #fff;
}

.cta-banner h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn-primary {
    background: #fff;
    color: #d4a574;
    border: 2px solid #fff;
}

.cta-banner .btn-primary:hover {
    background: transparent;
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-hero h1 {
        font-size: 42px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .rewards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 32px;
    }
    
    .page-hero p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .competition-categories {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .kids-gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 250px;
    }
}

/* Kids Fashion Gallery Styles */
.kids-gallery-section {
    padding: 0;
    background: #000;
}

.kids-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.kids-gallery-item {
    overflow: hidden;
    position: relative;
    aspect-ratio: 2/3;
}

.kids-gallery-item.kids-gallery-wide {
    grid-column: span 2;
    aspect-ratio: 3/2;
}

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

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

/* Pricing Note Styles */
.pricing-note {
    background: linear-gradient(135deg, #fff4e6 0%, #ffe8cc 100%);
    border-left: 4px solid #d4a574;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}

.pricing-note p {
    margin: 0;
    color: #333;
    font-size: 15px;
    line-height: 1.6;
}

.pricing-note strong {
    color: #d4a574;
    font-weight: 700;
}
