/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: white;
    padding: 1rem;
}

nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

nav ul li a:hover {
    text-decoration: underline;
}

footer {
    background-color: #333;
    color: white;
    padding: 1rem;
    text-align: center;
}

/* Hero Section */
#hero {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.carousel {
    display: flex;
    width: 300%; /* Ensure total width is equal to all images combined */
    animation: slide 15s infinite;
    transition: transform 1s ease-in-out; /* Smooth transition for reverse animation */
}

.carousel-image {
    width: 33.3333%; /* Each image takes up 1/3 of the carousel */
    height: 400px;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

/* Featured Highlights */
#highlights {
    padding: 2rem;
    text-align: center;
}

.highlight-links a {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.highlight-links a:hover {
    background-color: #0056b3;
}

/* Seasonal Events */
#seasonal-events {
    background-color: #eeeeee;
    padding: 2rem;
    text-align: center;
}

/* Footer Styles */
.footer-content {
    padding: 1rem;
}

/* Animation for Carousel */
@keyframes slide {
    0% { transform: translateX(0); }
    33% { transform: translateX(-100%); } /* Move the first image out */
    66% { transform: translateX(-200%); } /* Move the second image out */
    100% { transform: translateX(0); } /* Bring the first image back */
}

/* Featured Highlights */
#highlights {
    padding: 2rem;
    text-align: center;
}

.highlight-links a {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.highlight-links a:hover {
    background-color: #0056b3;
}

/* Seasonal Events */
#seasonal-events {
    background-color: #eeeeee;
    padding: 2rem;
    text-align: center;
}

/* Footer Styles */
.footer-content {
    padding: 1rem;
}

/* Animation for Carousel */
@keyframes slide {
    0% { transform: translateX(0); }
    33% { transform: translateX(-100%); } /* Move the first image out */
    66% { transform: translateX(-200%); } /* Move the second image out */
    100% { transform: translateX(0); } /* Bring the first image back */
}

/* Attraction Styles */
main {
    padding: 20px;
}

h1 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
}

.attraction {
    background-color: white;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.attraction h2 {
    font-size: 1.5em;
}

.attraction-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.attraction p {
    font-size: 1em;
    line-height: 1.6;
}

a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

/* Footer Styles for Attractions */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
}

footer a {
    color: #ffffff;
    text-decoration: none;
}

/* Styling the Activity Row to display items side by side */
.activity-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center; /* Centers the items within the row */
    margin-bottom: 40px;
}

/* Activity Box styling */
.activity-box {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 45%; /* Takes up roughly half the space on larger screens */
    max-width: 500px;
    box-sizing: border-box;
    text-align: center;
}

.activity-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.activity-box h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.activity-box p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.activity-box a {
    color: #ff0062;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    background-color: #ff0062;
    color:black;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.activity-box a:hover {
    background-color:  #f4a1c1;
}

/* Responsive Design: Adjust for smaller screens */
@media (max-width: 768px) {
    .activity-box {
        width: 100%; /* Stack activity boxes on smaller screens */
    }
}


/* Area Guide Section */
#area-guide {
    margin-top: 40px;
    padding: 20px;
    background-color: #eeeeee;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.area-guide-item {
    margin-bottom: 20px;
}

.area-guide-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}


/*accomodation*/
#accommodation {
    background-color: #ffffff;
    padding: 50px 20px;
    margin: 30px auto;
    max-width: 1200px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

#accommodation h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#accommodation-overview {
    background-color: #f4f4f4;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

#accommodation-overview h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

#accommodation-overview p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 30px;
    color: #555;
}

#accommodation-overview h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#accommodation-overview ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

#accommodation-overview ul li {
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    width: 250px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

#accommodation-overview ul li:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

#accommodation-overview ul li strong {
    font-size: 1.2rem;
    color: #007BFF;
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

#accommodation-overview ul li span {
    font-size: 1rem;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    #accommodation-overview ul {
        flex-direction: column;
        align-items: center;
    }

    #accommodation-overview ul li {
        width: 80%;
    }
}

/* Hotel Listing Section */
.hotel-listing {
    background-color: rgb(203, 244, 253);
    margin: 20px 0;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hotel-listing:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.hotel-listing h3 {
    font-size: 1.8rem;
    color: #003366;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: capitalize;
}

.hotel-listing p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #555;
}

.hotel-listing p strong {
    color: #2206c2;
    font-weight: 600;
}

/* Price Style */
.hotel-listing .price {
    font-size: 1.4rem;
    color: #e91e63;
    font-weight: bold;
}

/* Links */
.hotel-listing a {
    display: inline-block;
    background-color: #007BFF;
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease;
}

.hotel-listing a:hover {
    background-color: #0056b3;
}

/* Special Features - Extra Luxuries & Nearby Attractions */
.hotel-listing p span {
    font-style: italic;
    color: #888;
}

.hotel-listing .extra-luxuries,
.hotel-listing .nearby-attraction {
    font-size: 1rem;
    color: #333;
}

.hotel-listing .extra-luxuries::before,
.hotel-listing .nearby-attraction::before {
    content: "• ";
    color: #007BFF;
    font-size: 1.5rem;
    padding-right: 5px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hotel-listing {
        padding: 15px;
    }

    .hotel-listing h3 {
        font-size: 1.6rem;
    }

    .hotel-listing p {
        font-size: 1rem;
    }

    .hotel-listing a {
        padding: 10px 15px;
    }
}

/* About London Section */
#about-london {
    padding: 20px;
}

#about-london h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
}

.row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.box {
    background-color: rgb(249, 249, 172);
    padding: 15px;
    width: 32%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.box img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

.box h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.box p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.box a {
    color: rgb(255, 0, 0);
    text-decoration: none;
    font-weight: bold;
}

.box a:hover {
    color:brown;
}

/* Contact Section Styles */
#contact-section {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    text-align: center;
}

#contact-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

#contact-section p {
    font-size: 1.1rem;
    color: #333;
    margin: 10px 0;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

#contact-form label {
    text-align: left;
    font-weight: bold;
    font-size: 1rem;
}

#contact-form input,
#contact-form textarea {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
}

#contact-form button {
    padding: 10px;
    font-size: 1.1rem;
    color: white;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#contact-form button:hover {
    background-color: #0056b3;
}

/* Contact Info and Social Media */
#contact-info {
    margin-top: 30px;
}

#contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

#contact-info ul {
    list-style: none;
    padding: 0;
}

#contact-info ul li {
    display: inline;
    margin: 0 10px;
}

#contact-info ul li a {
    color: #007BFF;
    text-decoration: none;
    font-size: 1.1rem;
}

#contact-info ul li a:hover {
    color: #0056b3;
}
