/* ==================== GENERAL PAGE STYLES ==================== */

.page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

.page-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.page-hero .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.2rem;
    font-weight: 300;
}

.content-section {
    padding: 80px 0;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-section h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    font-weight: 400;
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-color);
}

/* ==================== VALUES GRID ==================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 40px 0;
}

.value-card {
    text-align: center;
    padding: 30px;
}

.value-card i {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ==================== TEAM SECTION ==================== */
.team-section {
    padding: 80px 0;
    background: var(--secondary-color);
}

.team-section h2 {
    text-align: center;
    margin-bottom: 15px;
}

.section-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.team-member p {
    color: var(--text-light);
    font-size: 14px;
}

/* ==================== CONTACT PAGE ==================== */
.contact-section {
    padding: 80px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.contact-form-container h2,
.contact-info-container h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 400;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form textarea {
    resize: vertical;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-detail {
    display: flex;
    gap: 20px;
}

.contact-detail i {
    font-size: 24px;
    color: var(--accent-color);
    margin-top: 5px;
}

.contact-detail h4 {
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-detail p {
    color: var(--text-light);
    line-height: 1.6;
}

.social-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.social-links-large {
    display: flex;
    gap: 15px;
}

.social-links-large a {
    width: 50px;
    height: 50px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
}

.social-links-large a:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    padding: 80px 0;
    background: var(--secondary-color);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 4px;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ==================== LOOKBOOK PAGE ==================== */
.lookbook-section {
    padding: 80px 0;
}

.lookbook-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.lookbook-item {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    cursor: pointer;
}

.lookbook-item.large {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.lookbook-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.lookbook-item:hover img {
    transform: scale(1.1);
}

.lookbook-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.lookbook-item:hover .lookbook-overlay {
    transform: translateY(0);
    opacity: 1;
}

.lookbook-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.lookbook-overlay p {
    margin-bottom: 15px;
    font-size: 14px;
}

/* ==================== STYLE GUIDE SECTION ==================== */
.style-guide-section {
    padding: 80px 0;
    background: var(--secondary-color);
}

.style-guide-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.tip-card {
    background: var(--white);
    padding: 30px;
}

.tip-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.tip-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ==================== POLICY PAGES ==================== */
.policy-content {
    padding: 80px 0;
}

.policy-content h1 {
    margin-bottom: 20px;
}

.policy-content h2 {
    font-size: 1.5rem;
    margin: 40px 0 20px;
    font-weight: 500;
}

.policy-content h3 {
    font-size: 1.2rem;
    margin: 30px 0 15px;
    font-weight: 500;
}

.policy-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.policy-content ul,
.policy-content ol {
    margin: 20px 0 20px 30px;
}

.policy-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
    .team-grid,
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lookbook-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lookbook-item.large {
        grid-column: span 1;
        aspect-ratio: 3/4;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .values-grid,
    .team-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .lookbook-grid {
        grid-template-columns: 1fr;
    }
    
    .lookbook-overlay {
        transform: translateY(0);
        opacity: 1;
    }
}

