/* Custom CSS for Majestic Ventures Office */

:root {
    --burgundy: #722F37;
    --burgundy-dark: #5A252C;
    --blush: #F4C2C2;
    --blush-light: #FDF2F2;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

.font-outfit {
    font-family: 'Outfit', sans-serif;
}

/* Custom color utilities */
.text-burgundy {
    color: var(--burgundy);
}

.bg-burgundy {
    background-color: var(--burgundy);
}

.bg-burgundy-dark {
    background-color: var(--burgundy-dark);
}

.text-blush {
    color: var(--blush);
}

.bg-blush {
    background-color: var(--blush);
}

.bg-blush-light {
    background-color: var(--blush-light);
}

/* Navbar scroll effect */
nav.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Smooth transitions */
a, button {
    transition: all 0.3s ease;
}

/* Mobile menu animation */
#mobile-menu {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form focus styles */
input:focus,
select:focus,
textarea:focus {
    outline: none;
}

/* Hover effects */
.group:hover .group-hover\:text-burgundy {
    color: var(--burgundy);
}

.group:hover .group-hover\:bg-burgundy {
    background-color: var(--burgundy);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .md\:col-span-7 {
        grid-column: span 7 / span 7;
    }
    
    .md\:col-span-5 {
        grid-column: span 5 / span 5;
    }
}
