/* Hero Profile Section Styles */
.hero-profile-section {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.hero-profile-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-profile-image-section {
    flex-shrink: 0;
    position: relative;
}

.hero-profile-image-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-avatar {
    width: 400px;
    height: 400px;
    border-radius: 4px;
    object-fit: cover;
    border: 5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.hero-avatar:hover {
    transform: scale(1.05);
    border-color: #ff6600;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.hero-profile-content-section {
    flex: 1;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-profile-header-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: baseline;
}

.hero-profile-name {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-profile-title {
    font-size: 22px;
    color: #ff6600;
    margin: 0;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-profile-location {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 18px;
    opacity: 0.9;
}

.hero-profile-location i {
    color: #ff6600;
    font-size: 20px;
}

.hero-profile-bio {
    margin: 0;
}

.hero-profile-bio p {
    font-size: 18px;
    line-height: 1.7;
    color: #ffffff;
    margin: 0;
    opacity: 0.9;
    max-width: 500px;
    text-align: left;
}

.hero-profile-stats {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 102, 0, 0.15);
    padding: 20px 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 102, 0, 0.3);
    transition: all 0.3s ease;
    min-width: 140px;
}

.hero-stat-item:hover {
    background: rgba(255, 102, 0, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.3);
    border-color: #ff6600;
}

.hero-stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 102, 0, 0.3);
    border-radius: 50%;
    color: #ff6600;
    font-size: 20px;
    transition: all 0.3s ease;
}

.hero-stat-item:hover .hero-stat-icon {
    background: #ff6600;
    color: white;
    transform: scale(1.1);
}

.hero-stat-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hero-stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #ff6600;
    line-height: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-stat-label {
    font-size: 12px;
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

/* Hunter Profile Page Styles */
.hunter-profile-page {
    background-color: #ffffff;
}

/* Hunter Profile Header */
.hunter-profile-header {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    padding: 80px 0 60px 0;
}

.hunter-profile-card {
    display: flex;
    gap: 40px;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hunter-profile-image {
    position: relative;
    flex-shrink: 0;
}

.hunter-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.hunter-status-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #ff6600;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hunter-status-badge i {
    color: #ffffff;
    font-size: 12px;
}

.hunter-profile-info {
    flex: 1;
}

.hunter-name {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: white;
}

.hunter-title {
    font-size: 20px;
    color: #ff6600;
    margin: 0 0 20px 0;
    font-weight: 500;
}

.hunter-location {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 18px;
}

.hunter-bio {
    margin-bottom: 30px;
}

.hunter-bio p {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
}

.hunter-social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
}

.social-link:hover {
    background: #ff6600;
    transform: translateY(-3px);
    color: white;
}

/* Hunter Stats Section */
.hunter-stats-section {
    padding: 80px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid #ff6600;
}

.stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff6600 0%, #ff8c00 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    position: relative;
    z-index: 2;
    font-size: 48px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.stat-content {
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: white;
}

.stat-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
}

/* Hunter Achievements Section */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.achievement-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 5px solid #ff6600;
    border: 2px solid #f0f0f0;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.achievement-icon {
    font-size: 48px;
    color: #ff6600;
    margin-bottom: 20px;
}

.achievement-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: #000000;
}

.achievement-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    margin: 0 0 15px 0;
}

.achievement-date {
    display: inline-block;
    background: #ff6600;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* Hunting History Section */

.hunting-timeline {
    margin-top: 50px;
    position: relative;
}

.hunting-timeline::before {
    content: "";
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #ff6600, #ff8c00);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}
.timeline-item:nth-last-child(1) {
    margin-bottom: 0;
}
.timeline-date {
    flex-shrink: 0;
    width: 100px;
    text-align: center;
    position: relative;
}

.timeline-date::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #ff6600;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 3px #ff6600;
}

.timeline-date .month {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #ff6600;
    margin-bottom: 5px;
}

.timeline-date .year {
    display: block;
    font-size: 16px;
    color: #666666;
    font-weight: 500;
}

.timeline-content {
    flex: 1;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #ff6600;
}

.timeline-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: #000000;
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    margin: 0 0 20px 0;
}

.hunt-details {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hunt-details span {
    background: #e9ecef;
    color: #495057;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Equipment Section */

.equipment-grid-hunter {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.equipment-category {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #f0f0f0;
}

.equipment-category h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 25px 0;
    color: #000000;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 3px solid #ff6600;
}

.equipment-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.equipment-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.equipment-item:hover {
    background: #ff6600;
    color: white;
    transform: translateX(10px);
}

.equipment-item i {
    font-size: 20px;
    color: #ff6600;
    min-width: 25px;
}

.equipment-item:hover i {
    color: white;
}

.equipment-item span {
    font-size: 16px;
    font-weight: 500;
}

/* Hunting Philosophy Section */

.philosophy-content {
    margin-top: 50px;
}

.philosophy-quote {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    border: 2px solid #ff6600;
}

.philosophy-quote i {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.philosophy-quote p {
    font-size: 24px;
    line-height: 1.6;
    margin: 0 0 20px 0;
    font-style: italic;
}

.quote-author {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.philosophy-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.principle {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
}

.principle:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.principle i {
    font-size: 48px;
    color: #ff6600;
    margin-bottom: 20px;
}

.principle h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: #000000;
}

.principle p {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}
/* Events page Detail */
.event-details-page .section-title {
    margin-bottom: 20px;
    font-size: 30px;
}

.event-details-page {
    .event-details-section {
        background-color: white;
    }

    /* Breadcrumb */
    .event-breadcrumb {
        margin-bottom: 30px;
        font-size: 14px;
    }

    .breadcrumb-link {
        color: #ff6600;
        text-decoration: none;
    }

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

    .breadcrumb-separator {
        margin: 0 10px;
        color: #666;
    }

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

    /* Event Hero */
    .event-hero {
        display: flex;
        gap: 40px;
        margin-bottom: 60px;
        background: linear-gradient(135deg, #19181d 0%, #333 100%);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .event-hero-image {
        position: relative;
        flex: 0 0 400px;
    }

    .event-hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .event-badge {
        position: absolute;
        top: 20px;
        left: 20px;
        background: linear-gradient(45deg, #ff6600, #ff8533);
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .event-hero-content {
        padding: 50px;
        color: white;
        flex: 1;
    }

    .event-title {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 30px;
        font-family: Blinker, sans-serif;
        line-height: 1.2;
        color: #fff;
    }

    .event-meta {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .event-meta-item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 16px;
        color: #cccccc;
    }

    .event-meta-item i {
        color: #ff6600;
        width: 20px;
    }

    .event-description {
        font-size: 18px;
        line-height: 1.6;
        color: #cccccc;
    }

    /* Event Details Grid */
    .event-details-grid {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 40px;
    }

    /* Event Information */
    .event-info-section {
        margin-bottom: 50px;
    }
    .event-info-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .info-item {
        background: #f8f9fa;
        padding: 25px;
        border-radius: 12px;
        border-left: 4px solid #ff6600;
    }

    .info-item h4 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 10px;
        color: #19181d;
    }

    .info-item p {
        font-size: 14px;
        color: #666;
        line-height: 1.5;
    }

    /* Event Rules */
    .event-rules-section {
        margin-bottom: 50px;
    }

    .rules-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .rule-item {
        background: #f8f9fa;
        padding: 25px;
        border-radius: 12px;
        border-left: 4px solid #ff6600;
    }

    .rule-item h4 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 10px;
        color: #19181d;
    }

    .rule-item p {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
    }

    /* Participants */
    .event-participants-section {
        margin-bottom: 50px;
    }

    .participants-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .participant-item {
        display: flex;
        align-items: center;
        gap: 15px;
        background: #f8f9fa;
        padding: 20px;
        border-radius: 12px;
    }

    .participant-avatar {
        width: 50px;
        height: 50px;
        background: #ff6600;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 20px;
    }

    .participant-info h4 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 5px;
        color: #19181d;
    }

    .participant-info p {
        font-size: 14px;
        color: #666;
    }

    /* Sponsors */
    .event-sponsors-section {
        margin-bottom: 50px;
    }

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

    .sponsor-item {
        text-align: center;
        background: #f8f9fa;
        padding: 30px;
        border-radius: 12px;
    }

    .sponsor-item img {
        width: 80px;
        height: 80px;
        object-fit: contain;
        margin-bottom: 15px;
    }

    .sponsor-item h4 {
        font-size: 16px;
        font-weight: 600;
        color: #19181d;
    }

    /* Registration Sidebar */
    .event-registration-sidebar {
        position: sticky;
        top: 20px;
    }

    .registration-card {
        background: white;
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border: 2px solid #f0f0f0;
    }

    .registration-title {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #19181d;
        text-align: center;
    }

    .registration-price {
        text-align: center;
        margin-bottom: 30px;
        padding: 20px;
        background: linear-gradient(45deg, #ff6600, #ff8533);
        border-radius: 12px;
        color: white;
    }

    .price-amount {
        display: block;
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .price-label {
        font-size: 14px;
        opacity: 0.9;
    }

    /* Registration Form */
    .registration-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .form-group {
        display: flex;
        flex-direction: column;
    }

    .form-group label {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 8px;
        color: #19181d;
    }

    .form-group input,
    .form-group select {
        padding: 12px 16px;
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        font-size: 14px;
        transition: border-color 0.3s ease;
    }

    .form-group input:focus,
    .form-group select:focus {
        outline: none;
        border-color: #ff6600;
    }

    .checkbox-group {
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
    }

    .checkbox-group input[type="checkbox"] {
        margin-top: 2px;
    }

    .checkbox-group label {
        margin-bottom: 0;
        font-size: 13px;
        line-height: 1.4;
    }

    .registration-btn {
        background: linear-gradient(45deg, #ff6600, #ff8533);
        color: white;
        border: none;
        padding: 15px 30px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .registration-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
    }

    .registration-info {
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid #e0e0e0;
    }

    .registration-info p {
        font-size: 13px;
        color: #666;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .registration-info i {
        color: #ff6600;
        width: 16px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .event-hero {
            flex-direction: column;
        }

        .event-hero-image {
            flex: none;
            height: 250px;
        }

        .event-details-grid {
            grid-template-columns: 1fr;
        }

        .event-info-grid {
            grid-template-columns: 1fr;
        }

        .event-meta {
            grid-template-columns: 1fr;
        }

        .event-registration-sidebar {
            position: static;
        }
    }
}
/* Responsive Design for Hunter Profile */
@media (max-width: 768px) {
    .hunter-profile-card {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hunter-avatar {
        width: 150px;
        height: 150px;
    }

    .hunter-name {
        font-size: 36px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .hunting-timeline::before {
        display: none;
    }

    .timeline-item {
        flex-direction: column;
        gap: 20px;
    }

    .timeline-date {
        display: none;
    }

    .timeline-date::before {
        left: 30px;
    }

    .equipment-grid-hunter {
        grid-template-columns: 1fr;
    }

    .philosophy-principles {
        grid-template-columns: 1fr;
    }

    .philosophy-quote {
        padding: 30px 20px;
    }

    .philosophy-quote p {
        font-size: 20px;
    }
}
