/* Base Styles */
:root {
    --primary-color: #375764;
    --secondary-color: #9cac7f;
    --accent-color: #b4cce4; 
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* Custom Animations */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fade-in-up 0.8s ease-out forwards;
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(to right, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1a1f2e;
    border-color: #1a1f2e;
    color: white;
}

/* Navbar Styles */
.nav-link {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    color: #6c757d;
    transition: color 0.3s ease;
    padding-inline: 0 !important;
    margin-inline: 15px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    font-weight: bold;
}

.nav-link.active {
    border-bottom: 2px solid var(--primary-color);
}

/* Hero Section */
.hero-section {
    position: relative;
}

/* Card Hover Effects */
.card {
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.15) !important;
}

/* Image Effects */
img {
    transition: all 0.5s ease;
}

/* Decorative Patterns */
.bg-grid-pattern {
    background-image: linear-gradient(to right, rgba(0,0,0,0.05) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(0,0,0,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

.bg-pattern-dots {
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Form Styles */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(11, 17, 32, 0.25);
}

/* Footer Styles */
footer a:hover {
    color: var(--secondary-color) !important;
}

/* Header Styles */
header.sticky-top {
    z-index: 1000;
}

.logo-img {
    height: 48px;
    width: auto;
}

/* Hero Section Styles */
.hero-section {
    min-height: 600px;
    height: 100vh;
    background: linear-gradient(rgba(11, 17, 32, 0.8), rgba(11, 17, 32, 0.6)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.hero-container {
    z-index: 10;
}

.hero-badge {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.badge-dot {
    width: 8px;
    height: 8px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.hero-arrow {
    z-index: 10;
}

.btn-hero-primary {
    background-color: #9cac7f;
    color: white;
    border: none;
    min-width: 200px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
}

.btn-hero-outline {
    min-width: 200px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
}

/* Section Padding */
.section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.section-padding-lg {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.section-padding-xl {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

/* Text Styles */
.text-label {
    letter-spacing: 2px;
    font-size: 0.75rem;
}

.text-label-small {
    letter-spacing: 1px;
    font-size: 0.7rem;
}

.text-label-uppercase {
    letter-spacing: 1px;
}

.display-title {
    font-family: 'Playfair Display', serif;
    color: #375764;
}

.text-accent {
    color: #9cac7f;
}

.text-indigo {
    color: #9cac7f;
}

.text-dark-custom {
    color: #375764;
}

/* Icon Circles */
.icon-circle {
    width: 56px;
    height: 56px;
}

.icon-circle-sm {
    width: 48px;
    height: 48px;
}

.icon-circle-xs {
    width: 32px;
    height: 32px;
    border: 2px solid white;
}

.icon-circle-badge {
    width: 32px;
    height: 32px;
    border: 2px solid white;
    font-size: 0.6rem;
}

/* Stats Section */
.stats-number-dark {
    color: #375764;
}

.stats-number-indigo {
    color: #9cac7f;
}

/* Team Meeting Card */
.team-card-overlay {
    max-width: 200px;
    transform: translate(-20px, 20px);
}

/* Service Section */
.service-image-container {
    min-height: 400px;
}

.service-image {
    object-fit: cover;
}

.service-decorative-box {
    width: 96px;
    height: 96px;
}

.service-decorative-box-bottom {
    transform: translate(-24px, 24px);
}

.service-decorative-box-top {
    transform: translate(24px, -24px);
}

.service-card-shadow {
    z-index: 20;
}

/* Team Section */
.team-image-container {
    height: 320px;
    overflow: hidden;
    background-color: #f8f9fa;
}

.team-image {
    object-fit: cover;
}

.team-image-underline {
    height: 4px;
    transform: scaleX(0);
    transition: transform 0.3s;
}

.team-member-title {
    font-family: 'Playfair Display', serif;
}

.team-member-role {
    color: #9cac7f;
    letter-spacing: 2px;
}

.team-member-bio {
    border-color: #f8f9fa !important;
}

/* Join Section */
.join-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #375764;
}

.join-section-indigo {
    padding-top: 8rem;
    padding-bottom: 8rem;
    background-color: #b4cce4;
}

.join-section-pattern {
    background: url('../images/pattern.png');
}

.join-container {
    z-index: 10;
}

.btn-join {
    min-width: 200px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
}

.btn-join-light {
    color: #9cac7f;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    border: none;
}

/* Page Header */
.page-header {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #375764 !important;
}

.page-header-divider {
    width: 64px;
    height: 4px;
    background-color: #9cac7f;
}

.page-header-title {
    font-family: 'Playfair Display', serif;
}

.page-header-text {
    max-width: 600px;
    font-weight: 300;
}

/* About Section */
.about-card-decorative {
    width: 128px;
    height: 128px;
    transform: translate(30%, -30%);
}

.about-icon {
    color: #9cac7f;
}

/* Contact Section */
.contact-icon-box {
    width: 48px;
    height: 48px;
}

.contact-form-card {
    border-top: 4px solid #9cac7f !important;
}

/* Footer Styles */
.footer-dark {
    background-color: #375764 !important;
}

.footer-logo {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    text-decoration: none;
}

.footer-heading {
    letter-spacing: 1px;
}

.footer-text {
    max-width: 400px;
}

.footer-icon {
    color: #9cac7f;
}

/* Background Colors */
.bg-dark-custom {
    background-color: #375764 !important;
}

.bg-indigo {
    background-color: #9cac7f;
}

/* Object Fit */
.object-fit-cover {
    object-fit: cover;
}

/* Responsive Utilities */
@media (max-width: 768px) {
    .display-2 {
        font-size: 2.5rem;
    }
    
    .display-3 {
        font-size: 2rem;
    }
    
    .display-4 {
        font-size: 1.75rem;
    }
    
    .display-5 {
        font-size: 1.5rem;
    }
    
    .display-6 {
        font-size: 1.25rem;
    }
}
