/* CSS Variables - Color Palette */
:root {
    --primary-green: #223d0b;
    --primary-orange: #fc9f46;
    --primary-brown: #7e4405;
    --primary-blue: #66a5f2;
    --primary-beige: #ebd8bf;
    --light-green: #769759;
    --light-orange: #e69074;
    --light-brown: #e9ce92;
    --light-blue: #92c3e9;
    --light-beige: #FFF8F0;
    --dark-green: #0d1d03;
    --dark-orange: #c04c32;
    --dark-brown: #7e5f35;
    --dark-blue: #2066a6;
    --dark-beige: #dbcdbb;
    --white: #ffffff;
    --black: #282625;
    --gray-light: #f8f9fa;
    --gray-medium: #5e6265;
    --gray-dark: #3f4952;
    --gradient-primary: linear-gradient(135deg, var(--primary-green), var(--light-green));
    --gradient-hero: linear-gradient(135deg, var(--primary-orange), var(--primary-brown));
    --gradient-card: linear-gradient(145deg, var(--light-beige), var(--primary-beige));
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--black);
    font-size: 0.95rem;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Header */
.navbar-brand {
    font-weight: 600;
    color: var(--primary-green) !important;
    font-size: 1.4rem;
}

.navbar-nav .nav-link {
    color: var(--gray-dark) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-orange) !important;
}

/* Hero Section */
.hero-section h1 {
  padding-top: 100px;
}
.hero-section {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../DOY_images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--light-beige);
}

.hero-description {
    font-size: 1rem;
    color: var(--light-beige);
}

/* Typography */
h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 1.13rem;
}

h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-brown);
    margin-bottom: 1.13rem;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 0.56rem;
}

p {
    font-size: 0.95rem;
    color: var(--gray-dark);
    margin-bottom: 1.13rem;
}

/* Cards */
.feature-card {
    padding: 2rem 1.5rem;
    background: var(--gradient-card);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 13px 27px rgba(43, 88, 24, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 1.13rem;
}

.service-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 110px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 1.5rem;
}

.service-content h4 {
    color: var(--primary-green);
    margin-bottom: 0.97rem;
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-content li {
    padding: 0.3rem 0;
    color: var(--gray-dark);
    position: relative;
    padding-left: 1.5rem;
}

.service-content li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-orange);
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-orange);
    text-align: center;
    margin-top: 1.07rem;
}

/* Team */
.team-member {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.13rem;
    border: 4px solid var(--primary-beige);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-control {
    border: 2px solid var(--primary-beige);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(237, 141, 72, 0.25);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(29, 58, 20, 0.30);
}

/* Footer */
footer {
    background: var(--dark-green) !important;
}

footer h5 {
    color: var(--primary-orange);
    margin-bottom: 1.13rem;
}

footer a {
    color: var(--light-beige) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-orange) !important;
}


/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
