 {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #f8f9fa;
}

.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.tagline {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.trip-details {
    background: rgba(0,0,0,0.6);
    padding: 1.5rem;
    border-radius: 10px;
    display: inline-block;
}

.trip-details p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

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

section {
    margin: 4rem 0;
}

h2 {
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    text-align: center;
}

.big-text {
    font-size: 1.5rem;
    text-align: center;
    color: #34495e;
    font-style: italic;
    margin: 2rem 0;
}

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

.highlight-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.highlight-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1e3a5f;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 2rem auto;
}

.timeline-item {
    display: flex;
    margin: 2rem 0;
    align-items: flex-start;
}

.day {
    background: #1e3a5f;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    min-width: 100px;
    text-align: center;
    margin-right: 2rem;
}

.content {
    flex: 1;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.content h4 {
    color: #1e3a5f;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.budget {
    background: #e8f4f8;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
}

.budget-range {
    font-size: 2rem;
    color: #1e3a5f;
    margin: 1rem 0;
}

.small {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 1rem;
}

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

.step {
    text-align: center;
}

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

.resource-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.resource-btn {
    background: #1e3a5f;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.resource-btn:hover {
    background: #2c5282;
}

.quote {
    background: #f0f4f8;
    padding: 3rem;
    border-left: 5px solid #1e3a5f;
    margin: 4rem 0;
}

blockquote p {
    font-size: 1.5rem;
    font-style: italic;
    color: #34495e;
    text-align: center;
}

footer {
    background: #1e3a5f;
    color: white;
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
}

footer a {
    color: #87ceeb;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .timeline-item {
        flex-direction: column;
    }

    .day {
        margin-bottom: 1rem;
    }
}
`* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #f8f9fa;
}

.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.tagline {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.trip-details {
    background: rgba(0,0,0,0.6);
    padding: 1.5rem;
    border-radius: 10px;
    display: inline-block;
}

.trip-details p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

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

section {
    margin: 4rem 0;
}

h2 {
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    text-align: center;
}

.big-text {
    font-size: 1.5rem;
    text-align: center;
    color: #34495e;
    font-style: italic;
    margin: 2rem 0;
}

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

.highlight-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.highlight-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1e3a5f;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 2rem auto;
}

.timeline-item {
    display: flex;
    margin: 2rem 0;
    align-items: flex-start;
}

.day {
    background: #1e3a5f;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    min-width: 100px;
    text-align: center;
    margin-right: 2rem;
}

.content {
    flex: 1;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.content h4 {
    color: #1e3a5f;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.budget {
    background: #e8f4f8;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
}

.budget-range {
    font-size: 2rem;
    color: #1e3a5f;
    margin: 1rem 0;
}

.small {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 1rem;
}

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

.step {
    text-align: center;
}

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

.resource-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.resource-btn {
    background: #1e3a5f;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.resource-btn:hover {
    background: #2c5282;
}

.quote {
    background: #f0f4f8;
    padding: 3rem;
    border-left: 5px solid #1e3a5f;
    margin: 4rem 0;
}

blockquote p {
    font-size: 1.5rem;
    font-style: italic;
    color: #34495e;
    text-align: center;
}

footer {
    background: #1e3a5f;
    color: white;
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
}

footer a {
    color: #87ceeb;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .timeline-item {
        flex-direction: column;
    }

    .day {
        margin-bottom: 1rem;
    }
}
```
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #f8f9fa;
}

.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.tagline {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.trip-details {
    background: rgba(0,0,0,0.6);
    padding: 1.5rem;
    border-radius: 10px;
    display: inline-block;
}

.trip-details p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

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

section {
    margin: 4rem 0;
}

h2 {
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    text-align: center;
}

.big-text {
    font-size: 1.5rem;
    text-align: center;
    color: #34495e;
    font-style: italic;
    margin: 2rem 0;
}

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

.highlight-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.highlight-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1e3a5f;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 2rem auto;
}

.timeline-item {
    display: flex;
    margin: 2rem 0;
    align-items: flex-start;
}

.day {
    background: #1e3a5f;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    min-width: 100px;
    text-align: center;
    margin-right: 2rem;
}

.content {
    flex: 1;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.content h4 {
    color: #1e3a5f;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.budget {
    background: #e8f4f8;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
}

.budget-range {
    font-size: 2rem;
    color: #1e3a5f;
    margin: 1rem 0;
}

.small {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 1rem;
}

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

.step {
    text-align: center;
}

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

.resource-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.resource-btn {
    background: #1e3a5f;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.resource-btn:hover {
    background: #2c5282;
}

.quote {
    background: #f0f4f8;
    padding: 3rem;
    border-left: 5px solid #1e3a5f;
    margin: 4rem 0;
}

blockquote p {
    font-size: 1.5rem;
    font-style: italic;
    color: #34495e;
    text-align: center;
}

footer {
    background: #1e3a5f;
    color: white;
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
}

footer a {
    color: #87ceeb;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .timeline-item {
        flex-direction: column;
    }

    .day {
        margin-bottom: 1rem;
    }
}
/* Map Section */
.map-section {
    background: white;
    padding: 3rem 0;
    margin: 4rem 0;
}

.intro-text {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

#map {
    height: 600px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.map-legend {
    max-width: 600px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #1e3a5f;
}

.map-legend h3 {
    color: #1e3a5f;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.legend-item {
    display: flex;
    align-items: center;
    margin: 0.75rem 0;
    font-size: 1.1rem;
}

.marker {
    font-size: 1.5rem;
    margin-right: 1rem;
    min-width: 40px;
    text-align: center;
}

.line.route {
    color: #1e3a5f;
    font-weight: bold;
    margin-right: 1rem;
}

/* Custom map markers */
.custom-marker {
    font-size: 24px;
    text-align: center;
    line-height: 30px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    border: 2px solid #1e3a5f;
}

.custom-marker.golf {
    background: #90EE90;
}

.custom-marker.whisky {
    background: #FFD700;
}

.custom-marker.castle {
    background: #DDA0DD;
}

.custom-marker.hotel {
    background: #87CEEB;
}

/* Popup styling */
.leaflet-popup-content-wrapper {
    border-radius: 8px;
}

.leaflet-popup-content {
    margin: 1rem;
    font-family: 'Georgia', serif;
}

.leaflet-popup-content b {
    color: #1e3a5f;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    #map {
        height: 400px;
        border-radius: 10px;
    }

    .map-legend {
        padding: 1rem;
    }

    .legend-item {
        font-size: 0.95rem;
    }
}
