:root {
    --primary-dark: #003049;
    --primary-accent: #0077B6;
    --text-primary-color: #EE1C25;
    /* PADI Red */
    --font-heading: 'DM Sans', sans-serif;
    --font-body: 'Titillium Web', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--primary-dark);
}

h1,
h2,
h3,
h4,
h5,
h6,
.btn,
.navbar-brand {
    font-family: var(--font-heading);
}

/* Custom Overrides for Bootstrap Colors */
.text-primary-dark {
    color: var(--primary-dark) !important;
}

.text-primary {
    color: var(--primary-accent) !important;
}

.bg-primary-dark {
    background-color: var(--primary-dark) !important;
}

/* Button Overrides */
.btn-primary {
    background-color: var(--text-primary-color);
    border-color: var(--text-primary-color);
    box-shadow: 0 4px 15px rgba(238, 28, 37, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    background-color: #c90f17 !important;
    border-color: #c90f17 !important;
    box-shadow: 0 8px 25px rgba(238, 28, 37, 0.4);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-accent);
    border-color: var(--primary-accent);
}

.btn-outline-primary:hover,
.btn-outline-primary.active {
    background-color: var(--primary-accent);
    border-color: var(--primary-accent);
}

/* Hero Section Custom Styles */
.hero-section {
    position: relative;
    min-height: 85vh;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 48, 73, 0.4);
    /* Dark overlay */
    z-index: 1;
}

.hero-title {
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Utilities */
.letter-spacing-1 {
    letter-spacing: 1px;
}

.object-fit-cover {
    object-fit: cover;
}

.hover-white:hover {
    color: #fff !important;
    opacity: 1 !important;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* WhatsApp Button Custom Color */
.btn-success {
    background-color: #25D366;
    border-color: #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-success:hover {
    background-color: #20b858;
    border-color: #20b858;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}