@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Crimson+Pro:wght@400;700&family=Cinzel:wght@400;700&display=swap');

:root {
    --primary-color: #2F1810; /* Dark brown */
    --accent-color: #8B4513; /* Saddle brown */
    --text-color: #463E3F; /* Dark gray-brown */
    --light-color: #DEB887; /* Burlywood */
    --white: #FFF8DC; /* Cornsilk white */
    --border-color: #8B4513; /* Saddle brown */
}

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

body {
    font-family: 'Crimson Pro', serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.828-1.415 1.415L51.8 0h2.827zM5.373 0l-.83.828L5.96 2.243 8.2 0H5.374zM48.97 0l3.657 3.657-1.414 1.414L46.143 0h2.828zM11.03 0L7.372 3.657 8.787 5.07 13.857 0H11.03zm32.284 0L49.8 6.485 48.384 7.9l-7.9-7.9h2.83zM16.686 0L10.2 6.485 11.616 7.9l7.9-7.9h-2.83zM22.343 0L13.857 8.485 15.272 9.9l7.9-7.9h-.83zm5.657 0L19.514 8.485 20.93 9.9l8.485-8.485h-.485zM32.686 0L26.2 6.485 27.616 7.9l7.9-7.9h-2.83zm-14.019 0L7.372 11.293l1.415 1.415L20.272 1.222 18.667 0h.001zm23.019 0L56.1 14.899l-1.415 1.415L43.9 5.617 45.304 4.2 44.076 2.974l-1.415 1.415-1.414-1.415h-.001zM0 0l.828.828-1.415 1.415L0 2.243V0zm54.627 0L58.315 3.657 56.9 5.07 53.243 1.414 54.627 0zm-7.071 0L52.9 6.485 51.485 7.9l-7.9-7.9h2.829zm21.527 6.283L65.9 3.098l-1.415 1.415-2.12 2.122L65.9 10.17l-1.415 1.415L59.9 6.998l-1.415-1.415 1.414-1.414 1.414-1.414L59.9 1.34 61.314 0l-1.415 1.415-1.414 1.414-1.415-1.415L54.627 0l2.829 2.828-1.415 1.415-2.12 2.12L56.9 9.314l-1.414 1.415L50.9 6.143l-1.415-1.415 1.415-1.414L51.8 0h2.827L50.9 3.657l1.415 1.414 2.12 2.121 2.121-2.12 1.415-1.415L56.9 2.243 58.315.828 56.9 2.243l-1.415 1.415 1.415 1.414zm-7.07 0L61.314 0l2.829 2.828-1.415 1.415-2.12 2.12L63.9 9.314l-1.415 1.415-7.071-7.07 1.415-1.415 2.12-2.12 2.121 2.12 1.415 1.415-1.414 1.414L59.9 6.998l-1.415-1.415 1.415-1.414 1.414-1.414-1.414-1.415L61.314 0l-1.415 1.415-1.414 1.414-1.415-1.415z' fill='%238b4513' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E");
}

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

/* Header & Navigation */
.main-header {
    background-color: var(--primary-color);
    color: var(--white);
    border-bottom: 3px solid var(--border-color);
    position: relative;
}

.main-header::before,
.main-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    width: 100%;
    height: 10px;
    background: repeating-linear-gradient(
        -45deg,
        var(--accent-color),
        var(--accent-color) 10px,
        var(--primary-color) 10px,
        var(--primary-color) 20px
    );
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cinzel Decorative', cursive;
    color: var(--light-color);
    text-decoration: none;
    font-size: 2.5rem;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
    position: relative;
    letter-spacing: 0.05em;
    font-weight: 900;
}

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

.nav-links a {
    color: var(--light-color);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 10px;
    letter-spacing: 0.03em;
    font-weight: 700;
}

.nav-links a::before {
    content: '★';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-links a:hover::before {
    opacity: 1;
    left: -20px;
}

.nav-links a:hover {
    color: var(--white);
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    padding: 8rem 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    border-bottom: 3px solid var(--border-color);
    position: relative;
}

.hero h2 {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 4rem;
    margin-bottom: 2rem;
    color: var(--white);
    text-shadow: 
        2px 2px 0 var(--primary-color),
        -2px -2px 0 var(--primary-color),
        2px -2px 0 var(--primary-color),
        -2px 2px 0 var(--primary-color),
        0 2px 0 var(--primary-color),
        2px 0 0 var(--primary-color),
        0 -2px 0 var(--primary-color),
        -2px 0 0 var(--primary-color);
    position: relative;
    display: inline-block;
    letter-spacing: 0.05em;
    font-weight: 900;
}

.hero .lead {
    color: var(--white);
    font-size: 1.6rem;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 
        1px 1px 0 var(--primary-color),
        -1px -1px 0 var(--primary-color),
        1px -1px 0 var(--primary-color),
        -1px 1px 0 var(--primary-color);
    line-height: 1.8;
    font-weight: 500;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: repeating-linear-gradient(
        -45deg,
        var(--accent-color),
        var(--accent-color) 10px,
        var(--primary-color) 10px,
        var(--primary-color) 20px
    );
}

/* Section Styling */
.section {
    padding: 4rem 0;
    position: relative;
}

.section h2 {
    font-family: 'Cinzel Decorative', cursive;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
    padding: 0 2rem;
    font-size: 2.5rem;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.section h2::before,
.section h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.section h2::before {
    left: -60px;
}

.section h2::after {
    right: -60px;
}

/* Grid Layouts */
.types-grid,
.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.type-card,
.knowledge-card {
    background: var(--white);
    padding: 2rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.type-card::before,
.knowledge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--accent-color);
}

.type-card:hover,
.knowledge-card:hover {
    transform: translateY(-5px) rotate(1deg);
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.3);
}

.type-card h3,
.knowledge-card h3 {
    font-family: 'Cinzel', serif;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    font-size: 1.4rem;
    letter-spacing: 0.03em;
    font-weight: 700;
}

/* Shop Grid */
.shops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.shop-card {
    background: var(--white);
    padding: 2rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

.shop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--accent-color);
}

.shop-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    height: 2px;
    background: repeating-linear-gradient(
        -45deg,
        var(--accent-color),
        var(--accent-color) 5px,
        transparent 5px,
        transparent 10px
    );
}

.shop-card:hover {
    transform: translateY(-5px) rotate(1deg);
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.3);
}

.shop-card h3 {
    font-family: 'Cinzel Decorative', cursive;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-bottom: 0.5rem;
}

.shop-card h3::after {
    content: '★';
    position: absolute;
    right: 0;
    top: 0;
    color: var(--accent-color);
    opacity: 0.3;
    font-size: 2rem;
    font-weight: 700;
}

.shop-card .location {
    font-style: italic;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.shop-card .description {
    margin-bottom: 1rem;
    line-height: 1.4;
}

.shop-card .features {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.shop-card .shop-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.shop-card .shop-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.shop-card .shop-link:hover::before {
    left: 100%;
}

.shop-card .shop-link:hover {
    background: var(--primary-color);
    transform: scale(1.05);
}

.shop-features {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.shop-features li {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.shop-features li:last-child {
    margin-bottom: 1rem;
}

/* Shop List Grid */
.shop-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.shop-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.shop-card:hover {
    transform: translateY(-5px);
}

.shop-card h3 {
    font-family: 'Cinzel', serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.shop-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.shop-card .btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-family: 'Cinzel', serif;
    font-weight: 700;
}

.shop-card .btn:hover {
    background-color: var(--primary-color);
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .shop-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .shop-list {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.faq-card {
    background: var(--white);
    padding: 2rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--accent-color);
}

.faq-card::after {
    content: '?';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: 'Cinzel Decorative', cursive;
    color: var(--accent-color);
    opacity: 0.2;
    font-size: 2rem;
    font-weight: 700;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.3);
}

.faq-card h3 {
    font-family: 'Cinzel Decorative', cursive;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    padding-right: 2rem;
    line-height: 1.4;
}

.faq-content {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-content p {
    margin-bottom: 1rem;
}

.faq-content ul {
    list-style: none;
    padding-left: 1.2rem;
}

.faq-content ul li {
    position: relative;
    margin-bottom: 0.5rem;
}

.faq-content ul li::before {
    content: '★';
    position: absolute;
    left: -1.2rem;
    color: var(--accent-color);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-card {
        padding: 1.5rem;
    }
}

/* Footer */
.main-footer {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 2rem 0;
    text-align: center;
    border-top: 3px solid var(--border-color);
    font-family: 'Crimson Pro', serif;
    position: relative;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .section {
        padding: 2rem 0;
    }
}
