/* Variables */
:root {
    --primary-color: #000000;
    --secondary-color: #333333;
    --accent-color: #FFD700;
    --dark-color: #000000;
    --light-color: #FFFFFF;
    --text-color: #000000;
    --gradient-primary: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #1A1A1A 100%);
    --gradient-light: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    --gradient-accent: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-modern: linear-gradient(135deg, #F8F9FA 0%, #ECF0F1 100%);
    --box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* General Styles */
body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background: var(--light-color);
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(167, 139, 250, 0.05) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

/* Hero Section */
.hero {
    position: relative;
    background: var(--light-color);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}

.hero-bg + .hero-content {
    position: relative;
    z-index: 1;
}

.hero::before {
    display: none;
}

.hero-content {
    max-width: 1200px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-transform: uppercase;
    line-height: 1.2;
}

.hero .lead {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    margin-bottom: 3rem;
    color: var(--text-color);
    font-weight: 500;
}

/* Navigation */
.navbar {
    background: var(--light-color);
    box-shadow: var(--box-shadow);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-color);
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-color);
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    gap: 1rem;
}

.btn-login {
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--text-color);
    color: var(--text-color);
    background: transparent;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-login:hover {
    background: var(--text-color);
    color: var(--light-color);
}

.btn-register {
    padding: 0.5rem 1.5rem;
    background: var(--text-color);
    color: var(--light-color);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-register:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Cards */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    color: var(--primary-color);
    font-weight: 600;
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--text-color);
    color: var(--light-color);
    border: none;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Services Section */
.services {
    background: var(--light-color);
    padding: 6rem 0;
}

.service-card {
    background: var(--light-color);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: var(--transition);
    border: 1px solid #eee;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card .card-body {
    position: relative;
    z-index: 1;
    padding: 2.5rem;
}

.service-card .service-img {
    height: 200px;
    overflow: hidden;
    margin: -2rem -2rem 1.5rem -2rem;
}

.service-card .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card .card-title,
.service-card h3 {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Gallery Section */
.gallery-section {
    padding: 4rem 0;
    background: var(--gradient-primary);
}

.gallery-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.gallery-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Testimonials Section */
.testimonials {
    background: var(--gradient-primary);
    padding: 6rem 0;
}

.testimonial-card {
    background: var(--light-color);
    border-radius: 8px;
    padding: 2rem;
    margin: 1rem;
    box-shadow: var(--box-shadow);
}

/* Pricing Table */
.pricing-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 10px;
    background: var(--light-color);
    transition: var(--transition);
}

.pricing-item:hover {
    background: white;
    box-shadow: var(--box-shadow);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

/* Map Container */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 4rem 0;
}

.social-link {
    color: var(--light-color);
    font-size: 1.5rem;
    margin: 0 0.75rem;
    transition: var(--transition);
    display: inline-block;
    opacity: 0.8;
}

.social-link:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
    opacity: 1;
}

/* Calendar Customization */
.fc {
    background: white;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
}

.fc-button-primary {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.fc-button-primary:hover {
    background: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}

/* Form Elements */
.form-control, .form-select {
    border-radius: 10px;
    padding: 0.6rem 0.8rem;
    font-size: 0.95rem;
    border: 2px solid #eee;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Auth Forms */
.auth-container {
    max-width: 400px;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--light-color);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.auth-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #eee;
    border-radius: 4px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--text-color);
    outline: none;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    .hero-content {
        max-width: 720px;
    }
    
    .services::before {
        height: 80px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
    }
    
    .auth-container {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .auth-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .services::before {
        height: 60px;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem;
        margin: 0.75rem;
    }
    
    .footer {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: clamp(2rem, 4vw, 3rem);
    }
    
    .hero .lead {
        font-size: clamp(1.2rem, 2vw, 1.4rem);
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
    }
    
    .social-link {
        font-size: 1.25rem;
        margin: 0 0.5rem;
    }
} 