/* General Styles */
body {
  font-family: 'Arial', sans-serif;
	font-size: 16px;
  color: #333333;
  background-color: #FDFDFD;
  margin: 0;
  padding: 0;
  line-height: 1.8;
}

a {
	color: #333333;
}

/* Wrappers */
.wrapper {
  width: 100%;
  overflow-x: hidden;
}

header, footer {
  width: 100%;
  background: #545558;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 30px 0;
}

header {
  background: #ffffff;
}

.header-content, .footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  filter: brightness(80%);
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  color: #FFFFFF;
  padding: 20px 30px;
  border-radius: 8px;
	font-weight: 700;
}

.hero h1 {
  font-size: 40px;
  margin: 0;
	font-family: 'Poppins', sans-serif;
}

.hero p {
  font-size: 20px;
}

/* About Section */
.about {
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
	font-weight: 700;
	font-family: 'Poppins', sans-serif;
}

h3 {
  font-size: 20px;	
}


/* Gallery Section */
.gallery {
  max-width: 1100px;
  margin: 40px auto;
  text-align: center;
}

.gallery-images {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery-images img {
  width: calc(33.33% - 10px);
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.gallery-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  color: #FFF;
  text-align: center;
}

footer a {
  color: #FFF;
  text-decoration: none;
  margin: 0 10px;
}

footer a:hover {
  text-decoration: underline;
}

.tab {
	display: flex;
	border-bottom: 2px solid #ccc;
	margin-bottom: 20px;
}
.tab button {
	background-color: inherit;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 10px 20px;
	transition: background-color 0.3s;
	font-size: 16px;
}
.tab button:hover {
	background-color: #f1f1f1;
}
.tab button.active {
	border-bottom: 2px solid #C4A97B;;
	color: #C4A97B;
  background: #FAE9E8;
}
.tabcontent {
	display: none;
}
table {
	width: 100%;
	border-collapse: collapse;
}
table, th, td {
	border: 1px solid #ddd;
}
th, td {
	padding: 10px;
	text-align: left;
}
th {
	background-color: #f2f2f2;
}

/* Responsive Design */

@media (max-width: 1150px) {
	/* Pricing Section */
	.pricing {
		padding: 0 40px 0 40px;
	}	
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
  }

  .gallery-images img {
    width: calc(50% - 10px);
  }
	
	.hero h1 {
		font-size: 25px;
		margin: 0;
	}

	.hero p {
		font-size: 14px;
	}
	
	.footer-content {
    flex-direction: column;
    text-align: center;
	}
}

@media (max-width: 480px) {
  .hero-text {
    padding: 15px;
    font-size: 16px;
  }

  .gallery-images img {
    width: 100%;
  }
}


.logo {
  height: 120px;
}

.contact-info {
  text-transform: uppercase;
	font-weight: 600;
	font-family: 'Poppins', sans-serif;
}

.contact-info p {
	margin-block: 5px;
	line-height: 1.2;
}