/*-----------------------------------------------------------------------------
author:    www.visityakima.com
-----------------------------------------------------------------------------*/


/* =Yakima Valley Wine Country Default page
-----------------------------------------------------------------------------*/
header {
			background:none;
        }

 /* --- Hero Section --- */
 .hero {
   width: 100vw; /* Force it to the full viewport width */
   max-width: none; /* Override the global section max-width */
   height: 85vh;
   margin-left: calc(-50vw + 50%); /* Centers the wide element if parent is constrained */
   margin-right: calc(-50vw + 50%);
   /* Ensure the image scales to cover the entire area without distortion */
   background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('/img/hero-image-1920-freehand-cellars.jpg') center/cover no-repeat;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   padding: 0; /* Removing padding ensures the image hits the edges */
   color:#fff;
	 text-align: center;
 }

 .hero h1 {
   font-size: clamp(2.5rem, 6vw, 4.5rem);
   margin-bottom: 20px;
	 padding:0 5% 0 5%;
	font-family:var(--font-family-main);
 }

 .hero h1 em {
   font-family: serif;
   color: var(--text-light);
	 display: block;
 }

 .hero p {
   max-width: 600px;
   font-size: 1.1rem;
   margin-bottom: 30px;
   opacity: 0.9;
   padding:0 5%;
 }

 .btn-group {
   display: flex;
   gap: 15px;
 }

 .btn {
   padding: 12px 30px;
   border-radius: 50px;
   font-size: 1.25rem;
   transition: var(--transition);
   border: 1px solid transparent;
   font-family:var(--font-family-main);
	 text-transform: uppercase;
 }

 .btn-primary {
   background: var(--accent-gold);
   color: #fff;
 }

 .btn-outline {
   border-color: #fff;
   color: #fff;
 }

 .btn:hover {
   transform: translateY(-3px);
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
 }

/* --- Sections General --- */
 .section-intro {
   margin-bottom: 50px;
   animation: fadeInUp 1s ease-out;
 }

 .section-intro h2 {
   font-size: 2.5rem;
   margin-bottom: 10px;
 }

/* --- Grid Layouts --- */
 .gridHome {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
   gap: 30px;
   width: 100%;
 }

/* --- Service Cards --- */
 .card {
   background: #fff;
   border-radius: 12px;
   overflow: hidden;
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
   transition: var(--transition);
   display: block;
   text-align: left;
 }

 .card:hover {
   transform: scale(1.02);
 }

 .card-img {
   height: 250px;
   overflow: hidden;
 }

 .card-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: 0.5s;
 }

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

 .card-content {
   padding: 25px;
 }

 .card-content h3 {
   margin-bottom: 10px;
   font-size: 1.75rem;
 }

/* --- Tourism Section --- */
 .tourism-section {
   background: #f4f1ec;
	 padding: 80px 5%;
	 text-align: center;
	 border-radius: 25px 25px 0 0;;
 }

 .tourism-card {
   position: relative;
   height: 400px;
   border-radius: 8px;
   overflow: hidden;
   color: #fff;
 }

 .tourism-card h3 {
   margin-bottom: 10px;
   font-size: 1.75rem;
 }

 .tourism-card img {
   position: absolute;
   width: 100%;
   height: 100%;
   object-fit: cover;
   z-index: 1;
 }

 .tourism-overlay {
   position: absolute;
   inset: 0;
   z-index: 2;
   background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
   display: flex;
   flex-direction: column;
   justify-content: flex-end;
   padding: 30px;
   text-align: left;
 }
	
@media screen and (max-width: 1350px) {
	

	
}

@media screen and (max-width: 1200px) {


	
}

@media screen and (max-width: 1150px) {
	
	
	
}
	
@media screen and (max-width: 1100px) {	

		

	
}
	
@media screen and (max-width: 950px) {
	


	
}

@media screen and (max-width: 900px) {	


	
}

@media screen and (max-width: 800px) {
	


		
}

@media (max-width: 768px) {
 	.gridHome { grid-template-columns: 1fr; }
	.hero h1 { font-size: 2.8rem; }
	.hero {
   height: 75vh;
 }
}
	
@media screen and (max-width: 750px) {	


	
	
}

@media screen and (max-width: 600px) {



	
}
