/* Color Scheme Options - Choose one:

OPTION 1: Canterbury Heritage (Current)
Primary: #e74c3c (red)
Secondary: #2c3e50 (dark blue)
Accent: #27ae60 (green)

OPTION 2: Medieval Canterbury
Primary: #8b4513 (saddle brown)
Secondary: #2f4f4f (dark slate gray)
Accent: #daa520 (goldenrod)

OPTION 3: Modern Adventure
Primary: #ff6b35 (orange)
Secondary: #004e89 (deep blue)
Accent: #1dd3b0 (turquoise)

OPTION 4: Royal Canterbury
Primary: #6b46c1 (purple)
Secondary: #1f2937 (gray)
Accent: #f59e0b (amber)

OPTION 5: Fresh & Modern
Primary: #10b981 (emerald)
Secondary: #374151 (cool gray)
Accent: #3b82f6 (blue)
*/

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Typography */
h1, h2, h3 {
    margin-bottom: 1rem;
    color: #2f4f4f;
}

h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    color: #555;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin: 0 10px 10px 0;
}

.btn-primary {
    background-color: #8b4513;
    color: white;
}

.btn-primary:hover {
    background-color: #6b3410;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: #8b4513;
    color: white;
}

/* Sticky Booking Button */
.sticky-booking {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.sticky-booking.show {
    opacity: 1;
    transform: translateY(0);
}

.sticky-btn {
    background-color: #8b4513;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.3);
    transition: all 0.3s ease;
    display: block;
    text-align: center;
}

.sticky-btn:hover {
    background-color: #6b3410;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2f4f4f 0%, #1a2e2e 100%);
    color: white;
    padding: 100px 0;
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.hero-content {
    flex: 1;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.hero h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #f8f9fa;
    text-align: left;
}

.hero-tagline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ecf0f1;
}

.hero-buttons {
    margin-top: 2rem;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-img {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin: 0 20px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: white;
}

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

.feature {
    text-align: center;
    padding: 30px 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Inline Booking CTAs */
.inline-booking {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
    border: 2px dashed #daa520;
}

.inline-booking p {
    font-size: 1.1rem;
    font-weight: bold;
    color: #8b4513;
    margin-bottom: 15px;
}

.legacy-booking {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    border: 1px solid #daa520;
}

.legacy-booking p {
    font-size: 1rem;
    font-weight: bold;
    color: #8b4513;
    margin-bottom: 10px;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #ecf0f1;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.about-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-highlights {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-highlights ul {
    list-style: none;
    padding: 0;
}

.about-highlights li {
    padding: 8px 0;
    border-bottom: 1px solid #ecf0f1;
    position: relative;
    padding-left: 25px;
}

.about-highlights li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #daa520;
    font-weight: bold;
}

/* Chaucer Legacy Section */
.chaucer-legacy {
    padding: 80px 0;
    background-color: white;
}

.legacy-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 2rem;
}

.legacy-text h3 {
    color: #8b4513;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legacy-text h3:first-child {
    margin-top: 0;
}

.historical-facts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 30px;
}

.fact {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #daa520;
}

.fact-icon {
    font-size: 1.5rem;
    margin-right: 15px;
}

.legacy-highlights {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.legacy-highlights h3 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.legacy-highlights ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.legacy-highlights li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    padding-left: 25px;
}

.legacy-highlights li:before {
    content: "⚜️";
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

.quote-box {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #8b4513;
    font-style: italic;
}

.quote-box blockquote {
    margin: 0 0 10px 0;
    color: #2f4f4f;
    font-size: 1.1rem;
}

.quote-box cite {
    color: #8b4513;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Local Tourist Section */
.local-tourist {
    padding: 80px 0;
    background-color: #ecf0f1;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

.audience-card {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    border-left: 5px solid #8b4513;
}

.audience-card h3 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.audience-card ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.audience-card li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.audience-card li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #8b4513;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: #2f4f4f;
    color: white;
}

.how-it-works h2 {
    color: white;
}

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

.step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #daa520;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2f4f4f;
}

.step h3 {
    color: white;
    margin-bottom: 1rem;
}

.step p {
    color: #bdc3c7;
}

/* Location Info Section */
.location-info {
    padding: 80px 0;
    background-color: white;
}

.location-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.location-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.location-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.location-card h3 {
    color: #8b4513;
    margin-bottom: 1rem;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.reviews-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 2rem;
}

.tripadvisor-section {
    text-align: center;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tripadvisor-badge {
    margin-bottom: 20px;
}

.tripadvisor-logo {
    width: 120px;
    height: auto;
    margin-bottom: 10px;
}

.tripadvisor-section h3 {
    color: #8b4513;
    margin-bottom: 10px;
}

.review-link {
    margin-top: 20px;
}

.review-highlights {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.booking-options h3 {
    text-align: center;
    color: #8b4513;
    margin-bottom: 20px;
}

.booking-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.booking-method {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    background-color: #f8f9fa;
}

.booking-method h4 {
    color: #8b4513;
    margin-bottom: 10px;
}

.booking-method p {
    margin-bottom: 15px;
    color: #666;
}

.booking-method .btn-primary,
.booking-method .btn-secondary {
    width: 100%;
    margin: 0;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #8b4513 0%, #6b3410 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta p {
    color: #ecf0f1;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    margin-top: 2rem;
}

.cta .btn-primary {
    background-color: white;
    color: #8b4513;
}

.cta .btn-primary:hover {
    background-color: #f8f9fa;
}

.cta .btn-secondary {
    border-color: white;
    color: white;
}

.cta .btn-secondary:hover {
    background-color: white;
    color: #8b4513;
}

/* Footer */
footer {
    background-color: #2f4f4f;
    color: white;
    padding: 40px 0 20px;
}

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

.footer-section h3 {
    color: #daa520;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #bdc3c7;
}

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

.footer-section li {
    padding: 5px 0;
    color: #bdc3c7;
}

.footer-section a {
    color: #daa520;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4a5a5a;
    color: #95a5a6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-images {
        grid-template-columns: 1fr;
    }
    
    .legacy-content {
        grid-template-columns: 1fr;
    }
    
    .location-images {
        grid-template-columns: 1fr;
    }
    
    .reviews-content {
        grid-template-columns: 1fr;
    }
    
    .booking-methods {
        grid-template-columns: 1fr;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .location-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
        margin: 5px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero h2 {
        font-size: 1.3rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .sticky-booking {
        bottom: 10px;
        right: 10px;
    }
    
    .sticky-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}