/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    color: #4F46E5;
}

h2 {
    font-size: 2rem;
    color: #333;
}

h3 {
    font-size: 1.5rem;
    color: #4F46E5;
}

h4 {
    font-size: 1.2rem;
    color: #DC2626;
}

p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Header */
.header {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(220, 38, 38, 0.05) 100%);
    border-bottom: 1px solid rgba(79, 70, 229, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 48px;
    height: 48px;
}

.brand-name {
    font-size: 1.75rem;
    font-weight: 600;
    color: #4F46E5;
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="washi" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(79,70,229,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23washi)"/></svg>');
    opacity: 0.3;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    text-align: left;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Image Styles */
.category-image,
.product-image,
.trails-img,
.education-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.product-image {
    height: 180px;
}

.trails-img,
.education-img {
    height: 250px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
/* Buttons */
.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #4F46E5;
    color: white;
}

.btn-primary:hover {
    background: #3730A3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #4F46E5;
    border: 2px solid #4F46E5;
}

.btn-secondary:hover {
    background: #4F46E5;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

/* Image Placeholders */
.image-placeholder {
    background: linear-gradient(135deg, #E5E7EB 0%, #D1D5DB 100%);
    border: 2px dashed #9CA3AF;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    color: #6B7280;
    font-style: italic;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Sections */
section {
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 4rem 0;
    background: white;
    text-align: center;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-item {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(220, 38, 38, 0.05) 100%);
    transition: transform 0.3s ease;
}

.about-item:hover {
    transform: translateY(-5px);
}

.about-item .icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
}

/* Encyclopedia Section */
.encyclopedia {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(220, 38, 38, 0.05) 100%);
    text-align: center;
}

.encyclopedia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.encyclopedia-category {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.encyclopedia-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.encyclopedia-category h3 {
    padding: 1.5rem;
    margin-bottom: 0;
    text-align: center;
}

.encyclopedia-category p {
    padding: 0 1.5rem 1.5rem;
    text-align: center;
}

/* AR Trails Section */
.ar-trails {
    padding: 4rem 0;
    background: white;
    text-align: center;
}

.trails-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.trails-text ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.trails-text li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.trails-text li::before {
    content: '⛩️';
    position: absolute;
    left: 0;
}

/* Audio Section */
.audio-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(79, 70, 229, 0.05) 100%);
    text-align: center;
}

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

.audio-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.audio-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Products Section */
.products {
    padding: 4rem 0;
    background: white;
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-item {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(220, 38, 38, 0.05) 100%);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #DC2626;
    margin: 1rem 0;
}

/* Education Section */
.education {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(220, 38, 38, 0.05) 100%);
    text-align: center;
}

.education-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.education-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #DC2626;
    text-align: left;
}

.feature h4 {
    margin-bottom: 0.5rem;
}

/* Partnerships Section */
.partnerships {
    padding: 4rem 0;
    background: white;
    text-align: center;
}

.partnerships-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.partnership-type {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(79, 70, 229, 0.05) 100%);
}

.partnership-type .icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
}

/* Contacts Section */
.contacts {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(220, 38, 38, 0.05) 100%);
}

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

.contact-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-item .icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
}

.contact-item p {
    color: #666;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: #1F2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1;
    min-width: 300px;
}

.footer-brand p {
    color: #D1D5DB;
    margin-top: 1rem;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    flex: 2;
    min-width: 400px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #4F46E5;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #9CA3AF;
    margin: 0;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1F2937;
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.cookie-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content {
    flex: 1;
    min-width: 300px;
}

.cookie-content p {
    margin: 0;
    line-height: 1.5;
}

.cookie-content a {
    color: #4F46E5;
    text-decoration: none;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.cookie-btn.accept {
    background: #4F46E5;
    color: white;
}

.cookie-btn.accept:hover {
    background: #3730A3;
}

.cookie-btn.reject {
    background: #DC2626;
    color: white;
}

.cookie-btn.reject:hover {
    background: #B91C1C;
}

.cookie-btn.customize {
    background: transparent;
    color: #D1D5DB;
    border: 1px solid #D1D5DB;
}

.cookie-btn.customize:hover {
    background: #374151;
}

.cookie-btn.secondary {
    background: #6B7280;
    color: white;
}

.cookie-btn.secondary:hover {
    background: #4B5563;
}

/* Cookie Customization Panel */
.cookie-customization {
    background: #374151;
    border-top: 1px solid #4B5563;
    padding: 2rem 0;
}

.cookie-customization h3 {
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
}

.cookie-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cookie-category {
    background: #4B5563;
    padding: 1.5rem;
    border-radius: 8px;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.category-header h4 {
    color: white;
    margin: 0;
    font-size: 1rem;
}

.required-badge {
    background: #DC2626;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.cookie-category p {
    color: #D1D5DB;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.cookie-category input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #4F46E5;
}

.customization-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content,
    .trails-content,
    .education-content,
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .about-grid,
    .encyclopedia-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .footer-content,
    .footer-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-brand,
    .footer-nav {
        min-width: auto;
        text-align: center;
    }
    
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content {
        min-width: auto;
    }
    
    .cookie-categories {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 0;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .section-header,
    .about,
    .encyclopedia,
    .ar-trails,
    .audio-section,
    .products,
    .education,
    .partnerships,
    .contacts {
        padding: 2rem 0;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 200px;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 100px;
    }
    
    .customization-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .customization-buttons .cookie-btn {
        width: 200px;
    }
}