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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #D2691E 0%, #D2691E 100%);
    color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 2rem;
}

.logo {
    text-align: left;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-link {
    display: block;
    text-decoration: none;
}

.logo-image {
    height: 100px;
    width: 100px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.logo-link:hover .logo-image {
    opacity: 0.8;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.logo p {
	margin-top:0;
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.9;
}

/* Navigation Styles */
.main-nav {
    background-color: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    width: 100%;
    margin: 1rem 0 0 0;
    padding: 0;
}

.main-nav .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 1rem 0;
}

.nav-list li a {
    color: white;
    text-decoration: none;
    font-size: .9rem;
    padding: 0.25rem 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    position: relative;
}

.nav-list li a:hover {
    color: rgba(255,255,255,0.8);
    border-bottom-color: rgba(255,255,255,0.5);
}

.nav-list li a.active {
    color: #8B4513;
    border-bottom-color: #8B4513;
    font-weight: bold;
}

/* Main Content Styles */
main {
    width: 100%;
    margin: 0 auto;
    padding: 2rem 2rem;
    max-width: none;
}

.intro {
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

/* Image Button Grid */
.image-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;
    max-width: 2000px;
    margin: 0 auto;
}

.image-button {
    position: relative;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.image-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.4s ease;
    z-index: 1;
}

.image-button:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.image-button:hover::before {
    transform: scale(1.2);
}

.image-button.spirits::before {
    background-image: url('img/SJI-Distillery-spirits-1200x650.jpg');
}

.image-button.cider::before {
    background-image: url('img/san-juan-island-distillery-apple-orchard-1200x800.jpg');
}

.image-button.tastings::before {
    background-image: url('img/tasting-glass-san-juan-island-distillery-pommeau.jpg');
}

.image-button.order::before {
    background-image: url('img/Copper-still-distillery-1200x800.jpg');
}

.image-button.awards::before {
    background-image: url('img/medals-at-san-juan-island-distillery-1024x683.jpg');
}

.image-button.location::before {
    background-image: url('img/san-juan-island-distillery-exterior-1200x800.jpg');
');
}





.image-button-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: white;
}

.image-button-content h3 {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 0;
    line-height: 3rem;
}

.image-button-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #D2691E 0%, #D2691E 100%);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        align-items: center;
        padding-bottom: 0;
    }

    .logo {
        text-align: center;
    }

    .main-nav {
        margin: 1rem -1rem 0;
        padding: 0 1rem;
    }

    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .nav-list li a {
        font-size: 0.9rem;
    }

    .logo h1 {
        font-size: 2rem;
    }

    .hero-section h2 {
        font-size: 2rem;
    }

    .image-buttons {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        max-width: 600px;
    }

    .image-button {
        height: 200px;
    }

    .image-button-content h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    main {
        padding: 2rem 1rem;
    }

    .logo h1 {
        font-size: 1.8rem;
    }

    .hero-section h2 {
        font-size: 1.8rem;
    }

    .image-buttons {
        gap: 0.75rem;
        max-width: 500px;
    }

    .image-button {
        height: 150px;
    }

    .image-button-content h3 {
        font-size: 1.5rem;
    }

    .image-button-content p {
        font-size: 0.9rem;
    }
}

.page-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: .5rem 2rem;
}

.page-title {
	font-size: 2rem;
	color: #D2691E;
	margin-bottom: 0rem;
	text-align: left;
}

.content-section {
	margin-bottom: 3rem;
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Customer Testimonial Styles */
.customer-testimonial {
	max-width: 800px;
	margin: 4rem auto 2rem;
	text-align: center;
	padding: 0 2rem;
}

.testimonial-quote {
	font-size: 1.7rem;
	font-style: italic;
	color: #2c3e50;
	line-height: 1.4;
	margin: 0 0 2rem 0;
	font-family: 'Georgia', serif;
	position: relative;
	transition: opacity 0.3s ease;
	display: inline-block;
	max-width: 100%;
}

.testimonial-quote::before {
	content: '\201C';
	font-size: 7rem;
	color: #D2691E;
	position: absolute;
	left: -4.5rem;
	top: -2rem;
	font-family: "Times New Roman", Times, serif;
	line-height: 1;
	opacity: 0.8;
}

.testimonial-quote::after {
	content: '\201D';
	font-size: 6.5rem;
	color: #D2691E;
	position: absolute;
	right: -3.3rem;
	top: -1.8rem;
	font-family: "Times New Roman", Times, serif;
	line-height: 1;
	opacity: 0.8;
}

.quote-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
}

.quote-nav-btn {
	background: #D2691E;
	color: white;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 1.5rem;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.quote-nav-btn:hover {
	background: #B8541A;
	transform: scale(1.1);
}

.quote-indicators {
	display: flex;
	gap: 0.5rem;
}

.indicator {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #bdc3c7;
	cursor: pointer;
	transition: all 0.3s ease;
}

.indicator.active {
	background: #D2691E;
	transform: scale(1.2);
}

.indicator:hover {
	background: #95a5a6;
}

@media (max-width: 768px) {
	.customer-testimonial {
		margin: 3rem auto 2rem;
		padding: 0 1rem;
	}
	
	.testimonial-quote {
		font-size: 1.4rem;
	}
	
	.testimonial-quote::before,
	.testimonial-quote::after {
		font-size: 5rem;
	}
	
	.testimonial-quote::before {
		left: -2.5rem;
		top: -1rem;
	}
	
	.testimonial-quote::after {
		right: -2.5rem;
		top: -1rem;
	}
	
	.quote-nav-btn {
		width: 35px;
		height: 35px;
		font-size: 1.3rem;
	}
}


.address-info {
	background: #f8f9fa;
	padding: 1.5rem;
	border-radius: 10px;
	border-left: 4px solid #D2691E;
	margin: 1.5rem 0;
}

.directions-info {
	background: #e8f4f8;
	padding: 1.5rem;
	border-radius: 10px;
	border-left: 4px solid #2c3e50;
	margin: 1.5rem 0;
}

.directions-info strong {
	color: #2c3e50;
}

/* Responsive map image styling */
.map-image-container {
	width: 100%;
	max-width: 1600px; /* Maximum width for larger screens */
	margin: 2rem; /* Center the container */
}

.map-image {
	width: 100%;
	height: auto; /* Maintains aspect ratio */
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
	.page-content {
		padding: 1rem;
	}
	
	.page-title {
		font-size: 2rem;
	}
	
	.content-section {
		padding: 1.5rem;
	}
	
	.section-title {
		font-size: 1.5rem;
	}

	.map-iframe {
		height: 300px;
	}

	.map-image-container {
		max-width: 100%; /* Full width on mobile */
		margin: 1.5rem auto;
	}
}

@media (max-width: 480px) {
	.map-image-container {
		margin: 1rem auto;
	}
}


.tastings-info {
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

.tastings-hours {
	background: #f8f9fa;
	padding: 1.5rem;
	border-radius: 10px;
	border-left: 4px solid #D2691E;
	margin: 1.5rem 0;
}

.contact-info {
	background: #e8f4f8;
	padding: 1.5rem;
	border-radius: 10px;
	border-left: 4px solid #2c3e50;
	margin: 1.5rem 0;
}

.contact-info strong {
	color: #2c3e50;
}

@media (max-width: 768px) {
	.page-content {
		padding: 1rem;
	}
	
	.page-title {
		font-size: 2rem;
	}
	
	.content-section {
		padding: 1.5rem;
	}
	
	.section-title {
		font-size: 1.5rem;
	}
}

.page-content h2 {
	font-family: 'Arial', 'Helvetica', sans-serif;
	font-size: 1.3rem;
	font-weight: 900;
	color: #D2691E;
	margin: 2rem 0 1rem 0;
}

.page-content h3 {
	font-family: 'Arial', 'Helvetica', sans-serif;
	font-size: 1.1rem;
	font-weight: 900;
	color: #000;
}

.page-content p {
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 1.2rem;
	color: #2c3e50;
}

/* Definition List Styles */
.page-content dl {
	margin: 1.5rem 0;
	margin-left: 2rem;
	display: grid;
	grid-template-columns: 160px 1fr;
	gap: 1rem 1rem;
	align-items: start;
}

.page-content dt {
	font-family: 'Arial', 'Helvetica', sans-serif;
	font-size: 1.1rem;
	font-weight: 900;
	text-align: right;
	color: #000;
	margin: 0;
	padding-right: 1rem;
}

.page-content dd {
	font-size: 1rem;
	line-height: 1.6;
	color: #2c3e50;
	margin: 0;
}

@media (max-width: 768px) {
	.page-content {
		padding: 1rem;
	}
	
	.page-title {
		font-size: 2rem;
	}
	
	.page-content h2 {
		font-size: 1.4rem;
	}
	
	.content-section {
		padding: 1.5rem;
	}
	
	.section-title {
		font-size: 1.5rem;
	}
	
	.page-content dl {
		margin-left: 1rem;
		grid-template-columns: 120px 1fr;
		gap: 0.5rem 1rem;
	}
}

.pageTopFeatured { float:right; }
