/* Reset en basis styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.main-header {
    background: linear-gradient(135deg, #2c5530 0%, #3d7c47 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-logo {
    flex-shrink: 0;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.8rem;
}

.logo-image {
    height: 50px;
    width: 50px;
    margin-right: 15px;
}

.logo-icon {
    margin-right: 15px;
    font-size: 2.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #a8d5ba;
}

/* CTA Blog Button Styling */
.cta-item {
    margin-left: 1rem;
}

.cta-item .cta-link {
    background: rgba(168, 213, 186, 0.2);
    color: #a8d5ba !important;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(168, 213, 186, 0.3);
    white-space: nowrap;
}

.cta-item .cta-link:hover {
    background: #a8d5ba;
    color: #2c5530 !important;
    border-color: #a8d5ba;
    transform: translateY(-1px);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white !important;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    min-width: 200px;
    padding: 1rem 0;
    z-index: 1001;
    list-style: none !important;
    border: none !important;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.dropdown-menu a {
    display: block !important;
    padding: 0.5rem 1rem !important;
    color: #2c3e50 !important;
    text-decoration: none;
    transition: background 0.3s ease;
    white-space: nowrap;
    background: transparent !important;
}

.dropdown-menu a:hover {
    background: #f8f9fa !important;
    color: #2c5530 !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
    margin-left: auto;
    flex-shrink: 0;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    position: relative;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.hero:hover .hero-background img {
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(44, 85, 48, 0.8) 0%, 
        rgba(85, 139, 95, 0.6) 50%,
        rgba(44, 85, 48, 0.7) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: white;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #e8f5e8;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 1.2rem;
    color: #f0f8f0;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    text-shadow: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
}

/* Categories Section */
.categories {
    padding: 5rem 0;
    background: white;
}

.categories h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: #a8d5ba;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-card h3 {
    margin-bottom: 1rem;
}

.category-card h3 a {
    color: #2c5530;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
}

.category-card h3 a:hover {
    color: #4caf50;
}

.category-card p {
    color: #666;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e9 100%);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
}

.feature h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.main-footer {
    background: #2c5530;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #a8d5ba;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #a8d5ba;
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    margin-right: 1rem;
    font-size: 1.5rem;
    text-decoration: none;
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.newsletter-form button {
    background: #4caf50;
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #45a049;
}

.newsletter-message {
    margin-top: 10px;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.newsletter-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.newsletter-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.footer-bottom {
    border-top: 1px solid #3d7c47;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

.affiliate-notice {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
        gap: 1rem;
    }
    
    .nav-logo a {
        font-size: 1.4rem;
    }
    
    .logo-image {
        height: 40px;
        width: 40px;
        margin-right: 12px;
    }
    
    .logo-icon {
        margin-right: 12px;
        font-size: 2rem;
    }
    
    .nav-menu {
        position: fixed;
        left: 0;
        top: -100%;
        flex-direction: column;
        background-color: rgba(44, 85, 48, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        height: auto;
        max-height: 85vh;
        text-align: center;
        transition: top 0.3s ease;
        box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        padding: 0.5rem 0;
        z-index: 1000;
        overflow-y: auto;
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
    }

    .nav-menu.active {
        top: 70px;
    }

    .nav-item {
        margin: 0.1rem 0;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
        display: block;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background-color: rgba(255,255,255,0.1);
        transform: translateX(5px);
    }

    /* Mobile CTA Button */
    .cta-item {
        margin: 0.5rem 0;
        padding: 0 1rem;
    }
    
    .cta-item .cta-link {
        background: rgba(168, 213, 186, 0.2);
        color: #a8d5ba !important;
        border: 1px solid rgba(168, 213, 186, 0.3);
        border-radius: 20px;
        font-weight: 600;
        border-bottom: 1px solid rgba(168, 213, 186, 0.3) !important;
        margin: 0;
        padding: 0.7rem 1.5rem;
    }

    .cta-item .cta-link:hover {
        background: #a8d5ba;
        color: #2c5530 !important;
        border-color: #a8d5ba;
        transform: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        background: rgba(0,0,0,0.2);
        box-shadow: none;
        margin-top: 0;
        max-height: 200px;
        overflow: visible;
        transition: all 0.3s ease;
        border-radius: 8px;
        margin: 0.2rem 0.5rem;
        display: block; /* Always show in mobile */
    }

    .dropdown.active .dropdown-menu {
        max-height: 200px;
    }

    .dropdown-menu li {
        margin: 0;
    }

    .dropdown-menu a {
        padding: 0.4rem 1.5rem;
        font-size: 0.85rem;
        color: #e0e0e0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        transition: all 0.3s ease;
    }

    .dropdown-menu a:hover {
        color: #ffffff;
        background-color: rgba(255,255,255,0.1);
        transform: translateX(5px);
    }

    .nav-toggle {
        display: flex;
    }

    /* Add overlay effect when menu is open */
    body.menu-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.2);
        z-index: 999;
        pointer-events: none;
    }

    .hero {
        height: 60vh;
        min-height: 400px;
        margin-top: 70px;
    }

    .page-hero {
        height: 280px;
        margin-top: 70px;
    }

    .page-hero .hero-content h1,
    .page-hero .container h1 {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }

    .page-hero .hero-subtitle,
    .page-hero .container p {
        font-size: 1.1rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
    }

    .page-hero .hero-content,
    .page-hero .container {
        padding: 0 15px;
        max-width: 90%;
    }

    .page-hero .breadcrumb {
        font-size: 0.8rem;
        margin-top: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Hero */
.page-hero {
    position: relative;
    height: 350px;
    overflow: hidden;
    margin-top: 70px; /* Space for fixed header */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Support both .hero-background and .hero-banner structures */
.page-hero .hero-background,
.page-hero .hero-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-hero .hero-background img,
.page-hero .hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.page-hero:hover .hero-background img,
.page-hero:hover .hero-banner img {
    transform: scale(1.02);
}

.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(44, 85, 48, 0.85) 0%, 
        rgba(85, 139, 95, 0.7) 50%,
        rgba(44, 85, 48, 0.8) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.page-hero .hero-content,
.page-hero .container {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 0.8s ease-out;
}

.page-hero .hero-content h1,
.page-hero .container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.page-hero .hero-subtitle,
.page-hero .container p {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 1rem;
    color: #e8f5e8;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    font-weight: 500;
    line-height: 1.4;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero .breadcrumb {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1.5rem;
    color: #e8f5e8;
}

.page-hero .breadcrumb a {
    color: #e8f5e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-hero .breadcrumb a:hover {
    color: white;
    text-decoration: underline;
}

.page-hero .breadcrumb span {
    color: #a8d5ba;
    font-weight: 500;
}

/* Animation for hero content */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content Layout */
.content-section {
    padding: 4rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.main-content {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.tip-article {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #eee;
}

.tip-article:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.tip-article h2 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.tip-article h3 {
    color: #558b5f;
    margin: 2rem 0 1rem;
    font-size: 1.3rem;
}

.tip-list {
    list-style: none;
    padding-left: 0;
}

.tip-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.tip-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

/* Affiliate Boxes */
.affiliate-box {
    background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e9 100%);
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid #4caf50;
}

.affiliate-box h4 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.product-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.product-card h5 {
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.affiliate-link, .deal-link {
    display: inline-block;
    background: #4caf50;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.affiliate-link:hover, .deal-link:hover {
    background: #45a049;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.widget {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.widget h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.popular-tips {
    list-style: none;
}

.popular-tips li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.popular-tips li:last-child {
    border-bottom: none;
}

.popular-tips a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.popular-tips a:hover {
    color: #4caf50;
}

.affiliate-widget {
    background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e9 100%);
}

.deal-card {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
}

.deal-card:last-child {
    margin-bottom: 0;
}

.deal-card h4 {
    color: #2c5530;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.deal-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-overlay h1 {
        font-size: 2rem;
    }
    
    .hero-overlay p {
        font-size: 1rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Destinations Styling */
.destinations-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.destination-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.destination-image {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    position: relative;
}

.image-placeholder {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    padding: 1rem;
}

.destination-content {
    padding: 1.5rem;
}

.destination-content h2 {
    color: #2c5530;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    line-height: 1.3;
}

.destination-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.destination-highlights,
.camping-options,
.season-tips,
.local-tips,
.practical-info {
    margin-bottom: 1.25rem;
}

.destination-highlights h3,
.camping-options h3,
.season-tips h3,
.local-tips h3,
.practical-info h3 {
    color: #558b5f;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.destination-highlights ul,
.local-tips ul {
    list-style: none;
    padding-left: 0;
}

.destination-highlights li,
.local-tips li {
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.destination-highlights li:before,
.local-tips li:before {
    content: "📍";
    position: absolute;
    left: 0;
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.option {
    background: #f8f9fa;
    padding: 0.75rem;
    border-radius: 6px;
    border-left: 3px solid #4caf50;
    font-size: 0.9rem;
}

.season-tips p,
.practical-info p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Planning Section */
.planning-section {
    background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e9 100%);
    padding: 4rem 0;
    margin-top: 4rem;
    border-radius: 20px;
}

.planning-section h2 {
    text-align: center;
    color: #2c5530;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.planning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.planning-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.planning-card h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.planning-card ul {
    list-style: none;
    padding-left: 0;
}

.planning-card li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid #eee;
}

.planning-card li:last-child {
    border-bottom: none;
}

.planning-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

@media (max-width: 768px) {
    .destination-card {
        display: flex;
        flex-direction: column;
    }
    
    .destination-image {
        min-height: 150px;
    }
    
    .destination-content {
        padding: 1rem;
    }
    
    .destination-content h2 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .destination-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .option-grid {
        grid-template-columns: 1fr;
    }
    
    .planning-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .destination-card {
        display: flex;
        flex-direction: column;
    }
    
    .destination-content {
        padding: 0.75rem;
    }
    
    .destination-content h2 {
        font-size: 1.1rem;
    }
    
    .destination-description {
        font-size: 0.85rem;
    }
}

/* Product Showcase */
.featured-products {
    margin-bottom: 4rem;
}

.featured-products h2 {
    color: #2c5530;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.product-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-card-large {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
}

.product-image {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    position: relative;
}

.product-image .image-placeholder {
    color: white;
    font-size: 4rem;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ff6b35;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-badge.eco {
    background: #4caf50;
}

.product-details {
    padding: 2rem;
}

.product-details h3 {
    color: #2c5530;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.rating {
    margin-bottom: 1rem;
    color: #ffc107;
}

.product-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-specs {
    margin-bottom: 1.5rem;
}

.spec {
    margin-bottom: 0.5rem;
    color: #2c5530;
}

.price-section {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5530;
}

.old-price {
    text-decoration: line-through;
    color: #999;
}

.discount {
    background: #ff6b35;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
}

.shipping {
    color: #4caf50;
    font-weight: 600;
    font-size: 0.9rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.affiliate-btn {
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.affiliate-btn.primary {
    background: #4caf50;
    color: white;
}

.affiliate-btn.primary:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.affiliate-btn.secondary {
    background: transparent;
    color: #4caf50;
    border: 2px solid #4caf50;
}

.affiliate-btn.secondary:hover {
    background: #4caf50;
    color: white;
}

/* Gear Categories */
.gear-categories {
    margin-top: 4rem;
}

.gear-category {
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.gear-category h2 {
    color: #2c5530;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.category-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product-card h4 {
    color: #2c5530;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.product-card .rating {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.product-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.product-price .price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c5530;
}

.badge {
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge.budget {
    background: #e3f2fd;
    color: #1976d2;
}

.badge.premium {
    background: #fce4ec;
    color: #c2185b;
}

.badge.value {
    background: #e8f5e9;
    color: #388e3c;
}

.badge.essential {
    background: #fff3e0;
    color: #f57c00;
}

/* Buying Guide */
.buying-guide {
    background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e9 100%);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 4rem;
}

.buying-guide h2 {
    color: #2c5530;
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
}

.guide-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.guide-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.guide-section h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.guide-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.budget-tip {
    background: #e8f5e9;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #4caf50;
    color: #2c5530;
    font-weight: 600;
}

@media (max-width: 768px) {
    .destination-card {
        grid-template-columns: 1fr;
    }
    
    .destination-image {
        min-height: 200px;
    }
    
    .option-grid {
        grid-template-columns: 1fr;
    }
    
    .planning-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card-large {
        grid-template-columns: 1fr;
    }
    
    .category-products {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .affiliate-btn {
        text-align: center;
    }
}

/* Photography Page Styling */
.photo-types {
    margin-bottom: 4rem;
}

.photo-types h2 {
    color: #2c5530;
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.type-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.type-card:hover {
    transform: translateY(-5px);
}

.type-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.type-card h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.type-card > p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.type-tips h4 {
    color: #558b5f;
    margin-bottom: 1rem;
    text-align: left;
}

.type-tips ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.type-tips li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.type-tips li:before {
    content: "📸";
    position: absolute;
    left: 0;
}

/* Photo Gear Styling */
.photo-gear {
    margin: 4rem 0;
    background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e9 100%);
    padding: 3rem;
    border-radius: 20px;
}

.photo-gear h2 {
    color: #2c5530;
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
}

.gear-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.gear-section h3 {
    color: #2c5530;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
}

.gear-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gear-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.item-info h4 {
    color: #2c5530;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.item-info p {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.item-specs {
    font-size: 0.9rem;
    color: #558b5f;
    font-weight: 600;
}

.item-price {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.item-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5530;
}

.buy-btn {
    background: #4caf50;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.buy-btn:hover {
    background: #45a049;
    transform: translateY(-2px);
}

/* Techniques Styling */
.techniques {
    margin: 4rem 0;
}

.techniques h2 {
    color: #2c5530;
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
}

.techniques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.technique-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.technique-card h3 {
    color: #2c5530;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.technique-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rule, .setting, .timing {
    border-left: 4px solid #4caf50;
    padding-left: 1rem;
}

.rule h4, .setting h4, .timing h4 {
    color: #558b5f;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.rule p, .setting p, .timing p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Location Tips */
.location-tips {
    margin: 4rem 0;
    background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e9 100%);
    padding: 3rem;
    border-radius: 20px;
}

.location-tips h2 {
    color: #2c5530;
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.location-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.location-card h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.location-highlights p {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.location-highlights strong {
    color: #2c5530;
}

.photo-ops {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    background: #e8f5e9;
    color: #2c5530;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Post Processing */
.post-processing {
    margin: 4rem 0;
}

.post-processing h2 {
    color: #2c5530;
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
}

.processing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.software-section h3,
.editing-tips h3 {
    color: #2c5530;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.software-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.software-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.software-card h4 {
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.software-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.software-price {
    font-weight: 600;
    color: #4caf50;
    margin-bottom: 1rem;
}

.software-link {
    color: #4caf50;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.software-link:hover {
    color: #45a049;
}

.tips-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tip-item {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 4px solid #4caf50;
}

.tip-item h4 {
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.tip-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .destination-card {
        grid-template-columns: 1fr;
    }
    
    .destination-image {
        min-height: 200px;
    }
    
    .option-grid {
        grid-template-columns: 1fr;
    }
    
    .planning-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card-large {
        grid-template-columns: 1fr;
    }
    
    .category-products {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .affiliate-btn {
        text-align: center;
    }
    
    .types-grid {
        grid-template-columns: 1fr;
    }
    
    .techniques-grid {
        grid-template-columns: 1fr;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .processing-content {
        grid-template-columns: 1fr;
    }
    
    .gear-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .item-price {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .category-card {
        padding: 1.5rem;
    }
    
    .main-content {
        padding: 1.5rem;
    }
    
    .widget {
        padding: 1.5rem;
    }
    
    .destination-content {
        padding: 1.5rem;
    }
    
    .planning-card {
        padding: 1.5rem;
    }
    
    .product-details {
        padding: 1.5rem;
    }
    
    .gear-category {
        padding: 1.5rem;
    }
    
    .guide-section {
        padding: 1.5rem;
    }
    
    .buying-guide {
        padding: 2rem;
    }
    
    .type-card {
        padding: 1.5rem;
    }
    
    .technique-card {
        padding: 1.5rem;
    }
    
    .location-card {
        padding: 1.5rem;
    }
    
    .software-card {
        padding: 1rem;
    }
    
    .tip-item {
        padding: 1rem;
    }
    
    .photo-gear {
        padding: 2rem;
    }
    
    .location-tips {
        padding: 2rem;
    }
}

/* Tip Pages Specific Styling */
.breadcrumb {
    margin-bottom: 2rem;
    color: #666;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #4caf50;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.alert-box {
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid;
}

.alert-box.info {
    background: #e3f2fd;
    border-color: #2196f3;
    color: #1565c0;
}

.alert-box.warning {
    background: #fff3e0;
    border-color: #ff9800;
    color: #ef6c00;
}

.alert-box.danger {
    background: #ffebee;
    border-color: #f44336;
    color: #c62828;
}

.expert-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.tip-box {
    background: #e8f5e9;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #4caf50;
}

.tip-box h4 {
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.tip-box p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.warning-box {
    background: #fff3e0;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ff9800;
    margin: 2rem 0;
}

.warning-box h4 {
    color: #ef6c00;
    margin-bottom: 1rem;
}

.warning-box ul {
    margin: 0;
    color: #666;
}

.conclusion-box {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem 0;
    border: 2px solid #4caf50;
}

.conclusion-box h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.conclusion-box p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Dog Camping Specific Styles */
.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.destination-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #4a7c59;
}

.destination-card h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.camping-recommendations {
    margin: 2rem 0;
}

.camping-item {
    background: #f8f9fa;
    padding: 2rem;
    margin: 1.5rem 0;
    border-radius: 12px;
    border-left: 4px solid #4a7c59;
}

.camping-item h3 {
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.rating {
    color: #ff6b35;
    font-weight: bold;
    margin-bottom: 1rem;
}

.bnb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.bnb-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.bnb-item h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.rule-section {
    margin: 3rem 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 2rem;
}

.rule-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 1rem 0;
}

.checklist-column h4 {
    color: #4a7c59;
    margin-bottom: 1rem;
}

.emergency-info {
    background: #fff3cd;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
    margin: 1rem 0;
}

.emergency-info h4 {
    color: #856404;
    margin-bottom: 1rem;
}

.quick-checklist {
    background: #e8f5e8;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.quick-checklist h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.quick-checklist ul {
    list-style: none;
    padding: 0;
}

.quick-checklist li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(76, 124, 89, 0.2);
}

/* Mobile Responsiveness for Tip Pages */
@media (max-width: 768px) {
    .expert-tips {
        grid-template-columns: 1fr;
    }
    
    .destination-grid,
    .bnb-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .rule-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .checklist-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .camping-item,
    .bnb-item {
        padding: 1.5rem;
    }
    
    .tip-box, .warning-box, .alert-box, .conclusion-box {
        margin: 1rem 0;
        padding: 1rem;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .page-hero {
        height: 250px;
    }

    .page-hero .hero-content h1,
    .page-hero .container h1 {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }

    .page-hero .hero-subtitle,
    .page-hero .container p {
        font-size: 1rem;
        line-height: 1.3;
    }

    .page-hero .hero-content,
    .page-hero .container {
        padding: 0 10px;
        max-width: 95%;
    }

    .page-hero .breadcrumb {
        font-size: 0.75rem;
        margin-top: 0.8rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}
