/* Gothic Theme - Explore London History */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gothic-dark: #1a1a2e;
    --gothic-darker: #0f0f1e;
    --gothic-burgundy: #6b2c3e;
    --gothic-gold: #d4af37;
    --gothic-gold-light: #e8d5a3;
    --gothic-stone: #8b7d6b;
    --gothic-text: #e8e6e3;
    --gothic-text-light: #b8b6b3;
    --gothic-border: #3a3a4e;
    --gothic-accent: #8b4513;
}

body {
    font-family: 'Crimson Text', serif;
    background: linear-gradient(135deg, var(--gothic-darker) 0%, var(--gothic-dark) 100%);
    color: var(--gothic-text);
    line-height: 1.8;
    min-height: 100vh;
}

.site-wrapper {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 320px;
    background: linear-gradient(180deg, var(--gothic-darker) 0%, var(--gothic-dark) 100%);
    border-right: 2px solid var(--gothic-border);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
    z-index: 100;
}

.logo-container {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gothic-border);
}

.site-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gothic-gold);
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.site-tagline {
    font-size: 0.85rem;
    color: var(--gothic-text-light);
    text-align: center;
    font-style: italic;
    letter-spacing: 1px;
}

/* Navigation */
.main-nav {
    flex: 1;
}

.nav-list {
    list-style: none;
}

.nav-link {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--gothic-text-light);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    margin-bottom: 0.5rem;
    position: relative;
}

.nav-link:hover {
    color: var(--gothic-gold);
    border-left-color: var(--gothic-gold);
    background: rgba(212, 175, 55, 0.1);
    padding-left: 2rem;
}

.nav-link.active {
    color: var(--gothic-gold);
    border-left-color: var(--gothic-gold);
    background: rgba(212, 175, 55, 0.15);
    font-weight: 600;
}

/* Sidebar Footer */
.sidebar-footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid var(--gothic-border);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.footer-links a {
    color: var(--gothic-text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gothic-gold);
}

.copyright {
    font-size: 0.75rem;
    color: var(--gothic-stone);
    text-align: center;
}

/* Main Content */
.main-content {
    flex: 1;
    margin-left: 320px;
    padding: 3rem 4rem;
    max-width: calc(100% - 320px);
}

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 1rem;
    padding: 2rem 0;
}

.hero-text {
    padding-right: 2rem;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gothic-gold);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gothic-text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-style: italic;
}

.hero-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--gothic-burgundy) 0%, var(--gothic-accent) 100%);
    color: var(--gothic-gold-light);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid var(--gothic-gold);
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, var(--gothic-accent) 0%, var(--gothic-burgundy) 100%);
}

/* Image Frames */
.image-frame {
    position: relative;
    padding: 15px;
    background: linear-gradient(135deg, var(--gothic-dark) 0%, var(--gothic-darker) 100%);
    border: 3px solid var(--gothic-gold);
    box-shadow: 
        0 0 0 2px var(--gothic-burgundy),
        0 0 0 4px var(--gothic-dark),
        inset 0 0 20px rgba(0, 0, 0, 0.5),
        0 10px 30px rgba(0, 0, 0, 0.6);
    border-radius: 4px;
}

.image-frame.ornate {
    padding: 20px;
    border: 4px solid var(--gothic-gold);
    box-shadow: 
        0 0 0 3px var(--gothic-burgundy),
        0 0 0 6px var(--gothic-dark),
        0 0 0 9px var(--gothic-gold),
        inset 0 0 30px rgba(0, 0, 0, 0.5),
        0 15px 40px rgba(0, 0, 0, 0.7);
    position: relative;
}

.image-frame.ornate::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--gothic-gold), transparent, var(--gothic-gold));
    border-radius: 4px;
    z-index: -1;
    opacity: 0.3;
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
}

.hero-image-wrapper {
    position: relative;
}

/* Features Section */
.features-section {
    margin-top: 2rem;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--gothic-gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.title-ornament {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gothic-gold), transparent);
    margin: 1rem auto;
    position: relative;
}

.title-ornament::before,
.title-ornament::after {
    content: '◆';
    position: absolute;
    top: -8px;
    color: var(--gothic-gold);
    font-size: 1.2rem;
}

.title-ornament::before {
    left: 20px;
}

.title-ornament::after {
    right: 20px;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
    width: 100%;
}

.feature-item {
    width: 100%;
    text-align: left;
    padding: 1.5rem 2rem;
    background: rgba(26, 26, 46, 0.6);
    border: 2px solid var(--gothic-border);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--gothic-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    background: rgba(26, 26, 46, 0.8);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: left;
    display: block;
}

.feature-item h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--gothic-gold);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--gothic-text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--gothic-border);
}

.page-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gothic-gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.page-subtitle {
    color: var(--gothic-text-light);
    font-size: 1.2rem;
    font-style: italic;
    margin-top: 1rem;
}

/* Content Wrapper */
.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-block {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(26, 26, 46, 0.4);
    border-left: 4px solid var(--gothic-gold);
    border-radius: 4px;
}

.content-block h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--gothic-gold);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.content-block h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: var(--gothic-gold-light);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.content-block p {
    color: var(--gothic-text-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.elegant-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.elegant-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--gothic-text-light);
    font-size: 1.05rem;
}

.elegant-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--gothic-gold);
    font-size: 1.2rem;
}

/* Contact Grid */
.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    color: var(--gothic-text-light);
    font-style: italic;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.contact-card {
    padding: 2rem;
    background: rgba(26, 26, 46, 0.6);
    border: 2px solid var(--gothic-border);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--gothic-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-family: 'Cinzel', serif;
    color: var(--gothic-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-card p {
    color: var(--gothic-text-light);
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--gothic-gold-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--gothic-gold);
    text-decoration: underline;
}

.contact-card .hours {
    font-size: 0.9rem;
    color: var(--gothic-stone);
    margin-top: 0.5rem;
}

/* Destinations Grid */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.destination-card {
    background: rgba(26, 26, 46, 0.6);
    border: 2px solid var(--gothic-border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.destination-card:hover {
    border-color: var(--gothic-gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
}

.destination-image-wrapper {
    padding: 1.5rem;
    background: rgba(15, 15, 30, 0.5);
}

.destination-content {
    padding: 2rem;
}

.destination-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--gothic-gold);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.destination-content p {
    color: var(--gothic-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.destination-link {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--gothic-gold);
    text-decoration: none;
    border: 2px solid var(--gothic-gold);
    border-radius: 4px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.destination-link:hover {
    background: var(--gothic-gold);
    color: var(--gothic-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Booking Section */
.booking-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.destinations-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.destination-option {
    padding: 2rem;
    background: rgba(26, 26, 46, 0.6);
    border: 2px solid var(--gothic-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.destination-option:hover {
    border-color: var(--gothic-gold);
    background: rgba(26, 26, 46, 0.8);
    transform: translateX(10px);
}

.destination-option h3 {
    font-family: 'Cinzel', serif;
    color: var(--gothic-gold);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.destination-option p {
    color: var(--gothic-text-light);
    font-size: 1rem;
}

.contact-info-panel {
    padding: 3rem;
    background: rgba(26, 26, 46, 0.8);
    border: 2px solid var(--gothic-gold);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.panel-header {
    text-align: center;
    margin-bottom: 2rem;
}

.panel-header h3 {
    font-family: 'Cinzel', serif;
    color: var(--gothic-gold);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info-panel > p {
    color: var(--gothic-text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    text-align: center;
}

.booking-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.booking-contact-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(15, 15, 30, 0.5);
    border: 1px solid var(--gothic-border);
    border-radius: 6px;
}

.booking-contact-item .contact-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.booking-contact-item h4 {
    font-family: 'Cinzel', serif;
    color: var(--gothic-gold);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.booking-contact-item p {
    color: var(--gothic-text-light);
    font-size: 0.95rem;
}

.booking-contact-item a {
    color: var(--gothic-gold-light);
    text-decoration: none;
}

.booking-contact-item a:hover {
    color: var(--gothic-gold);
    text-decoration: underline;
}

.booking-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
}

.btn-elegant {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--gothic-gold);
    text-decoration: none;
    border: 2px solid var(--gothic-gold);
    border-radius: 4px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 1px;
}

.btn-elegant:hover {
    background: var(--gothic-gold);
    color: var(--gothic-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* FAQ */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(26, 26, 46, 0.6);
    border-left: 4px solid var(--gothic-gold);
    border-radius: 4px;
}

.faq-item h3 {
    font-family: 'Cinzel', serif;
    color: var(--gothic-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.faq-item p {
    color: var(--gothic-text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    background: var(--gothic-dark);
    border: 2px solid var(--gothic-gold);
    padding: 0.8rem;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    border-radius: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gothic-gold);
    display: block;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-content {
        padding: 2rem 3rem;
    }
    
    .hero-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-image-wrapper {
        order: -1;
    }
}

@media (max-width: 968px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
        max-width: 100%;
        padding: 2rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        flex-direction: column;
    }
    
    .feature-item {
        width: 100%;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .main-content {
        padding: 1.5rem;
    }
    
    .booking-actions {
        flex-direction: column;
    }
}

