/* Feed Your Passport - Main CSS Styles */
/* Created: May 26, 2025 */
/* Last Updated: May 26, 2025 */

/* ===== GENERAL STYLES ===== */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Nunito', sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Main body background */
body {
    background: linear-gradient(135deg, #bebebe 0%, #bdbdbd 100%);
}

/* ===== BACKGROUND VIDEO ===== */
.background-video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: -2;
    background-color: #000;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
    backdrop-filter: blur(2px);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}

/* ===== HEADER ===== */
.pinterest-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    z-index: 1000;
    background: transparent;
    border: none;
    box-shadow: none;
}

.header-logo {
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
    border: none;
    outline: none;
    box-shadow: none;
}

.mobile-logo {
    display: none;
}

.desktop-logo {
    display: block;
}

.header-logo:hover {
    transform: scale(1.05);
}

.pinterest-header a {
    border: none;
    outline: none;
    box-shadow: none;
    text-decoration: none;
}

.header-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.login-button, .signup-button, .guides-button {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    text-decoration: none;
    border-radius: 24px;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 12px 24px;
    font-size: 16px;
}

.login-button {
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.login-button:hover {
    background-color: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 140, 0, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.guides-button {
    background-color: rgba(139, 195, 74, 0.8); /* Secondary Green with opacity */
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(139, 195, 74, 0.3);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.guides-button:hover {
    background-color: rgba(139, 195, 74, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(139, 195, 74, 0.4);
}

.signup-button {
    background: linear-gradient(135deg, #ff8c00 0%, #ff6600 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(255, 120, 0, 0.3);
}

.signup-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 120, 0, 0.4);
}

/* ===== HERO SECTION ===== */
.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 100vh;
    width: 100%;
    margin: 0;
    max-width: none;
    box-sizing: border-box;
    padding: 0;
}

.hero-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    padding: 80px 5%;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.hero-left-content {
    flex: 1;
    text-align: left;
    padding-right: 5%;
    max-width: 600px;
}

.hero-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 60px;
    color: white;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 24px;
    color: white;
    margin-bottom: 40px;
    line-height: 1.5;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-features {
    margin: 30px 0;
}

.feature-item {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    color: white;
    line-height: 1.5;
    margin-bottom: 12px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 12px;
    padding: 12px 18px;
    border-left: 3px solid #ff8c00;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

/* ===== LOGIN/SIGNUP PAGES ===== */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #333 0%, #111 100%);
    z-index: -2;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.auth-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.auth-box {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.auth-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.auth-tab {
    flex: 1;
    text-align: center;
    padding: 15px 0;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: #666;
    position: relative;
    transition: all 0.3s ease;
}

.auth-tab.active {
    color: #ff8c00;
}

.auth-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #ff8c00 0%, #ff6600 100%);
    border-radius: 3px 3px 0 0;
}

.auth-content {
    position: relative;
    overflow: hidden;
}

.auth-form {
    transition: all 0.3s ease;
}

#signup-form {
    display: none;
}

/* ===== FORMS ===== */
.login-form-container {
    background-color: white;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    text-align: left;
    flex: 0 0 auto;
}

.login-form-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
    text-align: center;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 24px;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #ff8c00;
    box-shadow: 0 0 0 2px rgba(255, 140, 0, 0.2);
}

.forgot-password {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    color: #0066cc;
    text-decoration: none;
    display: inline-block;
    margin-top: 8px;
    margin-bottom: 16px;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: white;
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.login-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 140, 0, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.signup-prompt {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    color: #555;
    text-align: center;
    margin-top: 16px;
}

.signup-link {
    color: #ff6600;
    text-decoration: none;
    font-weight: 600;
}

.signup-link:hover {
    text-decoration: underline;
}

/* ===== TRAVEL INSPIRATION SECTION ===== */
.travel-inspiration-section {
    padding: 60px 0 20px;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    text-align: center;
}

.section-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 42px;
    text-align: center;
    margin-bottom: 40px;
    display: inline-block;
    padding: 15px 40px;
    border-radius: 12px;
    background-color: #000000;
    color: white;
}

/* Pinterest-style Image Grid */
.pinterest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-auto-rows: 10px;
    grid-gap: 16px;
    padding: 16px;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
}

.feed-item {
    grid-row-end: span 30;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.feed-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feed-item:nth-child(1) { grid-row-end: span 45; }
.feed-item:nth-child(2) { grid-row-end: span 35; }
.feed-item:nth-child(3) { grid-row-end: span 40; }
.feed-item:nth-child(4) { grid-row-end: span 30; }
.feed-item:nth-child(5) { grid-row-end: span 38; }
.feed-item:nth-child(6) { grid-row-end: span 32; }
.feed-item:nth-child(7) { grid-row-end: span 45; }
.feed-item:nth-child(8) { grid-row-end: span 35; }

.feed-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feed-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
    color: white;
    opacity: 1;
    z-index: 2;
}

.feed-country {
    display: inline-block;
    background: linear-gradient(135deg, #ff8c00 0%, #ff6600 100%);
    color: white;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 12px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.feed-title {
    font-weight: 600;
    margin: 0;
    font-size: 16px;
}

.feed-location {
    font-size: 14px;
    margin: 4px 0 10px 0;
    opacity: 0.9;
}

.view-guide-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff8c00 0%, #ff6600 100%);
    color: white;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 6px 16px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.view-guide-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* ===== FEATURES SECTION ===== */
.features-section {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 80px 24px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(255, 120, 0, 0.2);
}

.feature-icon-img {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
}

.feature-icon-img img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.feature-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #333;
    margin-bottom: 16px;
}

.feature-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* ===== GUIDE-SPECIFIC STYLES ===== */
.content {
    position: relative;
    z-index: 1;
    text-align: left;
    padding: 90px 10px 40px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
}

/* Guide section heading styles */
.guide-section h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #FFA07A; /* Secondary Orange/Coral */
    border-bottom: 2px solid rgba(255, 160, 122, 0.3); /* Secondary Orange with opacity */
    padding-bottom: 10px;
}

.guide-section h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 20px;
    margin: 25px 0 15px;
    font-weight: 700;
    color: #8BC34A; /* Secondary Green */
}

/* Guide page specific styles */
.guide-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    text-align: center;
}

.guide-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
}

.guide-header p {
    font-size: 18px;
    color: #666;
    margin: 0;
    max-width: 800px;
}

.guide-header-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.travel-info {
    background-color: #f1f9ff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.info-item i {
    font-size: 20px;
    color: #ff8c00;
    margin-right: 8px;
}

.airport-finder {
    background-color: #f5f5f5;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.airport-result {
    margin-top: 15px;
    display: none;
}

.flight-detail {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-top: 10px;
}

.flight-detail i {
    font-size: 24px;
    color: #ff8c00;
    margin-right: 15px;
}

.flight-info {
    flex: 1;
}

.flight-airports {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.airport-code {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    background-color: #333;
    color: white;
    padding: 2px 5px;
    border-radius: 4px;
    margin: 0 5px;
}

.flight-path {
    color: #666;
    position: relative;
    padding-left: 30px;
    letter-spacing: 1px;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
    box-sizing: border-box;
}

/* Breadcrumb Navigation */
.breadcrumb {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 10px 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
}

.breadcrumb a {
    color: #ff8c00;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: #ff6600;
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: #999;
    font-size: 12px;
}

.breadcrumb-current {
    color: #555;
    font-weight: 600;
}

.guide-section {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.guide-section h2 {
    font-size: 32px;
    color: #333;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.guide-section h3 {
    font-size: 24px;
    color: #444;
    margin-top: 30px;
    margin-bottom: 15px;
}

.itinerary-day {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid #ff8c00;
}

.itinerary-day h3 {
    margin-top: 0;
    color: #333;
    display: flex;
    align-items: center;
}

.departure-time {
    font-size: 16px;
    background-color: #000000;
    color: #000;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: bold;
}

/* ===== BUTTONS ===== */
/* Primary Button - Deep Orange Gradient */
.check-availability-btn, .primary-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff7800 0%, #ff5500 100%);
    color: white;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 17px;
    padding: 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 120, 0, 0.3);
    border: none;
    cursor: pointer;
    text-align: center;
}

.check-availability-btn i, .primary-btn i {
    margin-right: 8px;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

.check-availability-btn:hover, .primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 120, 0, 0.4);
    background: linear-gradient(135deg, #ff5500 0%, #ff7800 100%);
}

/* ===== DASHBOARD STYLES ===== */
.dashboard {
    display: flex;
    height: 100vh;
}

.sidebar {
    width: 80px;
    background-color: #2a2a2a;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebar-icon {
    font-size: 24px;
    color: #888;
    margin-bottom: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-icon:hover {
    color: #ff8c00;
    transform: scale(1.1);
}

.main-content {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
}

.post-area {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.user-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.post-input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #3a3a3a;
    color: #fff;
    margin-bottom: 10px;
}

.post-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-button {
    padding: 8px 16px;
    background-color: #ff6600;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.post-button:hover {
    background-color: #ff8c00;
    transform: translateY(-2px);
}

.feed-post {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.post-image {
    width: 100%;
    border-radius: 10px;
    margin-top: 15px;
}

.post-interactions {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.interaction-button {
    color: #888;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.interaction-button:hover {
    color: #ff6600;
}

/* ===== INSTAGRAM BUTTON ===== */
.instagram-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.instagram-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* ===== PROFILE PAGE STYLES ===== */
.profile-section {
    width: 100%;
    max-width: 800px;
    margin-bottom: 40px;
}

.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.profile-name {
    font-family: 'Quicksand', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.profile-bio {
    font-size: 16px;
    max-width: 500px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.profile-stats {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #ff8c00;
}

.stat-label {
    font-size: 14px;
    color: #777;
}

.profile-badges {
    margin-top: 30px;
}

.badges-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.badge-item {
    width: 100px;
    text-align: center;
}

.badge-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

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

.badge-name {
    font-size: 12px;
    font-weight: 600;
}

.travel-map {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.movie-locations-container {
    margin-top: 40px;
}

.movie-location-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.movie-locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.movie-location {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.movie-location:hover {
    transform: translateY(-5px);
}

.movie-location-image {
    position: relative;
    height: 120px;
    overflow: hidden;
}

.movie-location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.movie-location:hover .movie-location-image img {
    transform: scale(1.1);
}

.movie-location-content {
    padding: 15px;
}

.movie-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

.location-name {
    font-size: 12px;
    color: #777;
}

.action-button {
    background: linear-gradient(135deg, #ff8c00 0%, #ff6600 100%);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.action-button i {
    margin-right: 5px;
}

.action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(255, 140, 0, 0.3);
}

.filter-bar {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filter-button {
    background-color: #f0f0f0;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    margin: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-button.active {
    background: linear-gradient(135deg, #ff8c00 0%, #ff6600 100%);
    color: white;
    box-shadow: 0 2px 5px rgba(255, 140, 0, 0.3);
}

/* ===== UPLOAD PAGE STYLES ===== */
.media-upload-area {
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.media-upload-area:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.05);
}

.upload-icon {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.upload-text {
    font-size: 18px;
    margin-bottom: 10px;
}

.upload-subtext {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.form-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.form-checkbox-label {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.form-checkbox-label:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.form-checkbox {
    margin-right: 8px;
}

.form-checkbox:checked + .form-checkbox-text {
    color: #74b9ff;
}

.form-textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    min-height: 120px;
    resize: vertical;
}

.form-select {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.form-select option {
    background-color: #2a2a2a;
    color: #fff;
}

.achievement-card {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin-top: 30px;
    display: flex;
    align-items: center;
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background-color: #74b9ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 24px;
    color: white;
}

.achievement-content {
    flex: 1;
}

.achievement-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #74b9ff;
}

.achievement-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== FOOTER ===== */
.footer {
    padding: 24px;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: #ff8c00;
}

/* ===== TRAVEL GUIDE PAGES ===== */
/* Guide Header */
.guide-header {
    width: 100%;
    max-width: 1200px;
    position: relative;
    height: 400px;
    margin: 0 auto 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    background-color: white;
}

.guide-header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guide-header-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    padding: 30px;
    color: white;
}

.guide-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.guide-location {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 18px;
}

/* Guide Content */
.guide-section {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    width: 100%;
}

.guide-section h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #ff6600;
    border-bottom: 2px solid rgba(255, 102, 0, 0.3);
    padding-bottom: 10px;
    text-shadow: 0 1px 1px rgba(0,0,0,0.05);
    position: relative;
}

.guide-section h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 22px;
    margin: 25px 0 15px;
    font-weight: 600;
    color: #555;
}

.guide-section p {
    margin: 0 0 20px;
    line-height: 1.7;
    color: #444;
}

/* Photo Gallery */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0 30px;
}

.gallery-item {
    height: 220px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

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

/* Tips & Recommendations */
.tips-list {
    padding-left: 20px;
}

.tips-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 10px;
}

/* Map & Video */
.map-container,
.video-container {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.map-container iframe,
.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Itinerary */
.itinerary-day {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #ff8c00;
}

.itinerary-day-title {
    font-weight: 700;
    margin-bottom: 10px;
    color: #ff8c00;
    font-size: 20px;
}

/* Orange button style - using the user's preferred bold, interactive style */
.orange-button {
    background: linear-gradient(135deg, #ff7800 0%, #ff5500 100%);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 20px 24px;
    font-weight: 600;
    font-size: 17px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3), 0 2px 4px rgba(0, 0, 0, 0.2);
    margin: 10px 0;
}

.orange-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 140, 0, 0.4), 0 3px 6px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ff6600 0%, #ff4500 100%);
}

.orange-button i {
    margin-right: 8px;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
}

/* Breadcrumb Navigation */
.breadcrumb {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
}

.breadcrumb a {
    color: #ff8c00;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: #ff6600;
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: #999;
    font-size: 12px;
}

.breadcrumb-current {
    color: #555;
    font-weight: 600;
}

/* Flight button styling */
.button-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.flight-button {
    display: flex;
    align-items: center;
    gap: 8px;
}

.flight-button i {
    font-size: 18px;
}

/* Departure Board Styling */
.departure-board {
    background-color: #1a1a2e;
    color: white;
    border-radius: 8px;
    overflow: hidden;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-family: 'Courier New', monospace;
    width: 100%;
}

.departure-header {
    background-color: #16213e;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ff8c00;
}

.departure-title {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
}

.departure-time {
    font-size: 16px;
    background-color: #000000;
    color: #000;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: bold;
}

.departure-content {
    padding: 15px;
}

.departure-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #2c2c44;
    flex-wrap: wrap;
    gap: 10px;
}

.departure-label {
    font-size: 14px;
    color: #888;
    min-width: 70px;
}

.departure-value {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    flex-grow: 1;
}

.departure-status {
    color: #0f0;
    font-weight: bold;
    background-color: rgba(0, 255, 0, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 14px;
    letter-spacing: 1px;
}

.departure-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff7800 0%, #ff5500 100%);
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 0 0 8px 8px;
    margin-top: 0;
    font-weight: bold;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 4px 8px rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.departure-button:hover {
    background: linear-gradient(135deg, #ff6600 0%, #ff4500 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 102, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.departure-button i {
    font-size: 20px;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
    margin-right: 2px;
}

/* Section Navigation Styling */
.section-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.section-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #555;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
    min-width: 70px;
}

.section-nav-item i {
    font-size: 24px;
    margin-bottom: 5px;
    color: #ff8c00;
}

.section-nav-item span {
    font-size: 14px;
    font-weight: 600;
}

.section-nav-item:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section-nav-item:hover i {
    color: #ff6600;
}

/* Instagram button */
.instagram-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 100;
}

.instagram-button i {
    font-size: 24px;
}

.instagram-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Content Container */
.content {
    position: relative;
    z-index: 1;
    text-align: left;
    padding: 90px 10px 40px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
    box-sizing: border-box;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
        padding: 80px 24px 40px;
        height: auto;
        min-height: 100vh;
    }
    
    .hero-left-content {
        text-align: center;
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .login-form-container {
        margin: 0 auto;
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 12px 24px;
    }
    
    .pinterest-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        padding: 16px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 32px;
    }
    
    .features-container {
        gap: 24px;
    }
    
    .footer-links {
        gap: 16px;
    }
    
    .mobile-logo {
        display: block;
    }
    
    .desktop-logo {
        display: none;
    }
    
    .pinterest-header {
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .pinterest-header {
        padding: 12px 16px;
    }
    
    .header-logo {
        height: 48px;
    }
    
    .login-button, .signup-button {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .pinterest-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        padding: 12px;
    }
    
    .feed-overlay {
        padding: 12px;
    }
    
    .feed-title {
        font-size: 14px;
    }
    
    .feed-location {
        font-size: 12px;
    }
    
    .guide-section {
        padding: 20px;
    }
    
    .guide-section h2 {
        font-size: 28px;
    }
    
    .guide-section h3 {
        font-size: 20px;
    }
}
