/* ==== RESET ==== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f5f0e8;
    color: #2b1d12;
}

h1, h2{
	font-family: Georgia, "Times New Roman", Times, serif;
}

/* ==== CONTAINER ==== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ==== HEADER ==== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(30, 20, 10, 0.9);
    color: #fff;
    padding: 15px 0;
    z-index: 100;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo span {
    color: #d4af37;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 25px;
    transition: color 0.3s;
}

.nav a:hover {
    color: #d4af37;
}

/* ==== HERO SECTION ==== */
.hero {
    height: 100vh;
    background: url("../assets/hero-bg.jpg") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    animation: fadeIn 1.5s ease;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    background-color: #b88a44;
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #b8922d;
}

/* ==== ANIMATIONS ==== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==== RESPONSIVE ==== */
@media (max-width: 768px) {
    .nav {
        display: none;
        flex-direction: column;
        background: rgba(30, 20, 10, 0.95);
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        padding: 20px;
    }

    .nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
    }
	
	.container {
		width: 100%;
	}
	
	#about{
		padding-bottom: 0 !important;
	}
}

@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
}

.section {
    padding: 0px 0;
}

/* ==== ABOUT US ==== */
.about-container {
    display: flex;
    align-items: center;
    /*gap: 50px;*/
	
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}


.about-text h2 {
    color: #B88A44;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-text h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.about-text p {
    line-height: 1.6;
    color: #8a8072;
}

/* ==== SERVICES ==== */
.services {
    background: #2b1d12;
    color: #aa9d8d;
    text-align: center;
}

.service-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.service-item {
    flex: 1 1 30%;
    /*background: rgba(255, 255, 255, 0.05);*/
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s, background 0.3s;
}

.service-item img {
    width: 50px;
    margin-bottom: 20px;
}

.service-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

/* ==== TEAM ==== */
.team {
    background: #f7f3eb;
    text-align: center;
}

.team h2 {
    color: #B88A44;
    margin-bottom: 40px;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
	max-height: 300px;
}

.member {
	flex-direction: column;
        text-align: center;
    width: 260px;
    background: #fff;
    /*border-radius: 10px;*/
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding-bottom: 20px;
    transition: transform 0.3s;
}

.member img {
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.member:hover {
    transform: translateY(-5px);
}

.member h4 {
    margin-top: 15px;
    color: #2b1d12;
}

.member p {
    color: #6c5a4a;
}

/* ==== ANIMATION ON SCROLL ==== */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==== RESPONSIVE ==== */
@media (max-width: 900px) {
    #about .about-container {
        flex-direction: column;
        text-align: center;
    }

	#about .about-container img{
		max-width: 100%;
	}
	
    .service-items {
        flex-direction: column;
        align-items: center;
    }

    .member {
        width: 80%;
    }
}

/* ==== ARTICLE ==== */
.article {
    background: #f3eee6;
    color: #2b1d12;
}

.article h2 {
    text-align: center;
    margin-bottom: 10px;
    color: #fffefe;
}

.article-meta {
    text-align: center;
    /*font-style: italic;*/
    color: #967644;
    margin-bottom: 0px;
}

.article-content {
    background: #fff;
    padding: 40px;
    border-radius: 0px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    line-height: 1.7;
}

.article-content ol {
    margin: 20px 0 0 25px;
}

/* ==== our services ==== */

/* Outer wrapper for all pairs */
.block-pairs {
  display: grid;
  gap: 0.1rem;
  max-width: 1200px;
  margin-inline: auto;
}

/* Each pair container */
.pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

/* Individual content blocks */
.item {
  background: #ffffff;
  width: 500px;
  /*padding: 1rem;*/
  margin: 0.5rem;
  border: 1px solid #FFE9C7;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}


/* Responsive: stack each item vertically */
@media (max-width: 700px) {
  .pair {
    grid-template-columns: 1fr;
  }
}



/* ==== REVIEWS ==== */
.reviews {
    background: #1f130a;
    color: #aa9d8d;
    text-align: center;
}

.reviews h2 {
    color: #B88A44;
    margin-bottom: 40px;
}

.review-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.review-card {
    background: rgba(38, 33, 29, 1);
    border-radius: 0px;
    padding: 30px;
    max-width: 400px;
    text-align: left;
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.review-header img {
    width: 60px;
    /*height: 60px;*/
    border-radius: 50%;
    margin-right: 15px;
}

/* ==== FOOTER ==== */
.footer {
    background: #0d0906;
    color: #b3a48f;
    text-align: center;
    padding: 50px 0;
    font-size: 0.9rem;
}

.footer h3 {
    color: #d4af37;
    margin-bottom: 10px;
}

.footer p {
    margin: 5px 0;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 768px) {
    .article-content {
        padding: 25px;
    }

    .review-cards {
        flex-direction: column;
        align-items: center;
    }

    .review-card {
        width: 85%;
    }
}