/* Color Scheme: Ocean Teal + Deep Navy (Brighton Seaside)
 *
 * Primary:        #0891b2 (ocean teal)     — Buttons, CTAs, card borders
 * Primary hover:  #0e7490              — Hover states
 * Secondary:      #0f172a (deep navy)   — Footer, How It Works, hero overlay, headings
 * Accent:         #f59e0b (amber gold)  — Eyebrow text, step numbers, ratings, footer headings
 * Background:     #f8f9fa / #ecf0f1    — Alternating sections
 */

/* 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: #0f172a;
}

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: #0891b2;
    color: white;
    border: 2px solid #0891b2;
}

.btn-primary:hover {
    background-color: #0e7490;
    border-color: #0e7490;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: #0891b2;
    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;
    pointer-events: none;
}

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

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

.sticky-btn:hover {
    background-color: #0e7490;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(8, 145, 178, 0.4);
}

/* Hero Section */
.hero {
    position: relative;
    background: url('images/brighton-header.png') center center / cover no-repeat;
    color: white;
    padding: 80px 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.9) 0%,
        rgba(15, 23, 42, 0.7) 50%,
        rgba(15, 23, 42, 0.95) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: 0 20px;
}

.hero-eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #f59e0b;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.3rem;
    color: white;
    line-height: 1.1;
}

.hero h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #f59e0b;
    text-align: center;
    font-style: italic;
    letter-spacing: 1px;
}

.hero-tagline {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #dce1e3;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    margin-top: 1.5rem;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero .btn-primary {
    background-color: #0891b2;
    color: white;
    border: 2px solid #0891b2;
}

.hero .btn-primary:hover {
    background-color: #0e7490;
    border-color: #0e7490;
}

.hero .btn-secondary {
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
}

.hero .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: white;
    color: white;
}

/* 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;
    border-bottom: 3px solid transparent;
}

.feature:hover {
    transform: translateY(-5px);
    border-bottom-color: #0891b2;
}

.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 #f59e0b;
}

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

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

.discovery-booking p {
    font-size: 1rem;
    font-weight: bold;
    color: #0f172a;
    margin-bottom: 10px;
}

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

.about h2 {
    text-align: left;
}

.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);
    border-top: 4px solid #0891b2;
}

.about-highlights h3 {
    color: #0891b2;
}

.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: "\2713";
    position: absolute;
    left: 0;
    color: #0891b2;
    font-weight: bold;
}

/* Brighton Discovery Section */
.brighton-discovery {
    padding: 80px 0;
    background-color: white;
}

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

.discovery-text h3 {
    color: #0891b2;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.discovery-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 #f59e0b;
}

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

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

.discovery-highlights h3 {
    color: #0891b2;
    margin-bottom: 1rem;
}

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

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

.discovery-highlights li:before {
    content: "\1F50D";
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

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

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

.quote-box cite {
    color: #0891b2;
    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 #0891b2;
}

.audience-card h3 {
    color: #0f172a;
    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: "\2192";
    position: absolute;
    left: 0;
    color: #0891b2;
}

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

.pricing-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #777;
    margin-top: -1rem;
    margin-bottom: 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 960px;
    margin: 0 auto;
}

.pricing-card {
    background-color: #f8f9fa;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

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

.pricing-card.featured {
    border-color: #0891b2;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(8, 145, 178, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0891b2;
    color: white;
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    white-space: nowrap;
}

.pricing-card h3 {
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: #0891b2;
    margin-bottom: 0.25rem;
}

.price-detail {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-card li {
    padding: 8px 0;
    border-bottom: 1px solid #ecf0f1;
    position: relative;
    padding-left: 25px;
    color: #555;
}

.pricing-card li:before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #0891b2;
    font-weight: bold;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: #0f172a;
    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: #f59e0b;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #0f172a;
}

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

.step p {
    color: #bdc3c7;
}

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

.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: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.location-card h3 {
    color: #0891b2;
    margin-bottom: 1rem;
}

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

.reviews-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.review-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.review-card.featured {
    grid-column: 1 / -1;
    border-left: 5px solid #f59e0b;
    background-color: #fffdf5;
}

.review-stars {
    color: #f59e0b;
    font-size: 1.2rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.review-card h3 {
    color: #0f172a;
    margin-bottom: 10px;
}

.review-card p {
    font-style: italic;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.review-source {
    font-size: 0.85rem;
    color: #0891b2;
    font-weight: bold;
}

.reviews-footer {
    text-align: center;
    margin-top: 40px;
}

.reviews-footer p {
    font-size: 1.1rem;
    color: #0f172a;
    margin-bottom: 15px;
}

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

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #ecf0f1;
    margin-bottom: 0;
}

.faq-item summary {
    padding: 20px 0;
    font-size: 1.1rem;
    font-weight: bold;
    color: #0f172a;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 1.5rem;
    color: #0891b2;
    font-weight: bold;
    flex-shrink: 0;
    margin-left: 20px;
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    content: "\2212";
}

.faq-item p {
    padding: 0 0 20px 0;
    color: #555;
    line-height: 1.7;
}

.faq-item summary:hover {
    color: #0891b2;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 50%, #0f172a 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: #0891b2;
    border-color: white;
}

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

.cta .btn-secondary {
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
}

.cta .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: white;
    color: white;
}

/* Footer */
footer {
    background-color: #0f172a;
    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: #f59e0b;
    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: #f59e0b;
    text-decoration: none;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #1e293b;
}

.footer-bottom p {
    color: #95a5a6;
}

.footer-bottom a {
    color: #f59e0b;
    text-decoration: none;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0 50px;
        min-height: 40vh;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

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

    .about h2 {
        text-align: center;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-images {
        grid-template-columns: 1fr;
    }

    .discovery-content {
        grid-template-columns: 1fr;
    }

    .location-images {
        grid-template-columns: 1fr;
    }

    .reviews-content {
        grid-template-columns: 1fr;
    }

    .review-card.featured {
        grid-column: 1;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .location-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .hero-buttons {
        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 {
        padding: 50px 0 40px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

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

    .hero-tagline {
        font-size: 0.95rem;
    }

    .hero-eyebrow {
        font-size: 0.75rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        max-width: 100%;
    }

    .sticky-booking {
        bottom: 10px;
        right: 10px;
    }

    .sticky-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .faq-item summary {
        font-size: 1rem;
    }
}