:root {
    --primary: #ff4f79;
    --secondary: #8a2be2;
    --dark: #2d3436;
    --light: #f9f9f9;
    --accent: #ffd166;
    --gradient-start: #ff758c;
    --gradient-end: #ff7eb3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #fcf0f4;
    background-image: linear-gradient(120deg, #fccde2 0%, #fdf2f8 100%);
    min-height: 100vh;
}

.container {
    max-width: 1000px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 15px;
}

/* Header Styles */
.header {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 79, 121, 0.2);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/header-bg.jpg');
    opacity: 0.1;
    background-size: cover;
    background-position: center;
}

.header-content {
    position: relative;
    z-index: 2;
}

.header h1 {
    color: white;
    font-size: 42px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.header .tagline {
    color: white;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.header .makeup-icon {
    display: block;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    opacity: 0.9;
}

.event-details {
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-item i {
    color: var(--secondary);
}

/* Content Layout */
.content {
    display: flex;
    gap: 30px;
}

/* Info Section Styles */
.info-section {
    flex: 1;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/section-bg.jpg');
    opacity: 0.06;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.info-section h2 {
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    z-index: 1;
}

.info-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.info-content {
    position: relative;
    z-index: 1;
}

.benefits {
    margin: 25px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
    transition: all 0.3s;
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 5px 15px rgba(255, 79, 121, 0.3);
}

.highlight {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 20px;
    border-radius: 10px;
    font-weight: bold;
    text-align: center;
    margin: 25px 0;
    box-shadow: 0 5px 15px rgba(255, 79, 121, 0.2);
}

.image-gallery {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-img {
    width: calc(50% - 5px);
    border-radius: 8px;
    height: 120px;
    object-fit: cover;
    transition: all 0.3s;
}

.gallery-img:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Form Section Styles */
.form-section {
    flex: 1;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.form-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/form-bg.jpg');
    opacity: 0.05;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.form-section h2 {
    color: var(--secondary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    z-index: 1;
}

.form-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
}

.form-content {
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark);
}

.form-group input {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
    background-color: rgba(255, 255, 255, 0.8);
}

.form-group input:focus {
    border-color: var(--secondary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.1);
    background-color: white;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(to right, var(--secondary), #9932cc);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.2);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.3);
}

.price-tag {
    background: linear-gradient(to right, var(--secondary), #9932cc);
    color: white;
    border-radius: 25px;
    padding: 8px 18px;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
    box-shadow: 0 5px 10px rgba(138, 43, 226, 0.2);
}

/* Testimonials */
.testimonials {
    margin: 30px 0;
    padding: 20px;
    background-color: #f8f5ff;
    border-radius: 10px;
}

.testimonial {
    font-style: italic;
    color: #555;
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
}

.testimonial:before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 40px;
    color: var(--secondary);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-author {
    color: var(--dark);
    font-weight: 500;
    text-align: right;
}

/* Footer */
.footer {
    text-align: center;
    color: #777;
    font-size: 14px;
    margin-top: 20px;
    padding: 20px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.social-icons a {
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s;
}

.social-icons a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

/* Message Styles */
.message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
}

.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.header, .info-section, .form-section, .footer {
    animation: fadeIn 0.8s ease-out forwards;
}

.info-section {
    animation-delay: 0.2s;
}

.form-section {
    animation-delay: 0.4s;
}

.footer {
    animation-delay: 0.6s;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 15px;
        margin: 20px auto;
    }
    
    .content {
        flex-direction: column;
    }
    
    .header h1 {
        font-size: 32px;
    }
    
    .header .tagline {
        font-size: 18px;
    }
    
    .gallery-img {
        width: 100%;
    }
}