:root {
    /* Color System */
    --background: #ffffff;
    --foreground: #2b2523;
    --primary: #2b2523;
    --primary-light: #3d3735;
    --secondary: #9a7c51;
    --secondary-light: #b39873;
    --accent: #e6b85c;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --border-radius: 0.5rem;
    --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #e6e3d9, #d0c9b5);
    --gradient-gold: linear-gradient(135deg, #2b2523, #9a7c51);
    --gradient-accent: linear-gradient(45deg, #9a7c51, #634f3a);
    
    /* Shadows */
    --shadow-glow: 0 0 20px #2b2523;
    --shadow-card: 0 10px 30px -10px rgba(43, 37, 31, 0.5);
}

/* Navigation */
.navbar {
    background-color: var(--primary);
    padding: 0.5rem 0;
    transition: all 0.3s ease-in-out;
    width: 100%;
    z-index: 1030;
}

.navbar-brand {
    display: flex;
    align-items: center;
    color: var(--light) !important;
    font-weight: 600;
}

.navbar-brand img {
    margin-right: 0.5rem;
}

.navbar-toggler {
    border: none;
    color: var(--light) !important;
    font-size: 1.5rem;
    padding: 0.5rem;
    margin-left: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em;
    height: 1.5em;
}

/* Mobile menu */
.navbar-collapse { 
    background-color: var(--dark) !important;
    /* padding: 0.2rem; */
    border-radius: 0.5rem;
    /* margin: 0.5rem -0.75rem 0; */
    max-height: 80vh;
    overflow-y: auto;
}

.navbar-nav .nav-link {
    color: var(--light) !important;
    /* padding: 0.5rem 1rem; */
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent) !important;
}

/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--foreground);
    line-height: 1.6;
    background-color: var(--background);
    padding-top: 76px; /* Height of fixed navbar */
}

/* Typography */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary);
    letter-spacing: -0.02em;
}

h1, .h1 { font-size: 2.5rem; }
h2, .h2 { font-size: 2rem; }
h3, .h3 { font-size: 1.75rem; }
h4, .h4 { font-size: 1.5rem; }
h5, .h5 { font-size: 1.25rem; }

/* Links */
a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
    text-decoration: none;
}

/* Buttons */
.btn {
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    background-color: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: white;
}

/* Custom Buttons */
.btn-custom {
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-custom-primary {
    background-color: var(--primary);
    color: white;
    border: 2px solid var(--primary);
}

.btn-custom-primary:hover {
    background-color: transparent;
    color: var(--primary);
}

.btn-custom-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-custom-outline:hover {
    background-color: var(--primary);
    color: white;
}

/* Navbar */
.navbar {
    background-color: var(--dark) !important;
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent) !important;
}

.navbar-brand:hover {
    color: #ffc107 !important;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    color: #fff !important;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent);
    transition: width var(--transition) ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

/* Hero Section */


.hero::after {
    content: "";
    position: absolute;
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin: 1.5rem 0;
    color: #e0e0e0;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: var(--primary);
}

.service-card {
    border: 3px solid var(--accent);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    /* height: 100%; */
    background: #2b2523;
    color: white;
}

.service-card:hover {
transform: translateY(-8px);
box-shadow: 0 10px 25px #e6b85c !important;
}

.card-img-top {
height: 200px;
object-fit: cover;
transition: transform 0.5s ease;
}

.service-card:hover .card-img-top {
transform: scale(1.05);
}

.icon-box {
margin: -40px auto 20px;
position: relative;
z-index: 1;
background: #e6b85c;
transition: all 0.3s ease;
}

.service-card:hover .icon-box {
background: #2b2523;
color: #fff !important;
}

.service-card .h5 {
color: #3d3735;
font-weight: 600;
transition: color 0.3s ease;
}

.service-card:hover .h5 {
color: #e6b85c;
}
.team-img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 1/1;
    border: 3px solid var(--secondary);
    margin-bottom: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* Hover Shadow Effect */
.hover-shadow {
transition: all 0.3s ease;
}

.hover-shadow:hover {
box-shadow: 0 0.5rem 1.5rem #e6b85c !important;
}

/* Smooth Transition */
.transition-all {
transition: all 0.3s ease;
}

/* Footer Styles */
footer {
background-color: var(--dark-color);
color: #fff;
padding: 4rem 0 2rem;
}

footer h5 {
color: #fff;
font-weight: 600;
margin-bottom: 1.5rem;
position: relative;
padding-bottom: 0.75rem;
}

footer h5::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 50px;
height: 2px;
background-color: var(--primary-color);
}

footer a {
color: rgba(255, 255, 255, 0.7);
transition: color var(--transition-speed) ease;
}

footer a:hover {
color: #fff;
text-decoration: none;
}

.social-links a {
display: inline-flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.1);
margin-right: 0.5rem;
transition: all var(--transition-speed) ease;
}

.social-links a:hover {
background-color: var(--primary-color);
transform: translateY(-3px);
}

/* Back to Top Button */
.back-to-top {
position: fixed;
bottom: 20px;
right: 20px;
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
visibility: hidden;
transition: all var(--transition-speed) ease;
z-index: 999;
}

.back-to-top.active {
opacity: 1;
visibility: visible;
bottom: 30px;
}

/* Form Styles */
.form-control:focus {
border-color: var(--primary-color);
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.btn-primary {
background-color: var(--primary-color);
border-color: var(--primary-color);
font-weight: 500;
padding: 0.5rem 1.5rem;
transition: all var(--transition-speed) ease;
}

.btn-primary:hover {
background-color: var(--primary-hover);
border-color: var(--primary-hover);
transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.animate-fade-in {
animation: fadeInUp 0.6s ease-out forwards;
opacity: 0;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--dark) !important;
        margin: 0.5rem -0.75rem;
        padding: 0.5rem 1rem;
        border-radius: 0.25rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
.navbar-collapse {
background-color: var(--dark) !important;
padding: 1rem;
border-radius: 0.5rem;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
margin-top: 1rem;
color: white;
}

.nav-link {
padding: 0.75rem 0 !important;
}

.nav-link::after {
display: none;
}

footer {
text-align: center;
}

footer h5::after {
left: 50%;
transform: translateX(-50%);
}

.social-links {
justify-content: center;
margin-bottom: 1.5rem;
}
}

/* Print Styles */
@media print {
.no-print {
display: none !important;
}

body {
padding-top: 0;
}
}

/* Navbar */

.navbar-brand:hover {
color: #ffc107;
}
.navbar-nav .nav-link {
color: #fff;
font-weight: 600;
}
.navbar-nav .nav-link:hover {
color: #ffc107;
}

/* Hero Section */
.hero {
position: relative;
background: url('static/assets/hero-image.jpg') center center/cover no-repeat;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: white;
}
.hero::after {
content: "";
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background: rgba(0, 0, 0, 0.65);
z-index: 1;
}
.hero-content {
position: relative;
z-index: 2;
max-width: 800px;
}
.hero h1 {
font-size: 3.5rem;
font-weight: 800;
color: #ffb400;
}
.hero p {
font-size: 1.2rem;
margin: 20px 0;
color: #e0e0e0;
}

/* Buttons */
.btn-custom-yellow {
background-color: #ffb400;
color: black;
font-weight: 600;
border-radius: 8px;
padding: 12px 20px;
}
.btn-custom-yellow:hover {
background-color: #ff9900;
color: black;
}
.btn-custom-outline {
border: 2px solid #ffb400;
color: #ffb400;
font-weight: 600;
border-radius: 8px;
padding: 12px 20px;
}
.btn-custom-outline:hover {
background-color: #ffb400;
color: black;
} 
:root {
--background: #e6e3d9;
--foreground: #2b2523;

--card: #e6e3d9;
--card-foreground: #2b2523;

--popover: #e6e3d9;
--popover-foreground: #2b2523;

--primary: #2b2523;
--primary-foreground: #e6e3d9;
--primary-glow: #9a7c51;

--secondary: #e6e3d9;
--secondary-foreground: #2b2523;

--muted: #e6e3d9;
--muted-foreground: #3d302c;

--accent: #9a7c51;
--accent-foreground: #e6e3d9;

--destructive: #990000;
--destructive-foreground: #e6e3d9;

--border: #e6e3d9;
--input: #e6e3d9;
--ring: #2b2523;

--gradient-hero: linear-gradient(135deg, #e6e3d9, #d0c9b5);
--gradient-gold: linear-gradient(135deg, #2b2523, #9a7c51);
--gradient-accent: linear-gradient(45deg, #9a7c51, #634f3a);

--shadow-glow: 0 0 20px #2b2523;
--shadow-card: 0 10px 30px -10px rgba(43, 37, 31, 0.5);

--radius: 0.75rem;

--sidebar-background: #2b2523;
--sidebar-foreground: #f0e6da;
--sidebar-primary: #2b2523;
--sidebar-primary-foreground: #e6e3d9;
--sidebar-accent: #f0e6da;
--sidebar-accent-foreground: #2b2523;
--sidebar-border: #2b2523;
--sidebar-ring: #9a7c51;
}

.dark {
--background: #d0c9b5;
--foreground: #211b19;

--card: #d0c9b5;
--card-foreground: #211b19;

--popover: #d0c9b5;
--popover-foreground: #211b19;

--primary: #211b19;
--primary-foreground: #d0c9b5;

--secondary: #d0c9b5;
--secondary-foreground: #211b19;

--muted: #d0c9b5;
--muted-foreground: #2c2725;

--accent: #d0c9b5;
--accent-foreground: #211b19;

--destructive: #990000;
--destructive-foreground: #211b19;

--border: #d0c9b5;
--input: #d0c9b5;
--ring: #9a7c51;
--sidebar-background: #2b2523;
--sidebar-foreground: #f0e6da;
--sidebar-primary: #2b2523;
--sidebar-primary-foreground: #e6e3d9;
--sidebar-accent: #f0e6da;
--sidebar-accent-foreground: #2b2523;
--sidebar-border: #2b2523;
--sidebar-ring: #9a7c51;
}

* {
border-color: var(--border);
}

body {
background-color: var(--background);
color: var(--foreground);
font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: bold;
letter-spacing: -0.02em;
}

h1 {
font-size: 2.5rem;
line-height: 1.2;
margin-bottom: 1rem;
margin-top: 0;
}

h2 {
font-size: 1.75rem;
line-height: 1.2;
margin-bottom: 1rem;
margin-top: 2rem;
}

h3 {
font-size: 1.5rem;
line-height: 1.2;
margin-bottom: 1rem;
margin-top: 2rem;
}

.gradient-hero {
background: var(--gradient-hero);
}

.gradient-gold {
background: var(--gradient-gold);
}

.gradient-accent {
background: var(--gradient-accent);
}

.glow-effect {
box-shadow: var(--shadow-glow);
}

.card-shadow {
box-shadow: var(--shadow-card);
}

.transition-smooth {
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-text {
background: var(--gradient-gold);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    body {
        padding-top: 70px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .section {
        padding: 3rem 0;
    }
} 