/* ================================
   Atlantic Blueberry Website Styles
   ================================ */

/* CSS Variables for Easy Customization */
:root {
    --primary-color: #2c5f8d;
    --secondary-color: #4a7ba7;
    --accent-color: #6b9bc3;
    --light-blue: #a8d5e2;
    --very-light-blue: #e8f4f8;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --success-green: #5a8a5a;
    --border-color: #e0e0e0;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* ================================
   Base Styles
   ================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ================================
   Navigation
   ================================ */

.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.75rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.logo:hover {
    opacity: 0.8;
}

.logo-image {
    height: 50px;
    width: auto;
    display: block;
}

.logo-text {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* ================================
   Buttons
   ================================ */

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-family: var(--font-body);
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.btn-light:hover {
    background-color: var(--very-light-blue);
    color: var(--primary-color);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-icon {
    font-size: 1.5rem;
}

/* ================================
   Hero Section
   ================================ */

.hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
}

.hero-fixed-bg {
    background-image: linear-gradient(rgba(44, 95, 141, 0.7), rgba(74, 123, 167, 0.7)), url('../images/hero-blueberry-field.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--white);
    font-weight: 300;
}

/* ================================
   Page Header
   ================================ */

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--white);
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ================================
   Home Page Sections
   ================================ */

.intro-section-corporate {
    padding: 5rem 0;
    background-color: var(--white);
}

.intro-corporate-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.intro-corporate-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.intro-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.intro-sub {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 0;
}

.home-features-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.home-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.home-feature-card {
    background-color: var(--white);
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

.home-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.home-feature-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.home-feature-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.home-feature-card p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.feature-link:hover {
    color: var(--secondary-color);
}

.our-story-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-image img {
    width: 100%;
    height: auto;
}

.story-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.partnership-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--very-light-blue) 0%, var(--white) 100%);
}

.partnership-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.partnership-content h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.partnership-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.partnership-link {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.partnership-link:hover {
    color: var(--secondary-color);
}

/* ================================
   Features Section
   ================================ */

.features-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon-corporate {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ================================
   Stats Section
   ================================ */

.stats-section {
    padding: 4rem 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

/* ================================
   About Page Styles
   ================================ */

.testimonials-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.quote-icon {
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-medium);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    text-align: right;
    margin-bottom: 0;
}

.testimonial-featured {
    grid-column: span 1;
    background: linear-gradient(135deg, var(--very-light-blue) 0%, var(--white) 100%);
}

.about-content-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.about-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.about-content-wrapper h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.about-content-wrapper p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.products-shipping-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.content-box {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.content-box h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.content-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

/* Philosophy Section */
.philosophy-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.philosophy-intro {
    max-width: 1000px;
    margin: 0 auto 4rem;
    text-align: center;
}

.philosophy-intro h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.philosophy-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 400;
}

.philosophy-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.philosophy-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.philosophy-card-reverse {
    grid-template-columns: 1.5fr 1fr;
}

.philosophy-card-image {
    height: 100%;
    min-height: 400px;
}

.philosophy-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.philosophy-card-content {
    padding: 3rem;
}

.philosophy-card-reverse .philosophy-card-content {
    order: -1;
}

.philosophy-card-content h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.philosophy-card-content p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.sustainability-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.sustainability-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
    line-height: 1.6;
}

.sustainability-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Staff Section */
.staff-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.staff-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.staff-intro p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.staff-intro a {
    color: var(--primary-color);
    text-decoration: underline;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.staff-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.staff-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.staff-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.staff-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.staff-role {
    color: var(--text-medium);
    font-size: 1rem;
    margin-bottom: 0;
    font-weight: 500;
}

/* ================================
   History Page Styles
   ================================ */

.history-content {
    padding: 3rem 0;
}

.history-section {
    margin-bottom: 4rem;
}

.history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.history-grid-reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.history-text-full {
    max-width: 900px;
    margin: 0 auto;
}

.history-text h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.history-text h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.history-text-full h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.history-image {
    text-align: center;
}

.history-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    margin-bottom: 0.5rem;
}

.image-caption {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.children-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.children-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
}

.children-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1;
}

.history-photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.photo-item {
    text-align: center;
}

.photo-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    margin-bottom: 0.5rem;
}

.highlight-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 3rem 2rem;
    border-radius: 8px;
    margin: 3rem 0;
}

.highlight-section h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 1.5rem;
}

.highlight-section p {
    color: var(--white);
    font-size: 1.1rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.closing-section {
    background-color: var(--bg-light);
    padding: 3rem 2rem;
    border-radius: 8px;
    margin-top: 3rem;
}

/* ================================
   Products Page Styles
   ================================ */

.products-main-section {
    padding: 4rem 0;
}

.product-detail-card {
    margin-bottom: 4rem;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
}

.product-detail-reverse .product-detail-grid {
    direction: rtl;
}

.product-detail-reverse .product-detail-content {
    direction: ltr;
}

.product-detail-reverse .product-detail-image {
    direction: ltr;
}

.product-detail-image {
    height: 100%;
    overflow: hidden;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-detail-content {
    padding: 3rem;
}

.product-detail-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.product-detail-content p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.premium-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: var(--text-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.product-info-box {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.product-info-box h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.product-info-box p {
    margin-bottom: 0;
}

.product-specs {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.product-specs li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
}

.product-specs li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1;
}

.highlight-text {
    background-color: var(--very-light-blue);
    padding: 1.25rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    font-style: italic;
}

.product-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.feature-check {
    color: var(--success-green);
    font-weight: 500;
    font-size: 1rem;
}

.notice-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: var(--very-light-blue);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin: 3rem 0;
}

.notice-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.notice-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.notice-content p {
    margin-bottom: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.season-info-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.season-info-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.season-info-box h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.season-timeline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.season-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    min-width: 150px;
}

.season-item.season-peak {
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white);
    transform: scale(1.1);
}

.season-month {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.season-status {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.season-arrow {
    font-size: 2rem;
    color: var(--white);
}

.season-note {
    color: var(--white);
    font-size: 1.1rem;
    margin-top: 2rem;
}

.why-choose-section {
    padding: 4rem 0;
}

/* ================================
   Galleries Page Styles
   ================================ */

.galleries-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.gallery-category {
    margin-bottom: 4rem;
}

.gallery-category-title {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.gallery-category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-image-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
    background-color: var(--white);
}

.gallery-image-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.gallery-image-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.gallery-image-card:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem 1.5rem 1rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-image-card:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-caption {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    text-align: center;
}

.gallery-info-section {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    margin-top: 3rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-info-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.gallery-info-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

/* ================================
   Contact Page Styles - UPDATED
   ================================ */

.contact-main-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.contact-intro-text {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.contact-intro-text p {
    font-size: 1.2rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Contact Location Cards */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-location-card {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.contact-location-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.location-card-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.location-icon-svg {
    color: var(--white);
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: center;
}

.location-card-header h2 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 0;
}

.location-card-body {
    padding: 2rem;
}

.location-address {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.6;
}

.location-contact-info {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.contact-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.info-label {
    font-weight: 500;
    color: var(--text-medium);
}

.info-value {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
}

.info-value:hover {
    color: var(--secondary-color);
}

.location-map {
    margin: 1.5rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.btn-get-directions {
    display: block;
    text-align: center;
    padding: 0.75rem;
    background-color: var(--very-light-blue);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-get-directions:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Business Information Section */
.contact-info-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.info-box {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.info-box-highlight {
    background: linear-gradient(135deg, var(--very-light-blue) 0%, var(--white) 100%);
    border: 2px solid var(--primary-color);
}

.info-box-icon-svg {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.info-box h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Hours List */
.hours-list {
    text-align: left;
    max-width: 300px;
    margin: 0 auto 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item span:first-child {
    font-weight: 500;
    color: var(--text-dark);
}

.hours-item span:last-child {
    color: var(--text-medium);
}

.hours-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

/* Team List */
.team-list {
    text-align: left;
    max-width: 300px;
    margin: 0 auto 1rem;
}

.team-member {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    margin-bottom: 0.75rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.member-name {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.member-role {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.team-note {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-top: 1rem;
}

/* Season Information */
.season-info {
    margin-bottom: 1rem;
}

.season-dates {
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
}

.season-date-item {
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background-color: var(--white);
    border-radius: 6px;
    border-left: 3px solid var(--accent-color);
}

.season-date-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.25rem;
}

.season-note {
    font-size: 0.95rem;
    color: var(--text-medium);
    font-weight: 500;
    margin-top: 1rem;
}

/* ================================
   404 Error Page Styles
   ================================ */

.error-404-section {
    padding: 6rem 0;
    background-color: var(--white);
    min-height: 60vh;
}

.error-404-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.error-404-icon {
    font-size: 8rem;
    margin-bottom: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.error-404-title {
    font-size: 8rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.error-404-subtitle {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.error-404-text {
    font-size: 1.2rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.error-404-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.error-404-links {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.error-404-links p {
    color: var(--text-medium);
    font-weight: 500;
    margin-bottom: 1rem;
}

.error-404-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.error-404-links ul li a {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.error-404-links ul li a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* ================================
   Footer
   ================================ */

.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-brand {
    font-style: italic;
    font-size: 0.9rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ================================
   Responsive Design
   ================================ */

@media (max-width: 968px) {
    .home-features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-grid,
    .history-grid,
    .history-grid-reverse,
    .product-detail-grid,
    .product-detail-reverse .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .testimonial-featured {
        grid-column: span 1;
    }
    
    .staff-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .history-photos-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-detail-image {
        height: 300px;
    }
    
    .product-features-list {
        grid-template-columns: 1fr;
    }
    
    .season-timeline {
        flex-direction: column;
        gap: 1rem;
    }
    
    .season-arrow {
        transform: rotate(90deg);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-image-card img {
        height: 300px;
    }
    
    .intro-corporate-content h2 {
        font-size: 2rem;
    }
    
    .intro-lead {
        font-size: 1.1rem;
    }
    
    .philosophy-card,
    .philosophy-card-reverse {
        grid-template-columns: 1fr;
    }
    
    .philosophy-card-image {
        min-height: 300px;
    }
    
    .philosophy-card-content {
        padding: 2rem;
    }
    
    .philosophy-card-reverse .philosophy-card-content {
        order: 0;
    }
    
    .philosophy-intro h2 {
        font-size: 2rem;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero {
        height: 400px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content-wrapper h2,
    .content-box h2 {
        font-size: 2rem;
    }
    
    .content-box {
        padding: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .product-detail-content {
        padding: 2rem;
    }
    
    .product-detail-content h2 {
        font-size: 2rem;
    }
    
    .notice-card {
        flex-direction: column;
        text-align: center;
    }
    
    .season-item.season-peak {
        transform: scale(1);
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-image-card img {
        height: 280px;
    }
    
    .gallery-category-title {
        font-size: 1.75rem;
    }
    
    .gallery-info-section {
        padding: 2rem;
    }
    
    .intro-section-corporate,
    .home-features-section,
    .our-story-section {
        padding: 3rem 0;
    }
    
    .home-feature-card {
        padding: 2rem 1.5rem;
    }
    
    .story-content h2 {
        font-size: 2rem;
    }
    
    .partnership-content h2 {
        font-size: 1.75rem;
    }
    
    .philosophy-section {
        padding: 3rem 0;
    }
    
    .philosophy-intro {
        margin-bottom: 3rem;
    }
    
    .philosophy-lead {
        font-size: 1.1rem;
    }
    
    .philosophy-card-content h3 {
        font-size: 1.75rem;
    }
    
    .philosophy-cards-grid {
        gap: 3rem;
    }
    
    .contact-intro-text p {
        font-size: 1.1rem;
    }
    
    .location-card-header h2 {
        font-size: 1.5rem;
    }
    
    .location-card-body {
        padding: 1.5rem;
    }
    
    .error-404-section {
        padding: 4rem 0;
    }
    
    .error-404-icon {
        font-size: 6rem;
    }
    
    .error-404-title {
        font-size: 6rem;
    }
    
    .error-404-subtitle {
        font-size: 2rem;
    }
    
    .error-404-text {
        font-size: 1.1rem;
    }
    
    .error-404-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .error-404-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        height: 350px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .quote-icon {
        font-size: 3rem;
    }
    
    .staff-grid {
        grid-template-columns: 1fr;
    }
    
    .history-photos-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .product-detail-content {
        padding: 1.5rem;
    }
    
    .product-info-box {
        padding: 1rem;
    }
    
    .season-item {
        padding: 1rem 1.5rem;
        min-width: 120px;
    }
    
    .gallery-image-card img {
        height: 250px;
    }
    
    .gallery-overlay {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    }
    
    .galleries-section {
        padding: 3rem 0;
    }
    
    .intro-corporate-content h2 {
        font-size: 1.75rem;
    }
    
    .intro-lead {
        font-size: 1rem;
    }
    
    .home-feature-card h3 {
        font-size: 1.3rem;
    }
    
    .philosophy-card-image {
        min-height: 250px;
    }
    
    .philosophy-card-content {
        padding: 1.5rem;
    }
    
    .contact-main-section,
    .contact-info-section {
        padding: 3rem 0;
    }
    
    .location-card-header {
        padding: 1.5rem;
    }
    
    .error-404-icon {
        font-size: 4rem;
    }
    
    .error-404-title {
        font-size: 4rem;
    }
    
    .error-404-subtitle {
        font-size: 1.75rem;
    }
    
    .error-404-links ul {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ================================
   Animations
   ================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ================================
   Accessibility
   ================================ */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}