/* Festday - Main Styles */

:root {
    --primary-color: #875A7B;
    --primary-light: #f3e9f0;
    --secondary-color: #008784;
    --accent-color: #1FA0DA;
    --success-color: #22c55e;
    --dark-color: #212529;
    --text-color: #495057;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --border-color: #dee2e6;

    --border-radius: 12px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    --shadow-premium: 0 8px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 18px 30px rgba(0, 0, 0, 0.12);
    --glass-blur: blur(12px);
    --font-logo: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-base: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-base);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Glassmorphism Utility */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-premium);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-slow {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

.anim-float {
    animation: float 6s ease-in-out infinite;
}

.anim-pulse {
    animation: pulse-slow 4s ease-in-out infinite;
}

.logo, .logo a, .hero-main-title {
    font-family: var(--font-logo);
}
.logo {
    font-size: 26px;
    font-weight: 900;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: -0.5px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border: 1px solid transparent;
    border-radius: var(--border-radius);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #704a66;
    /* Darker purple */
    border-color: #704a66;
    color: white;
}

.btn-block {
    width: 100%;
    display: flex;
}

/* Alerts */
.alert {
    padding: 12px 16px;
    border-radius: var(--border-radius);
    margin-bottom: 24px;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-error {
    background-color: #fceaea;
    color: #c53030;
    border: 1px solid #f5c6cb;
}

.alert-success {
    background-color: #f0fff4;
    color: #276749;
    border: 1px solid #c6f6d5;
}

/* Form Layout */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="url"],
textarea,
select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 15px;
    color: var(--dark-color);
    background-color: #fff;
    transition: all 0.2s ease;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
    /* Soft depth */
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(135, 90, 123, 0.1);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

/* Container Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-small {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}
