/* Vacacian Travel Blog - Custom Styles */

/* Color Variables */
:root {
    --white: #ffffff;
    --black: #1a1a1a;
    --accent-red: #e74c3c;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --border-light: #e9ecef;
    --shadow-light: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --overlay-dark: rgba(26, 26, 26, 0.7);
    --overlay-gradient: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(26, 26, 26, 0.4) 100%);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--black);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--medium-gray);
}

a {
    color: var(--black);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-red);
}

/* Utility Classes */
.min-vh-75 {
    min-height: 75vh;
}

.text-accent {
    color: var(--accent-red) !important;
}
   /* Reset and Base Styles */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #ffffff;
}

html {
    scroll-padding-top: 80px; /* Adjust this value to match your header height */
    scroll-behavior: smooth;
}

/* Hero Section - New Design */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 500px;
}

/* Hero Text Content */
.hero-text {
    z-index: 2;
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: #e63946;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-family: 'Arial', sans-serif;
}

.hero-title {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-family: 'Georgia', serif;
    letter-spacing: -1px;
}

.hero-title .accent {
    color: #e63946;
    font-style: italic;
    font-weight: 400;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 35px;
    font-weight: 300;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    background: #e63946;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-cta:hover {
    background: #d62839;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.3);
}

.hero-cta i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}




.hero-cta:hover i {
    transform: translateX(5px);
}



/* Hero Visual Section */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main Featured Image - Rounded Crop Style */
.hero-main-image {
    position: relative;
    width: 350px;
    height: 450px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(-2deg);
    transition: all 0.4s ease;
    z-index: 3;
}

.hero-main-image:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

.hero-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hero-main-image:hover img {
    transform: scale(1.05);
}

/* Secondary Images */
.hero-secondary-image {
    position: absolute;
    width: 180px;
    height: 240px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 2;
}

.hero-secondary-image.top-right {
    top: 20px;
    right: -20px;
    transform: rotate(8deg);
}

.hero-secondary-image.bottom-left {
    bottom: 30px;
    left: -30px;
    transform: rotate(-5deg);
}

.hero-secondary-image:hover {
    transform: rotate(0deg) scale(1.05);
    z-index: 4;
}

.hero-secondary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    z-index: 1;
    opacity: 0.1;
    pointer-events: none;
}

.floating-element.plane {
    top: 10%;
    right: 10%;
    font-size: 24px;
    color: #e63946;
    animation: float 6s ease-in-out infinite;
}

.floating-element.map {
    bottom: 20%;
    left: 5%;
    font-size: 32px;
    color: #e63946;
    animation: float 8s ease-in-out infinite reverse;
}

.floating-element.camera {
    top: 60%;
    right: 5%;
    font-size: 20px;
    color: #e63946;
    animation: float 7s ease-in-out infinite;
}


        /* Animation Classes */
        .fade-in-up {
            animation: fadeInUp 1s ease forwards;
        }

        .fade-in-up-delay {
            animation: fadeInUp 1s ease 0.2s forwards;
            opacity: 0;
        }

        .fade-in-up-delay-2 {
            animation: fadeInUp 1s ease 0.4s forwards;
            opacity: 0;
        }

        .fade-in-right {
            animation: fadeInRight 1s ease 0.6s forwards;
            opacity: 0;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Stats Section */
.hero-stats {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: white;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 5;
    min-width: 200px;
}

.hero-stats h4 {
    font-size: 24px;
    font-weight: 600;
    color: #e63946;
    margin-bottom: 5px;
}

.hero-stats p {
    font-size: 13px;
    color: #7a7a7a;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-visual {
        height: 400px;
    }

    .hero-main-image {
        width: 300px;
        height: 380px;
    }

    .hero-secondary-image {
        width: 150px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .social-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .logo-text {
        font-size: 24px;
    }

    .hero-section {
        padding: 100px 0 40px;
        min-height: 80vh;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-visual {
        height: 350px;
    }

    .hero-main-image {
        width: 250px;
        height: 320px;
    }

    .hero-secondary-image {
        width: 120px;
        height: 160px;
    }

    .hero-secondary-image.top-right {
        right: -10px;
    }

    .hero-secondary-image.bottom-left {
        left: -20px;
    }

    .hero-stats {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 12px 0;
    }

    .logo-image {
        width: 25px;
        height: 25px;
    }

    .hero-title {
        padding-top: 40%;
        text-align: left;
        font-size: 25px;
    }

    .hero-description {
        max-width: 30vh;
        font-size: 15px;
        text-align: left;
    }
    .hero-cta{
        margin-left: -40%;
    }
    .hero-main-image {
        width: 220px;
        height: 280px;
    }

    .hero-secondary-image {
        display: none;
    }
}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

.fade-in-up-delay {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.fade-in-up-delay-2 {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.fade-in-right {
    animation: fadeInRight 1s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Buttons */
.btn {
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 30px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent-red);
    border-color: var(--accent-red);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #c0392b;
    border-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.btn-outline-primary {
    border-color: var(--accent-red);
    color: var(--accent-red);
}

.btn-outline-primary:hover {
    background-color: var(--accent-red);
    border-color: var(--accent-red);
    color: var(--white);
}

.btn-outline-dark {
    border-color: var(--white);
    color: var(--white);
}

.btn-outline-dark:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--black);
}

.btn-white {
    background-color: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn-white:hover {
    background-color: var(--light-gray);
    transform: translateY(-2px);
    color: red;
}

.btn-accent {
    background-color: var(--accent-red);
    border-color: var(--accent-red);
    color: var(--white);
}

.btn-accent:hover {
    background-color: #c0392b;
    border-color: #c0392b;
    transform: translateY(-2px);
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--black);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

/* AdSense Placeholders */
.adsense-placeholder {
    background-color: var(--light-gray);
    border: 2px dashed var(--border-light);
    border-radius: 8px;
    margin: 2rem 0;
}

.ad-banner {
    height: 90px;
    background-color: var(--light-gray);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ad-sidebar {
    height: 250px;
    background-color: var(--light-gray);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ad-content {
    color: var(--medium-gray);
    font-weight: 500;
    margin-top: 0.5rem;
}



/* Destination Cards */
.destination-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
    height: 300px;
}

.destination-card.large-card {
    height: 500px;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.card-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destination-card:hover .card-image img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-gradient);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    color: var(--white);
}

.card-content h3,
.card-content h4,
.card-content h5 {
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

/* Enhanced description text with proper truncation */
.card-content p,
.destination-description,
.destination-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 2.8em; /* Approximately 2 lines */
    font-size: 0.95rem;
}

/* Large card description - allow slightly more text */
.large-card .destination-description {
    -webkit-line-clamp: 2;
    max-height: 2.8em;
    font-size: 1rem;
}

/* Small cards - more restrictive */
.rotating-card .destination-subtitle {
    -webkit-line-clamp: 1;
    max-height: 1.4em;
    font-size: 0.85rem;
}

.destination-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--accent-red);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

/* Rotating cards with smooth 1-second transitions */
.rotating-card {
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.rotating-card:hover {
    transform: translateY(-5px) scale(1.02);
}

/* Smooth text transitions with 1-second timing */
.destination-name,
.destination-subtitle {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced image loading with smooth fade */
.destination-img {
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Loading state animation */
.destination-img[src=""] {
    opacity: 0;
}

/* Enhanced hover effects for rotating cards */
.rotating-card:hover .card-overlay {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(218, 165, 32, 0.3) 100%
    );
}

.rotating-card:hover .destination-name {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

/* Smooth destination change animation keyframes */
@keyframes smoothDestinationChange {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0;
        transform: scale(0.98);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.rotating-card.changing {
    animation: smoothDestinationChange 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Additional smooth effects for content changes */
.card-content * {
    transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Staggered animation effect for multiple cards */
.rotating-card:nth-child(1) {
    transition-delay: 0s;
}

.rotating-card:nth-child(2) {
    transition-delay: 0.1s;
}

.rotating-card:nth-child(3) {
    transition-delay: 0.2s;
}

/* Smooth scale animation on destination change */
.destination-card.animating {
    animation: smoothScale 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes smoothScale {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    25% {
        transform: scale(0.98);
        opacity: 0.8;
    }
    75% {
        transform: scale(0.98);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .destination-card {
        height: 250px;
        transition: all 0.4s ease;
    }
    
    .destination-card.large-card {
        height: 350px; /* Reduced height for mobile */
    }
    
    .card-overlay {
        padding: 1.5rem;
    }
    
    .rotating-card {
        transition: opacity 0.4s ease, transform 0.4s ease;
    }
    
    /* Mobile text adjustments */
    .card-content h3 {
        font-size: 1.4rem;
        margin-bottom: 0.3rem;
    }
    
    .card-content h4 {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }
    
    .card-content h5 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }
    
    /* More restrictive text on mobile */
    .destination-description {
        -webkit-line-clamp: 2;
        max-height: 2.4em;
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .destination-subtitle {
        -webkit-line-clamp: 1;
        max-height: 1.3em;
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
    
    /* Hide subtitle on very small cards on mobile */
    .mobile-hide {
        display: none;
    }
}

@media (max-width: 480px) {
    .destination-card {
        height: 220px;
    }
    
    .destination-card.large-card {
        height: 320px;
    }
    
    .card-overlay {
        padding: 1.2rem;
    }
    
    /* Even more restrictive on very small screens */
    .destination-description {
        -webkit-line-clamp: 1;
        max-height: 1.3em;
        font-size: 0.85rem;
    }
    
    .card-content h3 {
        font-size: 1.3rem;
    }
    
    .card-content h4,
    .card-content h5 {
        font-size: 1.1rem;
    }
}

/* Fallback for browsers that don't support -webkit-line-clamp */
@supports not (-webkit-line-clamp: 2) {
    .destination-description,
    .destination-subtitle {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
/* Travel Planneer */

.travel-planner-cta {
    background: var(--black);
    color: var(--white);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.travel-planner-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.planner-content {
    position: relative;
    z-index: 2;
}

.planner-icon-large {
    font-size: 3rem;
    background: var(--accent-red);
    color: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.planner-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 15px 30px;
    background: var(--white);
    color: var(--black);
    text-decoration: none;
    border: 2px solid var(--white);
    border-radius: 0;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.planner-btn:hover {
    background: var(--accent-red);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow-medium);
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.8rem;
    background: rgba(255,255,255,0.1);
    border-radius: 0;
    border: 1px solid rgba(255,255,255,0.2);
}

.feature-icon {
    font-size: 1.2rem;
    color: var(--accent-red);
}



/* Blog Cards */
.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    height: 100%; /* Allow cards to fill available height */
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-medium);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--accent-red);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--black);
    line-height: 1.4;
    flex-shrink: 0;
}

.blog-content h3 a {
    color: var(--black);
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: var(--accent-red);
}

.blog-excerpt {
    color: var(--medium-gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1; /* Take remaining space */
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-top: auto; /* Push meta to bottom */
    flex-shrink: 0; 
}

.blog-date,
.blog-read-time {
    display: flex;
    align-items: center;
}

.blog-date i,
.blog-read-time i {
    margin-right: 0.25rem;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px var(--shadow-light);
}

.sidebar-widget h4 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    color: var(--black);
}

/* Product List */
.product-list {
    space-y: 1.5rem;
}

.product-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}

.product-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.product-image {
    width: 130px;
    height: 160px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 1rem;
}

.product-info h5 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.product-price {
    color: var(--accent-red);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Newsletter Form */
.newsletter-form {
    margin-top: 1rem;
}

.newsletter-form .form-control {
    border-radius: 25px;
    border: 2px solid var(--border-light);
    padding: 0.75rem 1.25rem;
    transition: border-color 0.3s ease;
}

.newsletter-form .form-control:focus {
    border-color: var(--accent-red);
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
}

/* Popular Posts */
.popular-post {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}

.popular-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.popular-post-image {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 1rem;
}

.popular-post-content h6 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.popular-post-content h6 a {
    color: var(--black);
    transition: color 0.3s ease;
}

.popular-post-content h6 a:hover {
    color: var(--accent-red);
}

/* Category Cards */
.category-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-medium);
}

.category-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--accent-red);
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    background-color: var(--accent-red);
    color: var(--white);
}

.category-card h4 {
    margin-bottom: 1rem;
    color: var(--black);
}

.category-card p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

.category-link {
    color: var(--accent-red);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.category-link:hover {
    color: var(--black);
}

.category-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.category-card:hover .category-link i {
    transform: translateX(5px);
}

/* About Section */
.about-stats {
    margin: 2rem 0;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--medium-gray);
    font-weight: 500;
}

.social-follow {
    margin-top: 2rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--light-gray);
    color: var(--black);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: var(--accent-red);
    color: var(--white);
    transform: translateY(-2px);
}

.social-btn i {
    margin-right: 0.5rem;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px var(--shadow-medium);
}

/* Footer */
.footer {
    background-color: var(--dark-gray) !important;
    color: var(--white);
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

.footer h5,
.footer h6 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color:  rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent-red);
    transform: translateY(-2px);
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .destination-card.large-card {
        height: 300px;
    }
    
    .hero-section {
        height: 60vh;
    }
    
    .sidebar {
        position: static;
        margin-top: 3rem;
    }
    
    .hero-buttons {
        text-align: center;
    }
    
    .hero-buttons .btn {
        display: block;
        margin: 0.5rem auto;
        max-width: 200px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .card-overlay {
        padding: 1rem;
    }
    
    .blog-content {
        padding: 1rem;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
    
    .category-card {
        padding: 1.5rem;
    }
}

/* Loading Animation */
.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy.loaded {
    opacity: 1;
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Print Styles */
@media print {
    .navbar,
    .hero-section,
    .footer,
    .adsense-placeholder,
    .sidebar {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: black;
    }
    
    .blog-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Focus Styles for Accessibility */
.btn:focus,
.form-control:focus {
    outline: 2px solid var(--accent-red);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --shadow-light: rgba(0, 0, 0, 0.3);
        --shadow-medium: rgba(0, 0, 0, 0.5);
        --border-light: #999;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    /* Uncomment to enable dark mode support
    :root {
        --white: #1a1a1a;
        --black: #ffffff;
        --light-gray: #2d2d2d;
        --border-light: #404040;
    }
    */
}

