/* Full Moon Blessing Page Styles */

/* Header Styling */
.blessing-header {
    background: var(--color-white);
    padding: 1rem 0;
    position: relative;
    border-bottom: 1px solid var(--color-light-gray);
}

.blessing-header .header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.blessing-header .brand {
    z-index: 100;
}

.blessing-header .logo {
    height: 40px;
    width: auto;
}

/* Main Content */
.blessing-main {
    min-height: 80vh;
    padding: 0;
}

/* Hero Section */
.blessing-hero {
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-white) 100%);
    padding: 4rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.moon-phase {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.moon-icon {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 8px rgba(154, 121, 41, 0.2));
    animation: moonGlow 4s ease-in-out infinite;
}

@keyframes moonGlow {
    0%, 100% { 
        filter: drop-shadow(0 4px 8px rgba(154, 121, 41, 0.2));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 6px 16px rgba(154, 121, 41, 0.4));
        transform: scale(1.05);
    }
}

.blessing-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--color-charcoal);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blessing-subtitle {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Content Section */
.blessing-content {
    padding: 4rem 0;
    background: var(--color-white);
}

/* Product Display */
.blessing-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}

.product-image {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    background: var(--color-cream);
    border-radius: 8px;
    position: relative;
}

.product-placeholder {
    text-align: center;
    padding: 2rem;
}

.placeholder-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.placeholder-text {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--color-gray);
    font-style: italic;
}

.product-details {
    padding: 0 1rem;
}

.product-name {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-charcoal);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.product-description {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

/* Features */
.blessing-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    width: 20px;
    height: 20px;
    opacity: 0.8;
}

.feature span {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-charcoal);
    font-weight: 500;
}

/* Claim Section */
.claim-section {
    margin: 4rem 0;
    display: flex;
    justify-content: center;
}

.claim-box {
    background: var(--color-cream);
    padding: 3rem;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.claim-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 300;
    color: var(--color-charcoal);
    margin-bottom: 0.75rem;
}

.claim-subtitle {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

/* Form Styling */
.blessing-form {
    margin-bottom: 2rem;
}

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

.blessing-form input[type="email"] {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--color-light-gray);
    border-radius: 6px;
    font-family: var(--font-sans);
    font-size: 1rem;
    background: var(--color-white);
    transition: border-color 0.3s ease;
}

.blessing-form input[type="email"]:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(154, 121, 41, 0.1);
}

.claim-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Shipping Note */
.shipping-note {
    border-top: 1px solid var(--color-light-gray);
    padding-top: 1.5rem;
    font-family: var(--font-sans);
}

.shipping-note p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--color-gray);
}

.shipping-note p:first-child {
    font-weight: 500;
    color: var(--color-charcoal);
}

.limited-stock {
    color: var(--color-gold);
    font-weight: 600;
    font-size: 0.9rem !important;
}

/* Ritual Section */
.blessing-ritual {
    background: var(--color-cream);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 4rem;
}

.blessing-ritual h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--color-charcoal);
    margin-bottom: 1.5rem;
}

.blessing-ritual p {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--color-gray);
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

/* Footer */
.blessing-footer {
    background: var(--color-charcoal);
    color: var(--color-white);
    padding: 2rem 0;
    text-align: center;
}

.blessing-footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.blessing-footer .copyright {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blessing-footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.blessing-footer .footer-links a {
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.blessing-footer .footer-links a:hover {
    opacity: 1;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .blessing-title {
        font-size: 2.5rem;
    }
    
    .blessing-subtitle {
        font-size: 1.125rem;
    }
    
    .blessing-product {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .product-name {
        font-size: 2rem;
    }
    
    .claim-box {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .blessing-ritual {
        padding: 2rem;
        margin: 2rem 1rem 0;
    }
    
    .moon-icon {
        width: 60px;
        height: 60px;
    }
    
    .blessing-footer .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .blessing-title {
        font-size: 2rem;
    }
    
    .product-name {
        font-size: 1.75rem;
    }
    
    .claim-box {
        padding: 1.5rem;
    }
    
    .blessing-hero {
        padding: 3rem 0 2rem;
    }
    
    .blessing-content {
        padding: 3rem 0;
    }
}

/* High Contrast Mode Support */
.high-contrast .blessing-hero {
    background: var(--color-white);
}

.high-contrast .claim-box,
.high-contrast .blessing-ritual {
    background: var(--color-white);
    border: 2px solid var(--color-charcoal);
}

.high-contrast .product-image {
    background: var(--color-white);
    border: 1px solid var(--color-charcoal);
}