/* ===================================
   WOHNEN IM FERGER - MAIN STYLESHEET
   =================================== */
   
/* playfair-display-regular - latin */
   @font-face {
	 font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	 font-family: 'Playfair Display';
	 font-style: normal;
	 font-weight: 400;
	 src: url('../fonts/playfair-display-v39-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
   }
   /* playfair-display-500 - latin */
   @font-face {
	 font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	 font-family: 'Playfair Display';
	 font-style: normal;
	 font-weight: 500;
	 src: url('../fonts/playfair-display-v39-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
   }
   /* playfair-display-600 - latin */
   @font-face {
	 font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	 font-family: 'Playfair Display';
	 font-style: normal;
	 font-weight: 600;
	 src: url('../fonts/playfair-display-v39-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
   }
   /* open-sans-300 - latin */
   @font-face {
	 font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	 font-family: 'Open Sans';
	 font-style: normal;
	 font-weight: 300;
	 src: url('../fonts/open-sans-v43-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
   }
   /* open-sans-regular - latin */
   @font-face {
	 font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	 font-family: 'Open Sans';
	 font-style: normal;
	 font-weight: 400;
	 src: url('../fonts/open-sans-v43-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
   }
   /* open-sans-500 - latin */
   @font-face {
	 font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	 font-family: 'Open Sans';
	 font-style: normal;
	 font-weight: 500;
	 src: url('../fonts/open-sans-v43-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
   }
   /* open-sans-600 - latin */
   @font-face {
	 font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	 font-family: 'Open Sans';
	 font-style: normal;
	 font-weight: 600;
	 src: url('../fonts/open-sans-v43-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
   }
   /* open-sans-700 - latin */
   @font-face {
	 font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	 font-family: 'Open Sans';
	 font-style: normal;
	 font-weight: 700;
	 src: url('../fonts/open-sans-v43-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
   }

/* Reset und Basis-Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.7;
	color: #333;
	background-color: #fff;
	font-size: 16px;
	padding-top: 100px; /* Angepasst für das Menüband mit 25px Padding */
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */

header {
	background: linear-gradient(135deg, #fefefe 0%, #f8f8f8 100%);
	color: #333;
	padding: 0;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
	border-top: 4px solid #51964C;
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 25px 40px !important; /* Optimaler vertikaler Freiraum */
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	box-sizing: border-box;
}

.logo-section {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.logo-circle {
	width: 55px;
	height: 55px;
	background: linear-gradient(135deg, #51964C 0%, #6BA86F 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	box-shadow: 0 8px 25px rgba(81, 150, 76, 0.3);
	border: 3px solid white;
}

.logo-inner {
	width: 44px;
	height: 44px;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(81, 150, 76, 0.2);
}

.logo-letter {
	color: #51964C;
	font-weight: 500;
	font-size: 1.8rem;
	font-family: 'Playfair Display', serif;
	font-style: italic;
}

.logo-accent {
	position: absolute;
	top: -2px;
	right: 6px;
	width: 10px;
	height: 10px;
	background: #d4af37;
	border-radius: 50%;
	border: 2px solid white;
	box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.logo-text h1 {
	color: #1a202c;
	font-size: 2rem;
	font-weight: 400;
	margin: 0 0 -0.2rem 0;
	font-family: 'Georgia', serif;
	letter-spacing: 0.5px;
	text-shadow: none;
	line-height: 1.1;
}

.logo-text p {
	color: #51964C;
	font-size: 0.95rem;
	margin: 0;
	font-weight: 400;
	font-family: 'Georgia', serif;
	font-style: normal;
	letter-spacing: 0.3px;
	line-height: 1.2;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-links a {
	color: #1a202c;
	text-decoration: none;
	font-weight: 500;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	font-family: 'Playfair Display', serif;
	position: relative;
	padding: 15px 8px;
	letter-spacing: 0.5px;
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: 8px;
	left: 50%;
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, #51964C, #6BA86F);
	transition: all 0.4s ease;
	transform: translateX(-50%);
	border-radius: 2px;
}

.nav-links a:hover {
	color: #51964C;
	transform: translateY(-2px);
}

.nav-links a:hover::after {
	width: 100%;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
	background: url('../assets/images/WhatsApp Image 2025-06-08 at 15.43.08.jpeg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	padding: 6rem 0;
	text-align: center;
	position: relative;
	margin-top: 0;
	height: 720px;
	max-height: 720px;
	display: flex;
	align-items: center;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg, rgba(81, 150, 76, 0.2) 0%, transparent 70%);
}

.hero-grid {
	position: relative;
	z-index: 10;
	display: grid;
	grid-template-columns: 1.4fr 0.6fr;
	gap: 3rem;
	align-items: center;
}

.hero-content-box {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(15px);
	border-radius: 25px;
	padding: 2.5rem 3.5rem;
	box-shadow: 0 20px 60px rgba(0,0,0,0.2);
	border-left: 6px solid #51964C;
}

.hero-content-box h1 {
	color: #333;
	font-size: 3.2rem;
	font-weight: 300;
	margin-bottom: 0.8rem;
	letter-spacing: -1px;
}

.hero-subtitle {
	color: #51964C;
	font-size: 1.3rem;
	margin-bottom: 1.5rem;
	font-weight: 500;
}

.hero-description {
	color: #555;
	font-size: 1.2rem;
	line-height: 1.7;
	margin-bottom: 2rem;
}

.cta-button {
	display: inline-block;
	background: linear-gradient(135deg, #51964C, #6BA86F);
	color: white;
	padding: 1.2rem 3rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.2rem;
	box-shadow: 0 8px 25px rgba(81, 150, 76, 0.3);
	transition: all 0.3s ease;
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(81, 150, 76, 0.4);
}

/* ===================================
   MAIN SECTIONS
   =================================== */

.section {
	padding: 6rem 0;
}

.section-background-gradient {
	background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
	position: relative;
	overflow: hidden;
}

.section-decorative-elements .deco-circle-1 {
	position: absolute;
	top: -50px;
	right: -50px;
	width: 200px;
	height: 200px;
	background: rgba(81, 150, 76, 0.1);
	border-radius: 50%;
	z-index: 1;
}

.section-decorative-elements .deco-circle-2 {
	position: absolute;
	bottom: -30px;
	left: -30px;
	width: 150px;
	height: 150px;
	background: rgba(229, 240, 228, 0.8);
	border-radius: 50%;
	z-index: 1;
}

.section-decorative-elements .deco-line {
	position: absolute;
	top: 20%;
	left: 10%;
	width: 3px;
	height: 100px;
	background: #51964C;
	transform: rotate(45deg);
	z-index: 1;
}

.content-grid {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 4rem;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

/* ===================================
   IMAGE COMPONENTS
   =================================== */

.image-card {
	position: relative;
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.image-card img {
	width: 100%;
	height: 300px;
	object-fit: cover;
}

.image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(45deg, rgba(81, 150, 76, 0.1) 0%, transparent 50%);
}

.image-accent-dot {
	position: absolute;
	top: -20px;
	left: -20px;
	width: 60px;
	height: 60px;
	background: #51964C;
	border-radius: 50%;
	opacity: 0.9;
	box-shadow: 0 0 0 8px rgba(255,255,255,0.6);
	z-index: 10;
}

/* ===================================
   TEXT CONTENT BOXES
   =================================== */

.content-box {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	border-radius: 25px;
	padding: 3rem;
	box-shadow: 0 25px 70px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(81, 150, 76, 0.1);
	position: relative;
}

.content-box-accent {
	position: absolute;
	top: -10px;
	left: 30px;
	width: 80px;
	height: 20px;
	background: #51964C;
	border-radius: 10px;
}

.content-box .subtitle {
	color: #51964C;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	opacity: 0.8;
}

.content-box h2 {
	color: #333;
	font-size: 2.5rem;
	font-weight: 300;
	margin-bottom: 2rem;
	line-height: 1.2;
	letter-spacing: -1px;
}

.content-box h2 .highlight {
	color: #51964C;
	font-weight: 400;
}

.content-box p {
	color: #555;
	font-size: 1.1rem;
	line-height: 1.8;
	margin: 0;
}

.content-box-dots {
	position: absolute;
	bottom: 20px;
	right: 30px;
	display: flex;
	gap: 8px;
}

.content-box-dots .dot {
	width: 8px;
	height: 8px;
	background: #51964C;
	border-radius: 50%;
}

.content-box-dots .dot:nth-child(1) { opacity: 0.6; }
.content-box-dots .dot:nth-child(2) { opacity: 0.4; }
.content-box-dots .dot:nth-child(3) { opacity: 0.2; }

/* ===================================
   GALLERY SECTION
   =================================== */

.gallery-grid {
	margin-top: 6rem;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.gallery-item {
	background: white;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 12px 40px rgba(0,0,0,0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.gallery-item img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.gallery-caption {
	padding: 1.5rem;
	text-align: center;
}

.gallery-caption h3 {
	color: #51964C;
	font-size: 1.1rem;
	font-weight: 600;
	margin: 0;
}

/* ===================================
   FEATURES SECTION
   =================================== */

.features-section {
	margin-top: 6rem;
	text-align: center;
}

.features-title {
	color: #333;
	font-size: 2.5rem;
	font-weight: 300;
	margin-bottom: 3rem;
	letter-spacing: -1px;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.feature-card {
	background: white;
	border-radius: 20px;
	padding: 2.5rem 2rem;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
	border-top: 4px solid #51964C;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.feature-card-bg {
	position: absolute;
	top: -30px;
	right: -30px;
	width: 80px;
	height: 80px;
	background: rgba(81, 150, 76, 0.1);
	border-radius: 50%;
}

.feature-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #51964C, #6BA86F);
	border-radius: 50%;
	margin: 0 auto 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 2;
}

.feature-icon span {
	color: white;
	font-size: 1.5rem;
	font-weight: bold;
}

.feature-icon.emoji span {
	font-size: 1.2rem;
}

.feature-card h3 {
	color: #333;
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.feature-card p {
	color: #666;
	font-size: 0.95rem;
	line-height: 1.5;
}

/* ===================================
   EXPECTATIONS SECTION
   =================================== */

.expectations-section {
	padding: 4rem 0;
	background: white;
}

.expectations-title {
	color: #333;
	font-size: 2.5rem;
	font-weight: 300;
	margin-bottom: 1rem;
	text-align: center;
	letter-spacing: -1px;
}

.expectations-subtitle {
	color: #666;
	font-size: 1.2rem;
	text-align: center;
	margin-bottom: 4rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.expectations-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.expectation-card {
	background: linear-gradient(135deg, rgba(229, 240, 228, 0.8), rgba(229, 240, 228, 0.4));
	border-radius: 25px;
	padding: 3rem;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease;
}

.expectation-card:hover {
	transform: translateY(-8px);
}

.expectation-card-bg-1 {
	position: absolute;
	top: -20px;
	right: -20px;
	width: 100px;
	height: 100px;
	background: rgba(81, 150, 76, 0.1);
	border-radius: 50%;
}

.expectation-card-bg-2 {
	position: absolute;
	bottom: -30px;
	left: -30px;
	width: 80px;
	height: 80px;
	background: rgba(81, 150, 76, 0.05);
	border-radius: 50%;
}

.expectation-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #51964C, #6BA86F);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 2rem;
	position: relative;
	z-index: 2;
}

.expectation-icon span {
	color: white;
	font-size: 2rem;
}

.expectation-card h3 {
	color: #333;
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	position: relative;
	z-index: 2;
}

.expectation-card p {
	color: #555;
	font-size: 1.1rem;
	line-height: 1.7;
	position: relative;
	z-index: 2;
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact-section {
	padding: 4rem 0;
	background: #f8f9fa;
}

.contact-title {
	color: #333;
	font-size: 2.5rem;
	font-weight: 300;
	margin-bottom: 1rem;
	text-align: center;
	letter-spacing: -1px;
}

.contact-subtitle {
	color: #666;
	font-size: 1.2rem;
	text-align: center;
	margin-bottom: 4rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.contact-card {
	background: white;
	border-radius: 20px;
	padding: 2.5rem;
	text-align: center;
	box-shadow: 0 15px 40px rgba(0,0,0,0.1);
	border-top: 5px solid #51964C;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.contact-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.contact-card-bg {
	position: absolute;
	top: -20px;
	right: -20px;
	width: 60px;
	height: 60px;
	background: rgba(81, 150, 76, 0.1);
	border-radius: 50%;
}

.contact-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, #51964C, #6BA86F);
	border-radius: 50%;
	margin: 0 auto 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 2;
}

.contact-icon span {
	color: white;
	font-size: 1.8rem;
}

.contact-card h3 {
	color: #333;
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.phone-container {
	background: rgba(81, 150, 76, 0.1);
	border-radius: 12px;
	padding: 1rem;
	margin-bottom: 1.5rem;
}

.phone-number {
	color: #51964C;
	font-size: 1.3rem;
	font-weight: 700;
	text-decoration: none;
}

.phone-number:hover {
	color: #3d7238;
}

.contact-cta {
	background: #51964C;
	border-radius: 12px;
	padding: 1rem;
	margin-bottom: 1.5rem;
}

.contact-cta span {
	color: white;
	font-size: 1.1rem;
	font-weight: 600;
}

.contact-description {
	color: #666;
	font-size: 0.95rem;
	line-height: 1.6;
}

/* ===================================
   FOOTER
   =================================== */

footer {
	background: #51964C;
	color: white;
	text-align: center;
	padding: 2rem 0;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-section h4 {
	margin-bottom: 1rem;
	color: #E5F0E4;
}

.footer-section p {
	margin-bottom: 0.5rem;
	font-size: 0.95rem;
}

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.2);
	padding-top: 1.5rem;
	font-size: 0.9rem;
	color: #E5F0E4;
}

/* ===================================
   ANIMATIONS & TRANSITIONS
   =================================== */

/* Fade-in animation for scroll-triggered elements */
.fade-in {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Initial state for elements that will fade in */
.gallery-item,
.feature-card,
.expectation-card,
.contact-card {
	opacity: 0;
	transform: translateY(30px);
}

/* Image loading animation */
img {
	opacity: 0;
	transition: opacity 0.3s ease;
}

img.loaded {
	opacity: 1;
}

/* Header scroll effect */
header.scrolled {
	background: rgba(254, 254, 254, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Active navigation link */
.nav-links a.active {
	color: #51964C;
}

.nav-links a.active::after {
	width: 100%;
}

/* Background image loading */
.hero {
	background-color: #f8f9fa;
}

.hero.bg-loaded {
	background-color: transparent;
}

/* Smooth transitions for all interactive elements */
.cta-button,
.gallery-item,
.feature-card,
.expectation-card,
.contact-card,
.phone-number {
	transition: all 0.3s ease;
}

/* Pulse animation for call-to-action */
@keyframes pulse {
	0% { box-shadow: 0 8px 25px rgba(81, 150, 76, 0.3); }
	50% { box-shadow: 0 8px 35px rgba(81, 150, 76, 0.5); }
	100% { box-shadow: 0 8px 25px rgba(81, 150, 76, 0.3); }
}

.cta-button:focus {
	animation: pulse 2s infinite;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet Landscape (1024px and down) */
@media screen and (max-width: 1024px) {
	.container {
		padding: 0 30px;
	}
	
	/* Navigation */
	nav {
		padding: 20px 30px !important;
	}
	
	.logo-text h1 {
		font-size: 1.8rem;
	}
	
	.logo-text p {
		font-size: 0.9rem;
	}
	
	.nav-links {
		gap: 1.5rem;
	}
	
	.nav-links a {
		font-size: 1rem;
		padding: 12px 6px;
	}
	
	/* Hero Grid - Tablet: optimized layout */
	.hero {
		height: auto !important;
		max-height: none !important;
		min-height: 70vh;
		padding: 3rem 0;
		background-attachment: scroll !important;
	}
	
	.hero-grid {
		grid-template-columns: 1fr !important;
		gap: 2rem;
		text-align: center;
		justify-content: center;
	}
	
	.hero-content-box {
		max-width: 600px;
		margin: 0 auto;
		padding: 1.5rem 2rem;
	}
	
	.hero-content-box h1 {
		font-size: 2.2rem;
		margin-bottom: 0.6rem;
		line-height: 1.1;
	}
	
	.hero-subtitle {
		font-size: 1.1rem;
		margin-bottom: 1rem;
		line-height: 1.2;
	}
	
	.hero-description {
		font-size: 1rem;
		margin-bottom: 1.5rem;
		line-height: 1.4;
	}
	
	.cta-button {
		padding: 1.1rem 2.8rem;
		font-size: 1.1rem;
	}
	
	/* About Section */
	.content-grid {
		grid-template-columns: 1fr !important;
		gap: 3rem;
	}
	
	.content-box {
		padding: 2.5rem;
	}
	
	.content-box h2 {
		font-size: 2.2rem;
	}
	
	/* Gallery Grid - Tablet: 2 columns */
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 1.5rem;
		margin-top: 4rem;
	}
	
	/* Features Grid - Tablet: 2 columns */
	.features-grid {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 1.5rem;
	}
	
	.feature-card {
		padding: 2rem 1.5rem;
	}
	
	/* Expectations Grid - Tablet: 2 columns (stays same) */
	.expectations-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
	
	/* Contact Grid - Tablet: 2 columns */
	.contact-grid {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 2rem;
	}
	
	/* Make third contact card span both columns on tablet */
	.contact-card:nth-child(3) {
		grid-column: 1 / -1;
		max-width: 500px;
		margin: 0 auto;
	}
}

/* Mobile Menu Button */
.mobile-menu-btn {
	display: none;
	flex-direction: column;
	justify-content: space-around;
	width: 30px;
	height: 30px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 1001;
}

.mobile-menu-btn span {
	width: 100%;
	height: 3px;
	background: #333;
	border-radius: 2px;
	transition: all 0.3s ease;
	transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
	transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-btn.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

/* Tablet Portrait (768px and down) */
@media screen and (max-width: 768px) {
	body {
		padding-top: 80px;
		font-size: 15px;
	}
	
	.container {
		padding: 0 20px;
	}
	
	/* Navigation */
	nav {
		padding: 15px 20px !important;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
	
	.mobile-menu-btn {
		display: flex;
	}
	
	.nav-links {
		position: fixed;
		top: 80px;
		left: 0;
		right: 0;
		background: rgba(254, 254, 254, 0.98);
		backdrop-filter: blur(10px);
		flex-direction: column;
		padding: 2rem;
		box-shadow: 0 4px 20px rgba(0,0,0,0.1);
		transform: translateY(-100%);
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
		z-index: 1000;
	}
	
	.nav-links.mobile-menu-open {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}
	
	.nav-links a {
		padding: 15px 0;
		border-bottom: 1px solid rgba(81, 150, 76, 0.1);
		text-align: center;
		font-size: 1.1rem;
	}
	
	.nav-links a:last-child {
		border-bottom: none;
	}
	
	.logo-section {
		gap: 1rem;
	}
	
	.logo-circle {
		width: 45px;
		height: 45px;
	}
	
	.logo-inner {
		width: 36px;
		height: 36px;
	}
	
	.logo-letter {
		font-size: 1.5rem;
	}
	
	.logo-text h1 {
		font-size: 1.6rem;
	}
	
	.logo-text p {
		font-size: 0.85rem;
	}
	
	/* Hero Section */
	.hero {
		height: auto !important;
		max-height: none !important;
		min-height: 60vh;
		padding: 2rem 0 2rem 0;
		background-attachment: scroll !important;
		margin-top: 0;
	}
	
	.hero-grid {
		grid-template-columns: 1fr !important;
		gap: 1rem;
		justify-content: center;
		text-align: center;
	}
	
	.hero-content-box {
		padding: 2rem 2rem 2.5rem 2rem;
		border-radius: 20px;
		max-width: none;
		margin: 0 auto;
		backdrop-filter: blur(10px);
	}
	
	.hero-content-box h1 {
		font-size: 2.2rem;
		margin-bottom: 1rem;
		line-height: 1.2;
	}
	
	.hero-subtitle {
		font-size: 1.2rem;
		margin-bottom: 1.3rem;
		line-height: 1.4;
	}
	
	.hero-description {
		font-size: 1.1rem;
		margin-bottom: 2rem;
		line-height: 1.6;
	}
	
	.cta-button {
		padding: 0.9rem 2rem;
		font-size: 1rem;
		border-radius: 40px;
		display: inline-block;
		width: auto;
	}
	
	/* About Section */
	.content-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}
	
	.image-card {
		order: 2;
	}
	
	.content-box {
		order: 1;
		padding: 2rem;
	}
	
	.content-box h2 {
		font-size: 2rem;
		margin-bottom: 1.5rem;
	}
	
	.content-box .subtitle {
		font-size: 0.8rem;
		margin-bottom: 0.8rem;
	}
	
	.content-box p {
		font-size: 1rem;
	}
	
	/* Gallery Grid - Mobile: 1 column */
	.gallery-grid {
		grid-template-columns: 1fr !important;
		gap: 1.5rem;
		margin-top: 3rem;
	}
	
	/* Features Grid - Mobile: 1 column */
	.features-title {
		font-size: 2rem;
		margin-bottom: 2rem;
	}
	
	.features-grid {
		grid-template-columns: 1fr !important;
		gap: 1.5rem;
	}
	
	.feature-card {
		padding: 2rem 1.5rem;
	}
	
	.feature-card h3 {
		font-size: 1.1rem;
	}
	
	.feature-icon {
		width: 50px;
		height: 50px;
		margin-bottom: 1.2rem;
	}
	
	.feature-icon span {
		font-size: 1.3rem;
	}
	
	/* Expectations Grid - Mobile: 1 column */
	.expectations-title {
		font-size: 2rem;
		margin-bottom: 0.8rem;
	}
	
	.expectations-subtitle {
		font-size: 1.1rem;
		margin-bottom: 3rem;
	}
	
	.expectations-grid {
		grid-template-columns: 1fr !important;
		gap: 1.5rem;
	}
	
	.expectation-card {
		padding: 2rem;
	}
	
	.expectation-card h3 {
		font-size: 1.3rem;
		margin-bottom: 1.2rem;
	}
	
	.expectation-icon {
		width: 60px;
		height: 60px;
		margin-bottom: 1.5rem;
	}
	
	.expectation-icon span {
		font-size: 1.5rem;
	}
	
	/* Contact Grid - Mobile: 1 column */
	.contact-title {
		font-size: 2rem;
		margin-bottom: 0.8rem;
	}
	
	.contact-subtitle {
		font-size: 1.1rem;
		margin-bottom: 3rem;
	}
	
	.contact-grid {
		grid-template-columns: 1fr !important;
		gap: 1.5rem;
	}
	
	.contact-card {
		padding: 2rem;
	}
	
	.contact-card h3 {
		font-size: 1.2rem;
	}
	
	.contact-icon {
		width: 50px;
		height: 50px;
		margin-bottom: 1.2rem;
	}
	
	.contact-icon span {
		font-size: 1.4rem;
	}
	
	.phone-number {
		font-size: 1.2rem;
	}
	
	/* Reset third contact card spanning */
	.contact-card:nth-child(3) {
		grid-column: auto;
		max-width: none;
		margin: 0;
	}
	
	/* Footer */
	.footer-content {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		text-align: center;
	}
	
	.section {
		padding: 3rem 0;
	}
}

/* Mobile (480px and down) */
@media screen and (max-width: 480px) {
	body {
		padding-top: 70px;
		font-size: 14px;
	}
	
	.container {
		padding: 0 15px;
	}
	
	/* Navigation */
	nav {
		padding: 12px 15px !important;
	}
	
	.logo-circle {
		width: 40px;
		height: 40px;
	}
	
	.logo-inner {
		width: 32px;
		height: 32px;
	}
	
	.logo-letter {
		font-size: 1.3rem;
	}
	
	.logo-text h1 {
		font-size: 1.4rem;
	}
	
	.logo-text p {
		font-size: 0.8rem;
	}
	
	.nav-links a {
		font-size: 0.9rem;
		padding: 8px 4px;
	}
	
	/* Hero Section */
	.hero {
		min-height: 50vh;
		padding: 1.5rem 0 1.5rem 0;
		background-attachment: scroll !important;
	}
	
	.hero-content-box {
		padding: 1.8rem 1.8rem 2rem 1.8rem;
		border-radius: 15px;
		margin: 0 auto;
	}
	
	.hero-content-box h1 {
		font-size: 1.8rem;
		margin-bottom: 0.8rem;
		line-height: 1.15;
	}
	
	.hero-subtitle {
		font-size: 1.1rem;
		margin-bottom: 1.1rem;
		line-height: 1.4;
	}
	
	.hero-description {
		font-size: 1rem;
		margin-bottom: 1.6rem;
		line-height: 1.5;
	}
	
	.cta-button {
		padding: 0.8rem 1.8rem;
		font-size: 0.95rem;
		border-radius: 35px;
	}
	
	/* About Section */
	.section {
		padding: 4rem 0;
	}
	
	.content-box {
		padding: 1.5rem;
		border-radius: 20px;
	}
	
	.content-box h2 {
		font-size: 1.8rem;
		margin-bottom: 1.2rem;
	}
	
	.content-box .subtitle {
		font-size: 0.75rem;
		margin-bottom: 0.8rem;
	}
	
	.content-box p {
		font-size: 0.95rem;
	}
	
	/* Gallery Grid - Small Mobile: 1 column */
	.gallery-grid {
		grid-template-columns: 1fr !important;
		gap: 1.2rem;
		margin-top: 2.5rem;
	}
	
	/* Features Grid - Small Mobile: 1 column */
	.features-grid {
		grid-template-columns: 1fr !important;
		gap: 1.2rem;
	}
	
	.feature-card {
		padding: 1.5rem;
	}
	
	.feature-icon {
		width: 45px;
		height: 45px;
		margin-bottom: 1rem;
	}
	
	.feature-icon span {
		font-size: 1.2rem;
	}
	
	.feature-card h3 {
		font-size: 1rem;
		margin-bottom: 0.8rem;
	}
	
	.feature-card p {
		font-size: 0.9rem;
	}
	
	/* Expectations */
	.expectations-section {
		padding: 3rem 0;
	}
	
	.expectations-title {
		font-size: 1.8rem;
	}
	
	.expectations-subtitle {
		font-size: 1rem;
	}
	
	.expectation-card {
		padding: 1.5rem;
		border-radius: 20px;
	}
	
	.expectation-icon {
		width: 55px;
		height: 55px;
		margin-bottom: 1.2rem;
	}
	
	.expectation-icon span {
		font-size: 1.4rem;
	}
	
	.expectation-card h3 {
		font-size: 1.2rem;
		margin-bottom: 1rem;
	}
	
	.expectation-card p {
		font-size: 0.95rem;
	}
	
	/* Contact */
	.contact-section {
		padding: 3rem 0;
	}
	
	.contact-title {
		font-size: 1.8rem;
	}
	
	.contact-subtitle {
		font-size: 1rem;
	}
	
	.contact-card {
		padding: 1.5rem;
		border-radius: 15px;
	}
	
	.contact-icon {
		width: 45px;
		height: 45px;
		margin-bottom: 1rem;
	}
	
	.contact-icon span {
		font-size: 1.3rem;
	}
	
	.contact-card h3 {
		font-size: 1.1rem;
		margin-bottom: 0.8rem;
	}
	
	.phone-container {
		padding: 0.8rem;
		margin-bottom: 1.2rem;
	}
	
	.phone-number {
		font-size: 1.1rem;
	}
	
	.contact-cta {
		padding: 0.8rem;
		margin-bottom: 1.2rem;
	}
	
	.contact-cta span {
		font-size: 1rem;
	}
	
	.contact-description {
		font-size: 0.9rem;
	}
	
	/* Footer */
	footer {
		padding: 1.5rem 0;
	}
	
	.footer-section h4 {
		font-size: 1rem;
		margin-bottom: 0.8rem;
	}
	
	.footer-section p {
		font-size: 0.9rem;
		margin-bottom: 0.4rem;
	}
	
	.footer-bottom {
		padding-top: 1.2rem;
		font-size: 0.85rem;
	}
}

/* Extra Small Mobile (360px and down) */
@media screen and (max-width: 360px) {
	.container {
		padding: 0 10px;
	}
	
	nav {
		padding: 10px !important;
	}
	
	.logo-text h1 {
		font-size: 1.2rem;
	}
	
	.logo-text p {
		font-size: 0.75rem;
	}
	
	.hero {
		min-height: 45vh;
		padding: 1rem 0;
	}
	
	.hero-content-box {
		padding: 1.5rem 1.5rem 1.8rem 1.5rem;
		border-radius: 12px;
	}
	
	.hero-content-box h1 {
		font-size: 1.6rem;
		margin-bottom: 0.7rem;
		line-height: 1.1;
	}
	
	.hero-subtitle {
		font-size: 1rem;
		margin-bottom: 0.9rem;
		line-height: 1.3;
	}
	
	.hero-description {
		font-size: 0.9rem;
		margin-bottom: 1.4rem;
		line-height: 1.4;
	}
	
	.cta-button {
		padding: 0.7rem 1.5rem;
		font-size: 0.85rem;
		border-radius: 30px;
	}
	
	.content-box {
		padding: 1.2rem;
	}
	
	.content-box h2 {
		font-size: 1.6rem;
	}
	
	.expectations-title,
	.contact-title,
	.features-title {
		font-size: 1.6rem;
	}
} 