/* Video Promotion Section */
.video-promotion-section {
    position: relative;
    width: 100%;
    height: 85vh;
    background-color: var(--dark);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-video-vertical {
    height: 100%;
    width: auto;
    object-fit: cover;
    max-width: 100%;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.6) 100%);
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
    z-index: 2;
}

.video-text-content {
    color: var(--white);
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}

.video-tag {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 20px;
}

.video-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.video-subtitle {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 0;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Adjustments for different screens */
@media (max-width: 768px) {
    .video-promotion-section {
        height: 70vh;
    }
    
    .video-title {
        font-size: 36px;
    }
    
    .video-subtitle {
        font-size: 16px;
    }
    
    .promo-video-vertical {
        width: 100%;
        height: 100%;
        object-fit: cover; /* On mobile, fill the screen even if it crops slightly */
    }
}

@media (max-width: 480px) {
    .video-promotion-section {
        height: 80vh; /* Taller on mobile for better vertical focus */
    }
    
    .video-overlay {
        padding-bottom: 40px;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-red) 0%, #910f0f 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.countdown-item {
    background-color: rgba(255,255,255,0.2);
    padding: 15px 20px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.countdown-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    display: block;
    line-height: 1;
}

.countdown-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    display: block;
}

/* Special Offer Banner */
.special-offer {
    padding: 50px 0;
    background-color: var(--white);
}

.offer-banner {
    background: linear-gradient(135deg, var(--light-gray) 0%, #E8E8E8 100%);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.offer-content {
    flex: 1;
}

.offer-tag {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.offer-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.offer-description {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 20px;
    max-width: 500px;
}

.offer-image {
    width: 300px;
    height: 300px;
    background-color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-left: 30px;
    position: relative;
    overflow: hidden;
}

.discount-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background-color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(198, 40, 40, 0.3);
}

.discount-value {
    font-size: 24px;
    line-height: 1;
}

.discount-text {
    font-size: 12px;
}

.offer-button {
    display: inline-block;
    background-color: var(--primary-red);
    color: var(--white);
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.offer-button:hover {
    background-color: #910f0f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(198, 40, 40, 0.3);
}

/* Promotions Grid */
.promotions {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

.section-header .divider {
    width: 80px;
    height: 3px;
    background-color: var(--primary-red);
    margin: 0 auto;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.promotion-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.promotion-image {
    height: 200px;
    background-color: var(--light-gray);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.promotion-image i {
    font-size: 100px;
    color: #E0E0E0;
    transition: transform 0.5s ease;
}

.promotion-card:hover .promotion-image i {
    transform: scale(1.1);
}

.promotion-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-red);
    color: var(--white);
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

.promotion-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.promotion-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

.promotion-description {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.promotion-prices {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.old-price {
    font-size: 16px;
    color: var(--gray);
    text-decoration: line-through;
}

.new-price {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-red);
}

.promotion-timer {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.timer-item {
    background-color: var(--light-gray);
    padding: 5px 8px;
    border-radius: 4px;
    text-align: center;
    min-width: 40px;
}

.timer-value {
    font-size: 16px;
    font-weight: 600;
    display: block;
    line-height: 1;
}

.timer-label {
    font-size: 10px;
    text-transform: uppercase;
    display: block;
    margin-top: 2px;
}

.promotion-button {
    display: block;
    width: 100%;
    background-color: var(--dark);
    color: var(--white);
    padding: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    margin-top: auto;
}

.promotion-button:hover {
    background-color: var(--primary-red);
}

/* Terms Section */
.terms {
    padding: 60px 0;
    background-color: var(--white);
}

.terms-container {
    display: flex;
    gap: 50px;
}

.terms-content {
    flex: 1;
}

.terms-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark);
}

.terms-list {
    list-style: none;
}

.terms-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.terms-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 600;
}

.terms-image {
    flex: 1;
    background-color: var(--light-gray);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.terms-image i {
    font-size: 200px;
    color: #E0E0E0;
}

/* Newsletter Section */
.newsletter {
    padding: 60px 0;
    background-color: var(--accent-red);
    text-align: center;
}

.newsletter h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.newsletter p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    font-size: 14px;
}

.newsletter-form button {
    background-color: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-form button:hover {
    background-color: #910f0f;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .promotions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .offer-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .offer-image {
        margin-left: 0;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .countdown {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .promotions-grid {
        grid-template-columns: 1fr;
    }
    
    .terms-container {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}
