@import url('https://fonts.googleapis.com/css2?family=Rubik');

:root {
    --primary-font: 'Raleway', sans-serif;
    --heading-font: 'Playfair Display', serif;
}

body {
    font-family: var(--primary-font);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
}

.navbar .nav-link {
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 1rem;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #000;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar .nav-link:hover::after {
    width: 80%;
}

.hero-section .carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
    max-width: 600px;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.services-section .card {
    transition: transform 0.3s ease;
}

.services-section .card:hover {
    transform: translateY(-10px);
}

.social-links a {
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.7;
}

.btn {
    padding: 0.75rem 2rem;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background-color: #000;
    color: #fff;
}