@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

:root {
  --primary-color: #daa520;
  --secondary-color: #b8860b;
  --accent-color: #f5f5dc;
  --text-color: #2d5016;
  --bg-gradient-start: #f5f5dc;
  --bg-gradient-end: #e6e6c7;
  --shadow-color: rgba(0,0,0,0.1);
}

body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  padding-top: 100px; /* space for fixed header */
  min-height: 100vh;
  background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
  color: var(--text-color);
  line-height: 1.6;
  scroll-behavior: smooth;
  overflow-x: hidden;
  position: relative;
  /* 👇 remove overlap space and let footer truly stick */
  padding-bottom: 0;
  animation: bgShift 10s ease-in-out infinite alternate;
}

header {
    background: #111;
    padding: 15px 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    animation: slideDown 0.8s ease-out;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

nav a {
    color: white;
    font-size: 18px;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
}

nav a:hover {
    color: #daa520;
    background: rgba(218, 165, 32, 0.1);
    border-radius: 5px;
    transform: scale(1.05);
    position: relative;
}

nav a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background: #daa520;
    animation: underline 0.3s ease;
}

@keyframes underline {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 60px;
    width: auto;
}

.logo span {
    color: #daa520;
    font-size: 24px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
}

.banner {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 50%;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: white;
    z-index: 1;
    padding-left: 5%;
}

.banner h1 {
    font-size: 4em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.search-bar {
    display: flex;
    gap: 10px;
    max-width: 600px;
    width: 100%;    
}

.search-bar input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 25px;
    font-size: 1em;
    border: 2px solid #daa520 ;
}

.search-bar .btn {
    padding: 12px 20px;
    border-radius: 25px;
    background: #daa520;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.search-bar .btn:hover {
    background: #b8860b;
}

main h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #daa520;
    text-align: center;
    position: relative;
}

main h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #daa520 0%, #f0e68c 100%);
    margin: 10px auto 30px;
    border-radius: 2px;
}

main h1.fade-in {
    animation: fadeIn 1s ease-in;
}

.cart-layout {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.cart-items {
    flex: 1;
}
.cartCount{
    
}

.price-summary {
    width: 300px;
    flex-shrink: 0;
}



.featured h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #daa520;
    text-align: center;
    position: relative;
}

.featured h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #daa520 0%, #f0e68c 100%);
    margin: 10px auto 30px;
    border-radius: 2px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    border-radius: 20px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    animation: cardStagger 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }
.card:nth-child(6) { animation-delay: 0.6s; }

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.card h3 {
    font-size: 1.4em;
    margin: 10px 0;
    color: #2d5016;
}

.card p {
    font-size: 1.1em;
    color: #daa520;
    font-weight: bold;
}

.btn {
    background: linear-gradient(90deg, #daa520 0%, #b8860b 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn:hover {
    background: linear-gradient(90deg, #b8860b 0%, #daa520 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* Category filter buttons */
.categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    padding: 0 20px;
}

.categories button {
    background: linear-gradient(90deg, #daa520 0%, #b8860b 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.categories button:hover {
    background: linear-gradient(90deg, #b8860b 0%, #daa520 100%);
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.categories button.active {
    background: linear-gradient(90deg, #b8860b 0%, #daa520 100%);
    border: 2px solid #daa520;
    transform: scale(1.05);
}

.product-detail {
    display: flex;
    gap: 40px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.product-detail img {
    width: 50%;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.product-detail div {
    flex: 1;
}

#cartItems .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    transition: background 0.3s;
}

#cartItems .item:hover {
    background: #f9f9f9;
}

#cartItems .item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 15px;
    flex-shrink: 0;
}

.item-details {
    flex: 1;
    margin-right: 15px;
}

.item-details h3 {
    margin: 0 0 5px 0;
    color: #2d5016;
    font-size: 1.2em;
}

.item-details p {
    margin: 0 0 10px 0;
    color: #daa520;
    font-weight: bold;
}

.item-details input {
    width: 60px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
}

.total {
    text-align: right;
    padding: 30px 20px;
    background: #f8f8f8;
    border-radius: 10px;
    margin: 20px;
}

.total h2 {
    color: #2d5016;
    font-size: 1.5em;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 30px auto;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

form label {
    font-weight: bold;
    color: #2d5016;
}

form input, form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s;
}

form input:focus, form textarea:focus {
    border-color: #daa520;
    outline: none;
}

.intro-text {
    font-size: 1.2em;
    color: #2d5016;
    margin-bottom: 30px;
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
    max-width: 250px;
}

.info-item .icon {
    font-size: 1.5em;
    color: #daa520;
}

.info-item strong {
    color: #2d5016;
}

.info-item a {
    color: #daa520;
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

iframe {
    width: 100%;
    height: 350px;
    margin: 30px 0;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

footer {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #daa520;
  box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
  z-index: 999;
}


.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.footer-content p {
    margin: 0;
    font-size: 0.9em;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 0;
}

.social-icon {
    color: white;
    font-size: 1.5em;
    transition: color 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    color: #daa520;
}

/* Enhanced Responsiveness */
@media (max-width: 1024px) {
    .grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    .product-detail {
        flex-direction: column;
        gap: 30px;
    }
    .product-detail img {
        width: 100%;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(90deg, #daa520 0%, #b8860b 100%);
        flex-direction: column;
        gap: 0;
        text-align: center;
        padding: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    nav ul.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    nav a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }
    nav a:last-child {
        border-bottom: none;
    }
    nav a:hover {
        background: rgba(255,255,255,0.1);
    }
    .categories {
        gap: 10px;
        padding: 0 10px;
    }
    .categories button {
        padding: 10px 15px;
        font-size: 0.9em;
    }
    .banner {
        height: 500px;
    }
    .banner h1 {
        font-size: 2.2em;
        margin: 0 0 20px 0;
    }
    .search-bar {
        max-width: 300px;
    }
    .grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    .card {
        padding: 20px;
    }
    .card img {
        height: 180px;
    }
    .product-detail {
        padding: 20px;
        gap: 20px;
    }
    form {
        padding: 20px;
        margin: 20px;
    }
    .contact-info {
        gap: 20px;
    }
    .info-item {
        max-width: 200px;
    }
    iframe {
        height: 250px;
    }
    .cart-layout {
        flex-direction: column;
    }
    .cart-items {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .price-summary {
        margin: 0;
    }
}

@media (max-width: 480px) {
    header {
        padding: 10px 15px;
    }
    .logo img {
        height: 50px;
    }
    nav ul {
        gap: 10px;
    }
    .banner {
        padding: 40px 15px;
    }
    .banner h1 {
        font-size: 1.8em;
    }
    .grid {
        padding: 15px;
    }
    .card {
        padding: 15px;
    }
    .card img {
        height: 150px;
    }
    .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .product-detail {
        padding: 15px;
    }
    #cartItems .item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    #cartItems .item img {
        width: 60px;
        height: 60px;
        margin-right: 0;
    }
    .total {
        padding: 20px 15px;
        margin: 15px;
    }
    form {
        padding: 15px;
        margin: 15px;
    }
    iframe {
        height: 200px;
    }
    footer {
        padding: 15px;
        font-size: 0.9em;
    }
}

.cart-link {
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
}

.cart-icon {
    font-size: 18px;
    position: relative;
}

.cart-badge {
    background: #ff0000;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 18px;
    text-align: center;
    display: none;
}

.cart-badge.show {
    display: block;
}

.price-summary {
    max-width: 400px;
    margin: 30px auto;
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #2d5016;
}

.summary-row.total-row {
    border-top: 2px solid #daa520;
    padding-top: 15px;
    margin-top: 15px;
    font-weight: bold;
    font-size: 1.2em;
    color: #daa520;
}

.price-summary .btn {
    width: 100%;
    margin-top: 20px;
    padding: 15px;
    font-size: 1.1em;
}

/* Track Order Page Styles */
.track-order {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px 20px;
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    border-radius: 20px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    animation: fadeIn 1s ease-in;
}

.track-order h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #daa520;
    text-align: center;
    position: relative;
}

.track-order h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #daa520 0%, #f0e68c 100%);
    margin: 10px auto 30px;
    border-radius: 2px;
}

.track-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto 40px;
    justify-content: center;
}

.track-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 1em;
    transition: border-color 0.3s;
}

.track-form input:focus {
    border-color: #daa520;
    outline: none;
}

.track-form .btn {
    padding: 12px 20px;
    border-radius: 25px;
    background: #daa520;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.track-form .btn:hover {
    background: #b8860b;
}

.order-status {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    text-align: center;
}

.order-status h2 {
    color: #2d5016;
    margin-bottom: 20px;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.status-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.status-step::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: #ddd;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.status-step.active::before {
    background: #daa520;
}

.status-step.completed::before {
    background: #daa520;
}

.status-step::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #ddd;
    z-index: -2;
}

.status-step:not(:last-child)::after {
    width: calc(100% + 20px);
}

.status-step.active ~ .status-step::after {
    background: #daa520;
}

.status-step.completed ~ .status-step::after {
    background: #daa520;
}

.status-step.completed::after {
    background: #daa520;
}

.status-label {
    display: block;
    margin-top: 10px;
    font-size: 0.9em;
    color: #2d5016;
    font-weight: bold;
}

.order-details {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.order-details h2 {
    color: #2d5016;
    margin-bottom: 20px;
    text-align: center;
}

.order-details p {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.order-details ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.order-details li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.order-history {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.order-history h2 {
    color: #2d5016;
    margin-bottom: 20px;
    text-align: center;
}

.history-item {
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 10px;
    background: #f9f9f9;
    transition: transform 0.3s ease;
}

.history-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.history-item p {
    margin: 0;
    font-size: 1em;
    color: #2d5016;
}

/* Background shift animation */
@keyframes bgShift {
    from {
        background: linear-gradient(135deg, #f5f5dc 0%, #e6e6c7 100%);
    }
    to {
        background: linear-gradient(135deg, #e6e6c7 0%, #f5f5dc 100%);
    }
}

/* Slide down animation for header */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card stagger animation */
@keyframes cardStagger {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

main, .featured, .track-order, .order-details, .order-history {
    animation: fadeIn 1s ease-in;
}

/* About Page Styles */
.page-header {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #fffacd 0%, #f0e68c 100%);
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #daa520;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.page-header p {
    font-size: 1.2em;
    color: #2d5016;
    max-width: 800px;
    margin: 0 auto;
}

.our-story, .our-mission {
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
    text-align: center;
}

.our-story h2, .our-mission h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #daa520;
    position: relative;
}

.our-story h2::after, .our-mission h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #daa520 0%, #f0e68c 100%);
    margin: 10px auto 30px;
    border-radius: 2px;
}

.our-story p, .our-mission p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #2d5016;
}

.our-values {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f5dc 0%, #e6e6c7 100%);
    margin-bottom: 60px;
}

.our-values h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #daa520;
    position: relative;
}

.our-values h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #daa520 0%, #f0e68c 100%);
    margin: 10px auto 30px;
    border-radius: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    border-radius: 20px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.value-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #2d5016;
}

.value-card p {
    font-size: 1em;
    line-height: 1.6;
    color: #2d5016;
}

.team-section {
    padding: 60px 20px;
    margin-bottom: 60px;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #daa520;
    position: relative;
}

.team-section h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #daa520 0%, #f0e68c 100%);
    margin: 10px auto 30px;
    border-radius: 2px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border: 3px solid #daa520;
}

.team-member h3 {
    font-size: 1.3em;
    margin-bottom: 5px;
    color: #2d5016;
}

.team-member p {
    font-size: 1em;
    color: #daa520;
    font-weight: bold;
}
