/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 0;
    margin: 0;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    padding: 2rem 0;
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 5px solid #FF9800;
}

header h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

header p {
    font-size: 1.1rem;
    opacity: 0.95;
    font-style: italic;
}

/* Main Content Styles */
.blog-content {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.intro {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #444;
    font-weight: 500;
}

h2 {
    color: #4CAF50;
    margin: 1.8rem 0 1rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.5rem;
}

h3 {
    color: #388E3C;
    margin: 1.2rem 0 0.6rem;
}

h4 {
    color: #4CAF50;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

.highlight {
    background-color: #E8F5E9;
    border-left: 4px solid #4CAF50;
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.flight-info {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 1px solid #e9ecef;
}

.flight-info h3 {
    color: #4CAF50;
    margin-bottom: 1rem;
}

.flight-info ul {
    list-style-type: none;
    padding-left: 0;
}

.flight-info li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eaeaea;
    position: relative;
    padding-left: 1.5rem;
}

.flight-info li:before {
    content: "🛫";
    position: absolute;
    left: 0;
}

.flight-info li:last-child {
    border-bottom: none;
}

.tip-box {
    background-color: #FFF8E1;
    border: 1px solid #FFD54F;
    border-radius: 8px;
    padding: 1.2rem;
    margin: 1.5rem 0;
}

.weather-tip {
    background-color: #E3F2FD;
    border: 1px solid #90CAF9;
    border-radius: 8px;
    padding: 1.2rem;
    margin: 1.5rem 0;
}

.tip-box h3, .weather-tip h3 {
    color: #FF9800;
    margin-bottom: 0.5rem;
}

.weather-tip h3 {
    color: #1976D2;
}

.beach-guide {
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    color: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.beach-guide h3 {
    color: white;
    text-align: center;
    margin-bottom: 1rem;
}

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

.beach-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
}

.beach-item h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.packing-tips {
    background: linear-gradient(135deg, #2196F3 0%, #21CBF3 100%);
    color: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.packing-tips h3 {
    color: white;
    text-align: center;
    margin-bottom: 1rem;
}

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

.packing-category {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
}

.packing-category h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.cta-section {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button {
    display: inline-block;
    background-color: #FF9800;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: #F57C00;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.cta-note {
    margin-top: 1rem;
    font-style: italic;
    opacity: 0.9;
}

.blog-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-list {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-list li {
    margin-bottom: 0.5rem;
}

.keyword-link {
    color: #4CAF50;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 1px dotted #4CAF50;
}

.keyword-link:hover {
    color: #388E3C;
    border-bottom: 1px solid #388E3C;
}

.sign-off {
    font-style: italic;
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eaeaea;
}

.reading-time {
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.last-updated {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #666;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Beach Quote */
.beach-quote {
    font-style: italic;
    text-align: center;
    padding: 1rem;
    margin: 1rem 0;
    background: #F5F5F5;
    border-radius: 8px;
    border-left: 4px solid #4CAF50;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.8rem;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .cta-section {
        padding: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .beach-grid, .packing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .beach-grid, .packing-grid {
        grid-template-columns: 1fr;
    }
    
    header h1 {
        font-size: 1.6rem;
    }
    
    header p {
        font-size: 1rem;
    }
}