:root {
    --primary-color: #7D8F69;
    /* Sage Green */
    --secondary-color: #E6E1D6;
    /* Beige/Cream */
    --accent-color: #A98467;
    /* Soft Earthy Brown */
    --text-dark: #333333;
    --text-light: #F9F9F9;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Manrope', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--text-light);
}

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

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-color) !important;
    font-weight: bold;
    letter-spacing: -0.5px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #6a7a59;
    border-color: #6a7a59;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(125, 143, 105, 0.3);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* Darken ensuring text readability */
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about-image-wrapper {
    position: relative;
    padding: 1rem;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #fff;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: var(--primary-color);
}

.ls-2 {
    letter-spacing: 2px;
}

/* Classes Section */
.bg-primary-light {
    background-color: rgba(125, 143, 105, 0.1);
}

.bg-secondary-light {
    background-color: rgba(169, 132, 103, 0.1);
}

.bg-accent-light {
    background-color: rgba(230, 225, 214, 0.5);
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.hover-up {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-up:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.hover-up:hover .icon-circle {
    transform: scale(1.1);
}

/* Schedule Section */
.schedule-table th {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.table-borderless td,
.table-borderless th {
    border: none;
}

.schedule-table tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.schedule-table tr:last-child {
    border-bottom: none;
}

.badge {
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Footer & Contact */
.opacity-75 {
    opacity: 0.75;
}

.hover-opacity-100:hover {
    opacity: 1;
}

.form-control:focus {
    box-shadow: none;
    border: 1px solid var(--primary-color) !important;
}

/* Utilities */
.section-padding {
    padding: 5rem 0;
}