/* Detail Page Styles */

/* Hero Section */
.detail-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    margin-top: 70px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.6) 0%, rgba(185, 149, 106, 0.8) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
    padding: 2rem;
}

.hero-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

/* Content Section */
.detail-content {
    padding: 80px 0;
    background: var(--white);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.main-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.main-content .lead {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.8;
}

.main-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.main-content h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin: 40px 0 20px;
}

.benefits-list {
    list-style: none;
    margin: 30px 0;
}

.benefits-list li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    color: var(--text-light);
    line-height: 1.8;
    border-bottom: 1px solid var(--bg-beige);
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

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

.style-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.style-card {
    background: var(--bg-beige);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.style-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.style-card h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.style-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 90px;
}

.info-card {
    background: var(--bg-beige);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--shadow-soft);
}

.info-card h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-align: center;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.info-item:last-of-type {
    border-bottom: none;
    margin-bottom: 30px;
}

.info-item strong {
    color: var(--text-dark);
    font-weight: 600;
}

.info-item span {
    color: var(--text-light);
    text-align: right;
}

.cta-button {
    display: block;
    width: 100%;
    padding: 15px 30px;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.cta-button:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--shadow-medium);
}

.cta-button.large {
    padding: 18px 40px;
    font-size: 1.1rem;
    display: inline-block;
    width: auto;
}

/* Gallery Section */
.detail-gallery {
    padding: 80px 0;
    background: var(--bg-beige);
}

.detail-gallery .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 50px;
}

.detail-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.detail-gallery .gallery-item {
    aspect-ratio: 4/3;
}

.detail-gallery .gallery-watermark {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.9;
    z-index: 2;
    pointer-events: none;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* CTA Section */
.detail-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
    color: var(--white);
}

.detail-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.detail-cta p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.detail-cta .cta-button {
    background: var(--white);
    color: var(--primary-color);
}

.detail-cta .cta-button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 968px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .detail-hero {
        height: 50vh;
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .main-content h2 {
        font-size: 2rem;
    }

    .main-content h3 {
        font-size: 1.5rem;
    }

    .style-cards {
        grid-template-columns: 1fr;
    }

    .detail-cta h2 {
        font-size: 2rem;
    }

    .detail-cta p {
        font-size: 1.1rem;
    }
    
}

