:root {
    --primary-color: #4f46e5;
    --primary-hover: #4338ca;
    --primary-color-opacity-10: rgba(26, 62, 114, 0.1);
    --secondary-color: #d4af37;
    --light-bg: #e6f0fa;
    --dark-text: #333333;
    --light-text: #ffffff;
    --navbar-height: 80px;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

h3 {
    font-size: 18px;
    margin-bottom: 16px;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
}

/* Card styles */
.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Section padding */
section {
    padding: 80px 0;
}

/* Button styles */
.w-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.w-button.sm {
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
}

.w-button:hover {
    background-color: #c19b2c;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* primary button */
.w-button-primary {
    background-color: var(--primary-color) !important;
    color: white !important;
}

.w-button-primary:hover {
    background-color: var(--primary-hover) !important;
}

/* danger button */
.w-button-danger {
    background-color: #ff4d4d !important;
    color: white !important;
}

.w-button-danger:hover {
    background-color: #ff1a1a !important;
}

/* Navbar */
.navbar {
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 50px;
}

.nav-link {
    font-weight: 500;
    padding: 8px 15px !important;
    margin: 0 5px;
}

.nav-link.active {
    color: var(--secondary-color) !important;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 50px 0 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    display: block;
}

.footer-links a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}


/* utils */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h1 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

.object-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}