/* General Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    margin: 0;
    padding: 0;
    background-color: #f5f5f5 !important;
    background: #f5f5f5 !important;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 500px;
    background: url('https://res.cloudinary.com/dkqpb7vwr/image/upload/v1738632605/lowry-bridge_pkf7gq.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 38, 59, 0.75), rgba(199, 160, 8, 0.35));
}

.hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.hero-text p {
    font-size: 1.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Manchester Landmarks Section */
.manchester-landmarks {
    padding: 60px 0;
    background: #f9f9f9;
    text-align: center;
}

.manchester-landmarks h2 {
    font-size: 2.8rem;
    color: #1B263B;
    margin-bottom: 10px;
}

.landmarks-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    font-weight: 300;
}

.landmark-banner {
    position: relative;
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 30px;
    overflow: hidden;
}

.landmark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(27, 38, 59, 0.88), rgba(27, 38, 59, 0.45));
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 60px;
    transition: background 0.3s ease;
}

.landmark-banner:hover .landmark-overlay {
    background: linear-gradient(to right, rgba(199, 160, 8, 0.88), rgba(199, 160, 8, 0.45));
}

.landmark-content {
    max-width: 700px;
    text-align: left;
    color: #fff;
}

.landmark-content h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.landmark-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.landmark-link {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    border: 2px solid #fff;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.landmark-link:hover {
    background: #fff;
    color: #1B263B;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Content Section */
.content {
    padding: 60px 50px;
    max-width: 1400px;
    margin: auto;
    background: #fff;
}

.content h2 {
    font-size: 2.8rem;
    color: #1b263b;
    margin-bottom: 30px;
    margin-top: 40px;
    border-bottom: 3px solid #c7a008;
    display: inline-block;
    padding-bottom: 10px;
}

/* Grid Layout for Attractions, Culinary, Shopping, and Cultural Sections */
.attractions,
.culinary,
.shopping,
.cultural {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.attraction,
.culinary-spot,
.shopping-spot,
.cultural-spot {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.attraction:hover,
.culinary-spot:hover,
.shopping-spot:hover,
.cultural-spot:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.attraction img,
.culinary-spot img,
.shopping-spot img,
.cultural-spot img {
    width: 100%;
    height: 220px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 15px;
}

.attraction h3,
.culinary-spot h3,
.shopping-spot h3,
.cultural-spot h3 {
    font-size: 1.5rem;
    color: #1B263B;
    margin: 15px 0 10px;
    font-weight: 600;
}

.attraction p,
.culinary-spot p,
.shopping-spot p,
.cultural-spot p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-top: 10px;
    margin-bottom: 20px;
}

/* Get Directions Button */
.get-directions-btn {
    background: linear-gradient(135deg, #1B263B 0%, #2d3e5f 100%);
    border: none;
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.get-directions-btn:hover {
    background: linear-gradient(135deg, #C7A008 0%, #d4ac1c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(199, 160, 8, 0.3);
}

/* Google Map Section */
.map {
    text-align: center;
    margin-top: 50px;
}

#map {
    width: 100%;
    max-width: 800px;
    height: 450px;
    border-radius: 10px;
    border: 2px solid #c7a008;
}

/* Custom Modal Styles */
.custom-modal {
    display: none;
    position: fixed;
    top: -15%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.custom-modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #c7a008; /* Gold border to match your design */
    width: 80%;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.custom-modal-header {
    background: linear-gradient(90deg, #002147, #003580, #0056b3); /* Blue gradient to match your design */
    color: white;
    padding: 10px 20px;
    border-bottom: 2px solid #c7a008; /* Gold border */
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-modal-title {
    margin: 0;
    font-size: 1.5rem;
}

.custom-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: white;
    padding: 0 10px;
}

.custom-modal-body {
    padding: 20px;
}

.custom-modal-footer {
    padding: 10px 20px;
    border-top: 2px solid #c7a008; /* Gold border */
    display: flex;
    justify-content: space-between;
}

.custom-btn {
    padding: 8px 15px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.custom-btn-primary {
    background: linear-gradient(90deg, #002147, #003580, #0056b3); /* Blue gradient */
    color: white;
}

.custom-btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.custom-btn-secondary {
    background: #6c757d;
    color: white;
}

.custom-btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

#directionsPanel {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    border: 2px solid #c7a008;
    overflow: auto;
}

/* Responsive Designs */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 3rem;
    }

    .manchester-landmarks h2,
    .content h2 {
        font-size: 2.3rem;
    }

    .landmark-content h3 {
        font-size: 2rem;
    }

    .landmark-overlay {
        padding: 0 40px;
    }

    .attractions,
    .culinary,
    .shopping,
    .cultural {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* Tablets */
@media (max-width: 768px) {
    .hero {
        height: 350px;
        margin-top: -25px;
    }

    .hero-text h1 {
        font-size: 2rem;
        margin: 0 15px;
    }

    .hero-text p {
        font-size: 1.1rem;
        margin: 5px 10px;
    }

    .manchester-landmarks h2,
    .content h2 {
        font-size: 2rem;
    }

    .landmark-banner {
        height: 300px;
    }

    .landmark-overlay {
        padding: 0 30px;
        justify-content: center;
    }

    .landmark-content {
        text-align: center;
    }

    .landmark-content h3 {
        font-size: 1.8rem;
    }

    .landmark-content p {
        font-size: 1rem;
    }

    .content {
        padding: 40px 25px;
    }

    .content h2 {
        text-align: center;
    }

    .attractions,
    .culinary,
    .shopping,
    .cultural {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .get-directions-btn {
        font-size: 0.95rem;
        padding: 10px 20px;
    }

    #map {
        height: 350px;
    }

    .custom-modal {
        position: fixed;
        top: 0;
    }

    .custom-modal-content {
        margin: 10% auto;
        width: 90%;
        max-width: 400px;
    }

    .custom-modal-title {
        font-size: 1.2rem;
    }

    .custom-btn {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .hero {
        height: 280px;
    }

    .hero-text h1 {
        font-size: 1.6rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .manchester-landmarks h2,
    .content h2 {
        font-size: 1.6rem;
    }

    .landmarks-subtitle {
        font-size: 1rem;
    }

    .landmark-banner {
        height: 250px;
    }

    .landmark-overlay {
        padding: 0 20px;
    }

    .landmark-content h3 {
        font-size: 1.4rem;
    }

    .landmark-content p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .landmark-link {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .content {
        padding: 30px 15px;
    }

    .attraction img,
    .culinary-spot img,
    .shopping-spot img,
    .cultural-spot img {
        height: 180px;
    }

    .get-directions-btn {
        font-size: 0.9rem;
        padding: 10px 18px;
    }

    .custom-modal-content {
        margin: 15% auto;
        width: 95%;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .hero-text h1 {
        font-size: 1.4rem;
    }

    .hero-text p {
        font-size: 0.9rem;
    }

    .manchester-landmarks h2,
    .content h2 {
        font-size: 1.4rem;
    }

    .landmark-content h3 {
        font-size: 1.2rem;
    }

    .landmark-content p {
        font-size: 0.85rem;
    }

    .landmark-link {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}
