@charset "UTF-8";

/* General Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', sans-serif;
	background-color: #FFF9E6;
}

/* Navigation Bar */
@media screen and (max-width: 768px) {
	.navbar {
		margin-bottom: 20px;
	}
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 5%;
	margin-bottom: 40px;
}

/* Logo */
.logo img {
	width: 60px;
	height: auto;
	border-radius: 20px;
}

/* Navigation Links */
.nav-links {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.nav-links li {
	display: inline;
}

.nav-links a {
	text-decoration: none;
	color: black;
	font-size: 20px;
	padding: 5px 10px;
	transition: color 0.3s ease-in-out;
}

/* Active Link */
.nav-links a.active {
	font-weight: bold;
	color: #8D2828;
}

/* Hover Effect */
.nav-links a:hover {
	color: #8D2828;
}

/* Contact Button */
.contact-btn {
	background-color: #8D2828;
	color: white;
	padding: 10px 40px;
	text-decoration: none;
	border-radius: 40px;
	font-size: 20px;
	transition: background-color 0.3s ease-in-out;
}

.contact-btn:hover {
	background-color: #C9A66B;
}

.hamburger {
	display: none;
	width: 60px;
	height: 60px;
	background: none;
	border: none;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.hamburger-icon {
	width: 60px;
	height: 60px;
	object-fit: contain;
}

.hamburger:hover .hamburger-icon {
	filter: drop-shadow(0 0 6px #C9A66B);
	transform: scale(1.1);
	transition: transform 0.3s ease, filter 0.3s ease;
}

.mobile-menu {
	display: none;
	flex-direction: column;
	position: absolute;
	top: 80px;
	right: 0;
	width: 100%;
	background-color: #FFF9E6;
	padding: 20px 0;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	z-index: 10;
}

.mobile-menu a {
	text-decoration: none;
	color: black;
	font-family: 'Inter', sans-serif;
	font-size: 20px;
	padding: 12px 0;
	text-align: center;
	transition: background-color 0.3s ease;
}

.mobile-menu a:hover {
	background-color: #D7B99D;
}

.mobile-menu a.active {
	font-weight: bold;
	color: #8D2828;
}

@media (max-width: 768px) {
	.nav-links,
	.contact-btn {
		display: none;
	}
	
	.hamburger {
		display: flex;
	}
}

.mobile-menu.show {
	display: flex;
}

/* Hero Section */
.hero {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #D7B99D;
	padding: 50px 5%;
	gap: 50px;
	margin-bottom: 100px;
}

/* Left Side Content */
.hero-content {
	max-width: 50%;
}

/* Heading */
.hero-content h1 {
	font-family: 'Cinzel', serif;
	font-size: clamp(28px, 5vw, 48px);
	font-weight: bold;
	color: #000;
	margin-bottom: 20px;
}

/* Subheading */
.hero-content h2 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(20px, 4vw, 32px);
	font-weight: normal;
	color: #000;
	margin-bottom: 20px;
}

/* Paragraph Content */
.hero-content p {
	font-family: 'Merriweather', serif;
	font-size: clamp(16px, 2vw, 24px);
	color: #000;
	font-weight: normal;
	margin-bottom: 40px;
}

/* Button */
.btn {
	display: inline-block;
	background-color: #8D2828;
	color: white;
	padding: 12px 24px;
	text-decoration: none;
	border-radius: 40px;
	font-size: 20px;
	margin-bottom: 40px;
	transition: background-color 0.3s ease-in-out;
}

.btn:hover {
	background-color: #C9A66B;
}

/* Right Side Image */
.hero-image {
	width: 40%;
}

.hero-image img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 20px;
}

@media (max-width: 768px) {
	.hero {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 50px 20px;
		gap: 30px;
	}
	
	.hero-content {
		max-width: 100%;
	}

	.hero-content h1 {
		font-size: 32px;
		margin-bottom: 15px;
	}

	.hero-content h2 {
		font-size: 24px;
		margin-bottom: 15px;
	}

	.hero-content p {
		font-size: 18px;
		margin-bottom: 30px;
	}

	.btn {
		font-size: 18px;
		padding: 10px 20px;
		margin-bottom: 30px;
	}

	.hero-image {
		width: 80%;
		order: -1;
	}

	.hero-image img {
		width: 100%;
		height: auto;
		object-fit: cover;
		border-radius: 20px;
	}
}

/* Gallery Preview Section */
.gallery-preview {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #FFF9E6;
	padding: 50px 5%;
	margin-bottom: 100px;
}

/* Home Page Gallery Preview Container */
.gallery-preview-container {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 40px;
	align-items: stretch;
}

/* Individual Gallery Preview Images */
.gallery-preview-container img {
	width: 300px;
	height: 600px;
	object-fit: cover;
	border-radius: 20px;
}

/* View Gallery Button */
.gallery-btn {
	display: inline-block;
	background-color: #8D2828;
	color: white;
	padding: 12px 24px;
	text-decoration: none;
	font-size: 20px;
	border-radius: 40px;
	transition: background-color 0.3s ease-in-out;
}

.gallery-btn:hover {
	background-color: #C9A66B;
}

@media (max-width: 768px) {
	.gallery-preview {
		padding: 40px 20px;
	}

	.gallery-preview-container {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}

	.gallery-preview-container img {
		width: 80%;
		max-width: 300px;
		height: auto;
	}

	.gallery-btn {
		font-size: 18px;
		padding: 10px 20px;
	}
}

/* About Section */
.about {
	background-color: #D7B99D;
	text-align: center;
	padding: 100px 5%;
	margin-bottom: 100px;
}

/* Heading (Cinzel Bold) */
.about h1 {
	font-family: 'Cinzel', serif;
	font-size: 48px;
	font-weight: bold;
	color: #000;
	margin-bottom: 20px;
}

/* Subheading (Playfair Display) */
.about h2 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(20px, 4vw, 32px);
	font-weight: normal;
	color: #000;
	margin-bottom: 40px;
}

/* Button (Inter) */
.about .btn {
	display: inline-block;
	background-color: #8D2828;
	color: white;
	padding: 12px 24px;
	text-decoration: none;
	font-size: 20px;
	border-radius: 40px;
	transition: background-color 0.3s ease-in-out;
}

.about .btn:hover {
	background-color: #C9A66B;
}

@media (max-width: 768px) {
	.about {
		padding: 60px 20px;
		margin-bottom: 60px;
	}

	.about h1 {
		font-size: 32px;
		margin-bottom: 15px;
	}

	.about h2 {
		font-size: 20px;
		margin-bottom: 30px;
	}

	.about .btn {
		font-size: 18px;
		padding: 10px 20px;
	}
}

/* Contact Section */
.contact {
	background-color: #FFF9E6;
	text-align: center;
	padding: 60px 5%;
	margin-bottom: 100px;
}

/* Contact Container */
.contact-container {
	max-width: 800px;
	margin: 0 auto;
}

/* Wide Image with Border Radius */
.contact-image {
	width: 80%;
	max-width: 600px;
	border-radius: 20px;
	margin-bottom: 20px;
}

/* Contact Text */
.contact p {
	font-family: 'Merriweather', serif;
	font-size: clamp(16px, 2vw, 24px);
	color: #000;
	font-weight: normal;
	margin-bottom: 40px;
}

/* View Contact Button */
.contact-button {
	display: inline-block;
	background-color: #8D2828;
	color: white;
	padding: 12px 24px;
	text-decoration: none;
	border-radius: 40px;
	font-size: 20px;
	transition: background-color 0.3s ease-in-out;
}

.contact-button:hover {
	background-color: #C9A66B;
}

@media (max-width: 768px) {
	.contact {
		padding: 40px 20px;
		margin-bottom: 60px;
	}

	.contact-container {
		width: 100%;
	}

	.contact-image {
		width: 100%;
		max-width: 400px;
		margin-bottom: 20px;
	}

	.contact p {
		font-size: 18px;
		margin-bottom: 30px;
	}

	.contact-button {
		font-size: 18px;
		padding: 10px 20px;
	}
}

/* Footer Section */
.footer {
	background-color: #FFF9E6;
	padding-top: 100px;
	text-align: center;
	padding-bottom: 60px;
}

/* Footer Container */
.footer-container {
	max-width: 900px;
	margin: 0 auto;
}

/* Logo */
.footer-logo {
	width: 80px;
	border-radius: 20px;
	margin-bottom: 40px;
}

/* Quick Links */
.quick-links {
	font-size: 20px;
	display: flex;
	justify-content: center;
	gap: 100px;
	margin-bottom: 40px;
}

.quick-links a {
	text-decoration: none;
	color: #000;
	transition: color 0.3s ease-in-out;
}

.quick-links a:hover {
	color: #8D2828;
}

.quick-links a.active {
	font-weight: bold;
	color: #8D2828;
}

/* Social Media Section */
.social-text {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 40px;
}

/* Social Icons */
.social-icons {
	display: flex;
	justify-content: center;
	gap: 100px;
	margin-bottom: 40px;
}

.social-icons img {
	width: 50px;
	transition: transform 0.3s ease-in-out;
}

.social-icons img:hover {
	transform: scale(1.1);
}

/* Footer Divider Line */
.footer-divider {
	width: 100%;
	height: 1px;
	background-color: black;
	margin-bottom: 40px;
}

/* Copyright */
.copyright {
	font-size: 20px;
	color: #000;
}

@media (max-width: 768px) {
	.footer {
		padding: 60px 20px;
	}

	.footer-container {
		width: 100%;
		max-width: 100%;
	}

	.footer-logo {
	  width: 60px;
		margin-bottom: 20px;
	}

	.quick-links {
		flex-direction: column;
		align-items: center;
		gap: 10px;
		margin-bottom: 20px;
	}

	.quick-links a {
		font-size: 18px;
		width: auto;
		text-align: center;
	}

	.social-text {
		font-size: 18px;
		margin-bottom: 20px;
	}

	.social-icons {
		flex-direction: row;
		gap: 20px;
		justify-content: center;
		margin-bottom: 30px;
	}

	.social-icons img {
		width: 40px;
		height: 40px;
	}

	.footer-divider {
		margin-bottom: 20px;
	}
	
	.copyright {
		font-size: 16px;
		text-align: center;
	}
}

/* Hero Section */
.menu-hero {
    position: relative;
    text-align: center;
	margin: 0 100px; /* Adds 100px gap on both left and right */
	margin-bottom: 100px;
}

.menu-hero img {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 20px;
}

.menu-hero h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Cinzel', serif;
    font-size: 48px;
    color: white;
}

/* Menu Intro */
.menu-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 4vw, 32px);
    font-weight: normal;
    color: #000;
	text-align: center;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
  .menu-hero {
    margin: 0 20px;
    margin-bottom: 60px;
  }

  .menu-hero h1 {
    font-size: 32px;
  }

  .menu-intro h2 {
    padding: 0 20px;
    font-size: 24px;
  }
}

/* Menu Category Buttons Grid */
.menu-buttons {
	display: grid;
	grid-template-columns: repeat(5, 220px); /* 5 buttons per row with fixed width */
	justify-content: center;
	gap: 20px;
	margin-bottom: 40px;
}

/* Individual Button Style */
.category-btn {
	background-color: #8D2828;
	color: white;
	font-family: 'Inter', sans-serif;
	font-size: 20px;
	padding: 12px 30px;
	border: none;
	border-radius: 40px;
	cursor: pointer;
	transition: background-color 0.3s ease-in-out;
	text-align: center;
	width: 220px; /* Fixed width for equal sizing */
}

/* Active Button */
.category-btn.active {
	background-color: #C9A66B;
}

/* Hover Effect */
.category-btn:hover {
	background-color: #C9A66B;
}

@media (max-width: 768px) {
  .menu-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 buttons per row, flexible */
    gap: 20px;
    justify-content: center;
    padding: 0 20px;
  }

  .category-btn {
    width: 100%; /* Make each button fill its container */
    font-size: 18px;
    padding: 12px 0; /* Less horizontal padding */
  }
}

/* Wrapper with shape and padding */
.menu-content-wrapper {
    background-color: #D7B99D;
    border-radius: 20px;
    padding: 100px 50px;
    margin: 40px auto 0 auto;
    width: calc(100% - 400px); /* 200px gap on each side */
    max-width: 1200px;
}

/* Center the menu content inside the shape */
.menu-content {
    max-width: 900px;
    width: 100%;
    font-family: 'Merriweather', serif;
    text-align: center;
    margin: 0 auto; /* ← this centers the container inside the wrapper */
}

/* Typography */
.menu-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 20px;
}

.menu-content p {
    font-family: 'Merriweather', serif;
    font-size: 24px;
    margin-bottom: 40px;
}

.menu-pagination {
    display: flex;
    justify-content: center;
    gap: 40px;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    margin-top: 100px; /* 100px after last description */
}

.page-number {
    cursor: pointer;
    position: relative;
    padding-bottom: 4px;
}

.page-number.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: black; /* underline active page */
	transition: width 0.3s ease-in-out;
}

.menu-page {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.menu-page.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
  .menu-content-wrapper {
    width: 90%;
    padding: 100px 25px;
    margin: 40px auto 0 auto;
    border-radius: 20px;
  }
	
	.menu-content h2 {
		font-size: 28px;
	}

	.menu-content p {
		font-size: 20px;
	}

	.menu-pagination {
		font-size: 18px;
	}
}

/* Gallery Section */
.gallery-section {
	padding-top: 40px;
	text-align: center;
}

.gallery-section h1 {
	font-family: 'Cinzel', serif;
	font-size: 48px;
	margin-bottom: 40px;
	font-weight: bold;
}

.gallery-wrapper {
	position: relative;
	max-width: 1320px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.gallery-container {
	width: 1090px;
	overflow: hidden;
}

.gallery-track {
	display: flex;
	width: calc((350px + 20px) * 6 - 20px); /* (item width + gap) * total items - last gap */
	transition: transform 0.5s ease-in-out;
	transform: translateX(0);
	justify-content: flex-start;  /* Ensures the items start from the left */
}

.gallery-item {
	flex: 0 0 350px;
	height: 600px;
	margin-right: 20px;
}

.gallery-item:last-child {
	margin-right: 0;
}

.img-wrapper {
	position: relative;
	height: 100%;
	width: 100%;
	overflow: hidden;
	border-radius: 20px;
}

.img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
	transition: transform 0.3s ease;
}

.img-wrapper:hover img {
	transform: scale(1.03);
}

/* Overlay Dish Name */
.dish-overlay {
	position: absolute;
	bottom: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.6);
	color: #FFF9E6;
	text-align: center;
	padding: 15px 10px;
	font-size: 20px;
	font-family: 'Playfair Display', serif;
	border-radius: 0 0 20px 20px;
}

/* Arrow Buttons */
.arrow {
	background-color: transparent;
	border: none;
	padding: 0;
	height: 60px;
	width: 60px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
}

.arrow img {
	width: 28px;
	height: 28px;
	object-fit: contain;
	transition: filter 0.3s ease, transform 0.3s ease;
}

.arrow:hover img {
	filter: drop-shadow(0 0 10px #C9A66B);
	transform: scale(1.2);
}

/* Lightbox Popup */
.lightbox {
	display: none;
	position: fixed;
	z-index: 999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	justify-content: center;
	align-items: center;
}

.lightbox-content {
	max-width: 90%;
	max-height: 80%;
	border-radius: 10px;
	box-shadow: 0 0 20px #000;
}

.lightbox-close {
	position: absolute;
	top: 30px;
	right: 40px;
	font-size: 48px;
	color: white;
	cursor: pointer;
	font-weight: bold;
	transition: 0.3s;
}

.lightbox-close:hover {
	color: #C9A66B;
}

@media (max-width: 768px) {
	.gallery-wrapper {
		flex-direction: column;
		align-items: center;
		gap: 20px;
		padding: 0 20px;
	}
	
	.gallery-container {
		width: 100%;
		overflow: hidden;
	}
	
	.gallery-track {
		display: block; /* Change from flex to block */
		width: 100%;
	}
	
	.gallery-item {
		width: 80%;
		max-width: 300px;
		margin: 0 auto 20px auto;
		height: auto;
	}
	
	.gallery-item:last-child {
		margin-right: auto;
		margin-left: auto;
	}
	
	.img-wrapper {
		width: 100%;
		height: auto;
	}
	
	.img-wrapper img {
		width: 100%;
		height: auto;
	}

	.arrow {
		display: none;
	}
}

/* Best Seller Section */
.best-seller-section {
	padding-top: 100px;
	text-align: center;
}

.best-seller-section h1 {
	font-family: 'Cinzel', serif;
	font-size: 48px;
	font-weight: bold;
	margin-bottom: 40px;
}

.best-seller-container {
	background-color: #D7B99D;
	border-radius: 20px;
	padding: 100px;
	display: flex;
	flex-direction: column;
	gap: 40px;
	width: max-content;
	margin: 0 auto;
}

.best-seller-item {
	display: flex;
	align-items: flex-end;
	gap: 40px;
}

.best-seller-item img {
	width: 250px;
	border-radius: 20px;
}

.dish-info {
	text-align: left;
	width: 500px;
}

.dish-info h2 {
	font-family: 'Playfair Display', serif;
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 20px;
}

.dish-info p {
	font-family: 'Merriweather', serif;
	font-size: 24px;
}

@media (max-width: 768px) {
	.best-seller-container {
		width: 80%;
		padding: 50px 20px;
	}
	
	.best-seller-item {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	
	.best-seller-item img {
		width: 80%;
		max-width: 250px;
		height: auto;
	}
	.dish-info {
		text-align: center;
		width: 100%;
	}
	
	.dish-info h2 {
		font-size: 24px;
		margin-bottom: 10px;
	}
	
	.dish-info p {
		font-size: 18px;
	}
}

.about-intro {
    padding-top: 100px;
    display: flex;
    justify-content: center;
}

.intro-container {
	width: 1200px;
    font-family: 'Merriweather', serif;
    font-size: 24px;
    line-height: 1.8;
    color: #000;
    text-align: center;
}

@media (max-width: 768px) {
	.about-intro {
		padding-top: 60px;
		padding-left: 20px;
		padding-right: 20px;
	}

	.intro-container {
		width: 100%;
		font-size: 18px;
		line-height: 1.7;
	}
}

.our-story-section {
	padding-top: 100px;
	display: flex;
	justify-content: center;
}

.story-wrapper {
	display: flex;
	gap: 100px;
}

.story-image img {
	width: 400px;
	height: 600px;
	border-radius: 20px;
	object-fit: cover;
}

.story-text-box {
	width: 600px;
	height: 600px;
	border: 2px solid #5D4037;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.story-text-content {
	text-align: left;
	padding: 0 20px;
}

.story-text-content h2 {
	font-family: 'Playfair Display', serif;
	font-size: 32px;
	margin-bottom: 40px;
	color: #000;
}

.story-text-content p {
	font-family: 'Merriweather', serif;
	font-size: 24px;
	line-height: 1.6;
	color: #000;
	max-width: 500px;
}

@media (max-width: 768px) {
	.our-story-section {
		padding: 60px 20px;
		display: block;
	}

	.story-wrapper {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 40px;
	}

	.our-commitment .story-image {
		order: -1;
	}

	.story-image img {
		width: 100%;
		height: auto;
		object-fit: cover;
		border-radius: 20px;
	}

	.story-text-box {
		width: 100%;
		height: auto;
		padding: 30px 20px;
		border: 2px solid #5D4037;
		border-radius: 20px;
	}

	.story-text-content {
		text-align: center;
		padding: 0;
	}

	.story-text-content h2 {
		font-size: 24px;
		margin-bottom: 20px;
	}

	.story-text-content p {
		font-size: 18px;
		max-width: 100%;
	}
}

.contact-intro {
	max-width: 1000px;
	margin: 100px auto 0 auto;
	font-family: 'Playfair Display', serif;
	font-size: 32px;
	text-align: center;
	line-height: 1.6;
	padding: 0 20px;
}

@media (max-width: 768px) {
	.contact-intro {
		font-size: 20px;
		line-height: 1.6;
		margin: 60px 0 0 0;
		padding: 0 20px;
	}
}

.contact-form-container {
	margin-top: 100px;
	display: flex;
	justify-content: center;
}

.contact-form-box {
	background-color: #D7B99D;
	border-radius: 20px;
	width: 1200px;
	height: 800px;
	display: flex;
	padding: 0 50px 0 0;
	box-sizing: border-box;
}

.form-image {
	width: 500px;
	height: 800px;
	object-fit: cover;
	border-radius: 20px;
	display: block;
}

.form-fields {
	margin-left: 100px;
	display: flex;
	flex-direction: column;
    align-self: center;
	height: 700px;
	width: 500px;
	box-sizing: border-box;
	justify-content: flex-start;
}

.form-fields label {
	font-family: 'Merriweather', serif;
	font-size: 24px;
	margin-bottom: 10px;
}

.input-box {
	width: 500px;
	height: 100px;
	background-color: #FFF9E6;
	border: none;
	border-radius: 20px;
	padding: 20px;
	font-family: 'Inter', sans-serif;
	font-size: 20px;
	resize: none;
	box-sizing: border-box;
	margin-bottom: 30px;
}

.message-box {
	height: 200px;
	font-size: 20px;
	font-family: 'Inter', sans-serif;
}

.submit-btn {
	width: 125px;
	height: 60px;
	background-color: #8D2828;
	color: white;
	font-family: 'Inter', sans-serif;
	font-size: 20px;
	font-weight: 400;
	border: none;
	border-radius: 40px;
	cursor: pointer;
	align-self: center;
	text-align: center;
	transition: background-color 0.3s ease-in-out;
}

.submit-btn:hover {
	background-color: #C9A66B;
}

@media (max-width: 768px) {
	.contact-form-container {
		margin-top: 60px;
		padding: 0 20px;
	}

	.contact-form-box {
		flex-direction: column;
		width: 100%;
		height: auto;
		padding: 0;
	}

	.form-image {
		width: 100%;
		height: auto;
		border-radius: 20px 20px 0 0;
	}

	.form-fields {
		margin: 0;
		width: 100%;
		padding: 30px 20px;
		box-sizing: border-box;
		align-self: auto;
	}

	.form-fields label {
		font-size: 20px;
	}

	.input-box {
		width: 100%;
		height: 80px;
		font-size: 18px;
		margin-bottom: 20px;
	}

	.message-box {
		height: 160px;
		font-size: 18px;
	}

	.submit-btn {
		width: 100%;
		max-width: 300px;
		height: 50px;
		font-size: 18px;
	}
}

.map-wrapper {
	position: relative;
	width: 100%;
	max-width: 1200px;
	aspect-ratio: 2 / 1;
	margin: 100px auto 0 auto;
	border-radius: 20px;
	overflow: hidden;
}

.map-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 20px;
}

.address-section {
	margin-top: 20px;
	text-align: center;
	font-family: 'Merriweather', serif;
	font-size: 24px;
	font-weight: 400;
}

@media (max-width: 768px) {
	.address-section {
		font-size: 18px;
		padding: 0 20px;
		margin-top: 20px;
	}
}
