/* style.css - Traditional Christmas Color Theme */

/* Traditional Christmas Color Variables */
:root {
    --scarlet-red: #bc0a0f;
    --emerald-green: #00978a;
    --gold: #b07d26;
    --ivory: #e0e3d3;
    --dark-green: #272d23;
    --white: #ffffff;
}

/* Global Styles */
body {
    background-color: var(--ivory);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(176, 125, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 151, 138, 0.1) 0%, transparent 50%);
    font-family: 'Georgia', serif;
    color: var(--dark-green);
    min-height: 100vh;
    padding: 2rem 0;
}

/* Main Container Festive Styling */
.container {
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(188, 10, 15, 0.15);
    padding: 3rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    border-top: 8px solid var(--scarlet-red);
    position: relative;
    overflow: hidden;
}

/* Add decorative corner elements */
.container::before,
.container::after {
    content: "❄";
    position: absolute;
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.3;
}

.container::before {
    top: 10px;
    left: 10px;
}

.container::after {
    bottom: 10px;
    right: 10px;
    transform: rotate(180deg);
}

/* Typography */
h1, h2, h3 {
    color: var(--scarlet-red);
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(188, 10, 15, 0.2);
}

p {
    color: var(--dark-green);
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 2rem;
}

/* Elfsight Form Container */
.elfsight-app-7fc9843c-d72b-4313-be58-07ac9a7d4876 {
    background-color: rgba(224, 227, 211, 0.3);
    border-radius: 10px;
    padding: 2rem;
    border: 2px solid var(--emerald-green);
}

/* Form Input Styling (targets elements within Elfsight form) */
.elfsight-app-7fc9843c-d72b-4313-be58-07ac9a7d4876 input,
.elfsight-app-7fc9843c-d72b-4313-be58-07ac9a7d4876 select,
.elfsight-app-7fc9843c-d72b-4313-be58-07ac9a7d4876 textarea {
    border: 2px solid var(--emerald-green) !important;
    border-radius: 5px !important;
    padding: 0.75rem !important;
    background-color: var(--white) !important;
    transition: all 0.3s ease;
}

.elfsight-app-7fc9843c-d72b-4313-be58-07ac9a7d4876 input:focus,
.elfsight-app-7fc9843c-d72b-4313-be58-07ac9a7d4876 select:focus,
.elfsight-app-7fc9843c-d72b-4313-be58-07ac9a7d4876 textarea:focus {
    border-color: var(--scarlet-red) !important;
    box-shadow: 0 0 0 0.2rem rgba(188, 10, 15, 0.25) !important;
    outline: none;
}

/* Button Styling */
.elfsight-app-7fc9843c-d72b-4313-be58-07ac9a7d4876 button,
.btn-primary {
    background: linear-gradient(135deg, var(--scarlet-red), #d90e14) !important;
    border: none !important;
    border-radius: 25px !important;
    color: var(--white) !important;
    font-weight: bold !important;
    padding: 0.75rem 2rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(188, 10, 15, 0.3);
}

/* Button Hover Effect */
.elfsight-app-7fc9843c-d72b-4313-be58-07ac9a7d4876 button:hover,
.btn-primary:hover {
    background: linear-gradient(135deg, #d90e14, var(--scarlet-red)) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(188, 10, 15, 0.4);
}

/* Label Styling */
.elfsight-app-7fc9843c-d72b-4313-be58-07ac9a7d4876 label {
    color: var(--dark-green) !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem !important;
}

/* Success/Confirmation Message */
.elfsight-app-7fc9843c-d72b-4313-be58-07ac9a7d4876 .success-message {
    background-color: rgba(0, 151, 138, 0.1) !important;
    color: var(--emerald-green) !important;
    border: 1px solid var(--emerald-green) !important;
    border-radius: 8px !important;
    padding: 1rem !important;
}

/* Link Styling */
a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--scarlet-red);
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container {
        padding: 2rem 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2, h3 {
        font-size: 1.5rem;
    }
}

/* Festive Animation for Snowflakes */
@keyframes snowfall {
    0% { transform: translateY(-100px) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(calc(100vh + 100px)) rotate(360deg); opacity: 0; }
}

/* Optional: Add floating snowflakes to body */
body::before {
    content: "❄ ❄ ❄";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    font-size: 1.5rem;
    color: var(--white);
    text-shadow: 0 0 5px rgba(188, 10, 15, 0.5);
    animation: snowfall 10s linear infinite;
    z-index: -1;
}