/*
Theme Name: Greenville Jewelers - Valentine's Edition
Theme URI: https://greenvillejewelers.com
Template: twentytwentyfive
Description: Romantic Valentine's theme for Greenville Jewelers - Celebrate love with beautiful jewelry in Greer, SC
Version: 1.0 Valentine
Author: Greenville Jewelers
Author URI: https://greenvillejewelers.com
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: greenville-jewelers-valentine
*/

/* ========================================
   VALENTINE'S DAY THEME
   Love, Romance, & Beautiful Jewelry
======================================== */

/* Valentine Color Palette */
:root {
    --valentine-red: #E63946;
    --valentine-pink: #FFB6C1;
    --valentine-rose: #FF6B9D;
    --valentine-cream: #FFF5F5;
    --valentine-dark: #2C2C2C;
    --valentine-burgundy: #800020;
    --valentine-blush: #FFE4E1;
}

/* Typography */
body {
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
}

/* Site Title/Logo - Keep Black */
.wp-site-blocks h1.wp-block-site-title,
.wp-block-site-title a {
    color: #2C2C2C !important;
    font-weight: 700;
}

/* Hero Section - Romantic Theme */
.jewelry-hero {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, rgba(255, 182, 193, 0.1) 100%);
    padding: 80px 20px;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Romantic overlay */
.wp-block-cover.jewelry-hero::before {
    background: linear-gradient(135deg, rgba(128, 0, 32, 0.6) 0%, rgba(230, 57, 70, 0.5) 100%) !important;
}

/* Romantic glass content box */
.wp-block-cover.jewelry-hero .wp-block-cover__inner-container {
    background: rgba(255, 255, 255, 0.30);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(230, 57, 70, 0.4);
    max-width: 800px;
    backdrop-filter: blur(22px);
    border: 3px solid var(--valentine-rose);
    position: relative;
}

/* Heart decorations */
.wp-block-cover.jewelry-hero .wp-block-cover__inner-container::before {
    content: '💕 💎 💕';
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    letter-spacing: 30px;
}

.jewelry-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--valentine-red) !important;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(128, 0, 32, 0.3) !important;
}

.jewelry-hero p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: white !important;
    margin-bottom: 30px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5) !important;
    font-weight: 600;
}

/* Romantic Buttons */
.wp-block-button.jewelry-btn .wp-block-button__link {
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.wp-block-button.jewelry-btn-primary .wp-block-button__link {
    background: var(--valentine-red);
    border: 3px solid var(--valentine-rose);
    color: white;
}

.wp-block-button.jewelry-btn-primary .wp-block-button__link:hover {
    background: var(--valentine-burgundy);
    transform: scale(1.05);
    box-shadow: 0 5px 25px rgba(230, 57, 70, 0.5);
}

.wp-block-button.jewelry-btn-secondary .wp-block-button__link {
    background: var(--valentine-rose);
    border: 3px solid var(--valentine-rose);
    color: white;
}

.wp-block-button.jewelry-btn-secondary .wp-block-button__link:hover {
    background: var(--valentine-pink);
    color: var(--valentine-dark);
}

/* Services Section - Love Theme */
.services-section {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--valentine-blush);
}

.services-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--valentine-red);
}

.services-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--valentine-burgundy);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-section h2::after {
    content: '';
    display: block;
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, var(--valentine-red) 0%, var(--valentine-rose) 50%, var(--valentine-pink) 100%);
    margin: 20px auto 0;
}

/* Romantic Service Cards */
.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(230, 57, 70, 0.15);
    transition: all 0.4s ease;
    border: 2px solid var(--valentine-pink);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--valentine-red) 0%, var(--valentine-rose) 50%, var(--valentine-pink) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.25);
    border-color: var(--valentine-rose);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card .wp-block-image {
    margin: 0;
    height: 240px;
    overflow: hidden;
}

.service-card .wp-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .wp-block-image img {
    transform: scale(1.1);
}

.service-card-content {
    padding: 30px;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--valentine-red);
}

.service-card p {
    color: var(--valentine-dark);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 20px;
}

/* Gallery - Love Showcase */
.jewelry-grid .wp-block-post-template {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.jewelry-item {
    background: white !important;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--valentine-pink);
}

.jewelry-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.3);
    border-color: var(--valentine-rose);
}

/* Override dark section text color for gallery items */
.dark-section .jewelry-item * {
    color: var(--valentine-dark) !important;
}

.dark-section .jewelry-item .wp-block-post-title a {
    color: var(--valentine-red) !important;
}

.dark-section .jewelry-item .wp-block-post-excerpt p {
    color: var(--valentine-dark) !important;
}

.jewelry-item .wp-block-post-featured-image {
    margin: 0;
}

.jewelry-item .wp-block-post-featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.jewelry-item:hover .wp-block-post-featured-image img {
    transform: scale(1.1);
}

.jewelry-info {
    padding: 30px;
    text-align: center;
}

.jewelry-info h3,
.jewelry-item .wp-block-post-title,
.jewelry-item .wp-block-post-title a {
    font-size: 1.8rem;
    color: var(--valentine-red) !important;
    margin-bottom: 10px;
}

.jewelry-item .wp-block-post-excerpt,
.jewelry-item .wp-block-post-excerpt p {
    color: var(--valentine-dark) !important;
}

/* Contact Section - Romance */
.contact-section {
    background: var(--valentine-cream);
    padding: 80px 20px;
}

.contact-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.1);
    height: 100%;
    border: 2px solid var(--valentine-rose);
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--valentine-red);
}

.contact-card p {
    color: var(--valentine-dark);
    line-height: 1.8;
    font-size: 1.1rem;
}

.contact-card a {
    color: var(--valentine-red);
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    color: var(--valentine-rose);
}

/* About Section - Love Story */
.about-section {
    padding: 80px 20px;
}

.about-section h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--valentine-red);
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--valentine-dark);
    margin-bottom: 15px;
}

/* Dark Background Sections - Romantic */
.dark-section {
    background: linear-gradient(135deg, var(--valentine-burgundy) 0%, var(--valentine-red) 100%);
    color: white;
}

.dark-section h2 {
    color: var(--valentine-pink) !important;
}

.dark-section .section-subtitle {
    color: var(--valentine-blush) !important;
}

/* Footer - Love Theme */
.wp-block-group.has-contrast-background-color {
    background: linear-gradient(135deg, var(--valentine-burgundy) 0%, var(--valentine-red) 100%) !important;
}

.wp-block-group.has-contrast-background-color h3,
.wp-block-group.has-contrast-background-color h4 {
    color: var(--valentine-pink) !important;
    margin-bottom: 15px;
}

.wp-block-group.has-contrast-background-color p {
    color: white !important;
}

.wp-block-group.has-contrast-background-color a {
    color: var(--valentine-pink) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.wp-block-group.has-contrast-background-color a:hover {
    color: white !important;
}

.wp-block-group.has-contrast-background-color ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wp-block-group.has-contrast-background-color ul li {
    margin-bottom: 8px;
}

.wp-block-group.has-contrast-background-color ul li a {
    color: white !important;
    font-size: 0.95rem;
}

.wp-block-group.has-contrast-background-color ul li a:hover {
    color: var(--valentine-pink) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-section h2 {
        font-size: 2rem;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
    
    .jewelry-grid .wp-block-post-template {
        grid-template-columns: 1fr;
    }
}

/* WordPress Block Editor Specific */
.wp-block-group.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
}

/* Section Headings - Hearts */
.section-heading {
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.section-heading::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--valentine-red) 0%, var(--valentine-rose) 50%, var(--valentine-pink) 100%);
    margin: 20px auto 0;
}

/* Valentine Banner */
body::before {
    content: '💕 Valentine\'s Day Special: Show Your Love with Beautiful Jewelry! 💝';
    display: block;
    background: linear-gradient(90deg, var(--valentine-burgundy) 0%, var(--valentine-red) 50%, var(--valentine-burgundy) 100%);
    color: white;
    text-align: center;
    padding: 12px;
    font-weight: 700;
    font-size: 0.95rem;
}

