/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #20497E;
    background: linear-gradient(135deg, #FBFAF9 0%, #f5f7fa 100%);
    min-height: 100vh;
    position: relative;
}

/* Stamped logo background */
body::before {
    content: '';
    position: fixed;
    top: 30px;
    left: 30px;
    width: 350px;
    height: 350px;
    background-image: url('logo.svg');
    background-size: 280px 180px;
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgba(73, 166, 182, 0.08);
    border: 4px solid rgba(73, 166, 182, 0.18);
    border-radius: 50%;
    opacity: 0.25;
    transform: rotate(-15deg);
    z-index: -1;
    pointer-events: none;
    filter: brightness(0) saturate(100%) invert(52%) sepia(35%) saturate(2200%) hue-rotate(154deg) brightness(105%) contrast(95%);
    box-shadow: 0 8px 35px rgba(73, 166, 182, 0.12);
}

/* Navigation */
nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: linear-gradient(135deg, #49A6B6, #64B9C7);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 6px 20px;
    box-shadow: 0 8px 32px rgba(32, 73, 126, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: center;
}

nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
}

nav a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

/* Main content */
main {
    padding-top: 120px;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

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

/* Page headers */
h1 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #20497E, #49A6B6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #20497E;
    margin-bottom: 1.5rem;
}

/* Feature cards section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(251,250,249,0.8));
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(73, 166, 182, 0.12);
    border: 1px solid rgba(100, 185, 199, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(73, 166, 182, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(73, 166, 182, 0.2);
    border-color: rgba(100, 185, 199, 0.4);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #20497E;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #627693;
    line-height: 1.6;
}

/* Blog posts */
.posts {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.post-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(251,250,249,0.8));
    padding: 2rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(73, 166, 182, 0.12);
    border: 1px solid rgba(100, 185, 199, 0.2);
    transition: all 0.3s ease;
    position: relative;
    max-height: 300px;
}

.post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #49A6B6, #64B9C7, #627693);
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(73, 166, 182, 0.18);
}

.post-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #20497E;
    margin-bottom: 0.5rem;
}

.post-card h3 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.post-card h3 a:hover {
    background: linear-gradient(135deg, #49A6B6, #64B9C7);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.post-meta {
    color: #627693;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-excerpt {
    color: #627693;
    line-height: 1.6;
}

.post-preview-image {
    width: 80px;
    height: 80px;
    min-width: 80px;
    max-width: 80px;
    border-radius: 8px;
    object-fit: cover;
    float: left;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.post-preview-image:hover {
    transform: scale(1.05);
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    color: #49A6B6;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(73, 166, 182, 0.3);
}

.read-more:hover {
    background: linear-gradient(135deg, #49A6B6, #64B9C7);
    color: white;
    transform: translateX(4px);
}

/* Gallery Sections */
.flickr-albums, .local-gallery {
    margin: 3rem 0;
}

.flickr-albums h2, .local-gallery h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #20497E;
}

/* Flickr Albums Grid */
.flickr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.flickr-album-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(251,250,249,0.8));
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(73, 166, 182, 0.12);
    border: 1px solid rgba(100, 185, 199, 0.2);
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    color: inherit;
    display: block;
}

.flickr-album-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #49A6B6, #64B9C7, #627693);
    z-index: 1;
}

.flickr-album-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(73, 166, 182, 0.2);
}

.album-cover {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flickr-album-card:hover .album-cover img {
    transform: scale(1.05);
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(32, 73, 126, 0.8), rgba(73, 166, 182, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.flickr-album-card:hover .album-overlay {
    opacity: 1;
}

.view-album-btn {
    background: linear-gradient(135deg, #49A6B6, #64B9C7);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(73, 166, 182, 0.3);
}

.view-album-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(73, 166, 182, 0.4);
    background: linear-gradient(135deg, #64B9C7, #49A6B6);
}

.album-info {
    padding: 1.5rem;
}

.album-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #20497E;
    margin-bottom: 0.5rem;
}

.album-info p {
    color: #627693;
    line-height: 1.6;
}

/* Album Page Styles */
.breadcrumb {
    margin-bottom: 2rem;
}

.back-link {
    color: #49A6B6;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.back-link:hover {
    color: #20497E;
    transform: translateX(-5px);
}

.album-header {
    text-align: center;
    margin-bottom: 3rem;
}

.album-description {
    font-size: 1.2rem;
    color: #627693;
    margin: 1rem 0 2rem;
    line-height: 1.6;
}

.album-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.photo-count {
    background: linear-gradient(135deg, #49A6B6, #64B9C7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Photo Grid */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.photo-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(73, 166, 182, 0.1);
}

.photo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(73, 166, 182, 0.2);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-item:hover img {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(32, 73, 126, 0.8), rgba(73, 166, 182, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-item:hover .photo-overlay {
    opacity: 1;
}

.zoom-icon {
    font-size: 2rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(3px);
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 50%;
    line-height: 1;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 2001;
    pointer-events: none;
}

.nav-btn {
    background: linear-gradient(135deg, rgba(73, 166, 182, 0.8), rgba(100, 185, 199, 0.8));
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: normal;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-btn:hover {
    background: linear-gradient(135deg, #49A6B6, #64B9C7);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.lightbox-image-container {
    max-width: 90%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#lightboxImage {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.image-info {
    text-align: center;
    margin-top: 1.5rem;
    color: white;
}

.image-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

#imageCounter {
    font-size: 1rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .photo-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .lightbox-nav {
        padding: 0 1rem;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 2.5rem;
    }
    
    .album-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}



/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.gallery-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(73, 166, 182, 0.12);
    border: 1px solid rgba(100, 185, 199, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #49A6B6, #64B9C7, #627693);
    z-index: 1;
}

.gallery-item:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 16px 48px rgba(73, 166, 182, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item .caption {
    padding: 1.5rem;
    color: #627693;
    text-align: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(251,250,249,0.8));
}

/* Destinations */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.destination-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(73, 166, 182, 0.12);
    border: 1px solid rgba(100, 185, 199, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.destination-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #49A6B6, #64B9C7, #627693);
    z-index: 1;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(73, 166, 182, 0.2);
}

.destination-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    height: 240px;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.05);
}

.visited-badge,
.wishlist-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: white;
    backdrop-filter: blur(10px);
    z-index: 2;
    /* Ensure badges stay within the destination-image container */
    max-width: calc(100% - 2rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.visited-badge {
    background: linear-gradient(135deg, #49A6B6, #64B9C7);
    box-shadow: 0 4px 16px rgba(73, 166, 182, 0.3);
}

.wishlist-badge {
    background: linear-gradient(135deg, #627693, #49A6B6);
    box-shadow: 0 4px 16px rgba(98, 118, 147, 0.3);
}

.destination-content {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(251,250,249,0.8));
}

.destination-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #20497E;
    margin-bottom: 0.5rem;
}

.destination-country {
    color: #49A6B6;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.destination-description {
    color: #627693;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.destination-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-text {
    color: #627693;
    font-size: 0.9rem;
}

/* Destination links section */
.destination-links {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(100, 185, 199, 0.2);
}

.link-section h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #20497E;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gallery-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.gallery-link {
    text-decoration: none;
    color: #20497E;
    background: rgba(255, 255, 255, 0.6);
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(100, 185, 199, 0.3);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.gallery-link:hover {
    background: rgba(73, 166, 182, 0.1);
    border-color: #49A6B6;
    color: #20497E;
    transform: translateY(-2px);
}

.blog-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.blog-link {
    text-decoration: none;
    color: #20497E;
    background: rgba(255, 255, 255, 0.6);
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(100, 185, 199, 0.3);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-link:hover {
    background: rgba(73, 166, 182, 0.1);
    border-color: #49A6B6;
    color: #20497E;
    transform: translateY(-2px);
}

/* Post content */
.post-content {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(251,250,249,0.9));
    padding: 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(73, 166, 182, 0.12);
    border: 1px solid rgba(100, 185, 199, 0.2);
    position: relative;
}

.post-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #49A6B6, #64B9C7, #627693);
}

.post-content h1 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #20497E, #49A6B6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    text-align: left;
}

.post-content h2 {
    font-size: 1.8rem;
    color: #20497E;
    margin: 2rem 0 1rem 0;
}

.post-content p {
    color: #627693;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.post-content a {
    color: #49A6B6;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.post-content a:hover {
    background: linear-gradient(135deg, #49A6B6, #64B9C7);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom-color: #64B9C7;
}

.post-content code {
    background: linear-gradient(135deg, rgba(100, 185, 199, 0.1), rgba(73, 166, 182, 0.05));
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'SF Mono', Monaco, monospace;
    color: #20497E;
    border: 1px solid rgba(100, 185, 199, 0.2);
}

.post-content pre {
    background: linear-gradient(135deg, rgba(100, 185, 199, 0.1), rgba(73, 166, 182, 0.05));
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
    border: 1px solid rgba(100, 185, 199, 0.2);
}

.post-content blockquote {
    border-left: 4px solid #64B9C7;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #627693;
    background: linear-gradient(135deg, rgba(100, 185, 199, 0.05), rgba(73, 166, 182, 0.02));
    border-radius: 0 8px 8px 0;
    padding: 1rem 1.5rem;
}

.content {
    margin-top: 2rem;
}

/* Flickr embedded images */
.flickr-embed {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(73, 166, 182, 0.15);
    margin: 1.5rem 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(100, 185, 199, 0.2);
    display: block;
}

.flickr-embed:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(73, 166, 182, 0.25);
    border-color: rgba(100, 185, 199, 0.4);
}

/* Center single flickr images */
.post-content p img.flickr-embed:only-child {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(251,250,249,0.8));
    border-top: 1px solid rgba(100, 185, 199, 0.3);
    padding: 3rem 0;
    margin-top: 4rem;
    text-align: center;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #49A6B6, #64B9C7, #627693);
}

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

.footer-quote {
    font-size: 1.2rem;
    font-style: italic;
    background: linear-gradient(135deg, #627693, #49A6B6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.footer-author {
    color: #49A6B6;
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #49A6B6, #64B9C7);
    color: white !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(73, 166, 182, 0.3);
    border-bottom: none !important;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(73, 166, 182, 0.4);
    background: linear-gradient(135deg, #64B9C7, #49A6B6);
    color: white !important;
}

/* Ensure buttons inside post content display correctly */
.post-content .btn {
    color: white !important;
    border-bottom: none !important;
}

.post-content .btn:hover {
    color: white !important;
    background: linear-gradient(135deg, #64B9C7, #49A6B6) !important;
    -webkit-text-fill-color: initial !important;
}

/* Responsive design */
@media (max-width: 768px) {
    nav {
        top: 10px;
        left: 10px;
        right: 10px;
        transform: none;
        padding: 10px 25px;
    }
    
    nav ul {
        gap: 15px;
    }
    
    main {
        padding-top: 100px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .post-content {
        padding: 2rem;
        margin: 0 10px;
    }
    
    .gallery {
        grid-template-columns: 1fr;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-links {
        flex-direction: column;
    }
    
    .flickr-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .flickr-album-card {
        margin: 0 10px;
    }
    

}

@media (max-width: 480px) {
    nav {
        padding: 8px 20px;
    }
    
    nav ul {
        gap: 12px;
    }
    
    nav a {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .post-content {
        padding: 1.5rem;
    }
}



  