/* ================= CONTAINER ================= */

/* .container {
    max-width: 1400px;
    margin: auto;

    background: white;
    border-radius: 28px;

    padding: 35px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

    transform: scale(0.95);
    transform-origin: top center;

    width: 142%;
} */

/* ================= TOP BAR ================= */

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 30px;
}

/* BACK BUTTON */

.back-btn {
    border: 1px solid #d9dfea;
    background: white;

    padding: 14px 22px;
    border-radius: 14px;

    cursor: pointer;

    font-size: 18px;
    font-weight: 600;

    display: flex;
    align-items: center;
    gap: 10px;

    transition: 0.3s;
}

.back-btn:hover {
    background: #23499b;
    color: white;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(35, 73, 155, 0.2);
}

/* TOP ACTIONS */

.top-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* SHARE BUTTON */

.icon-btn {
    border: 1px solid #d9dfea;
    background: white;

    height: 58px;
    padding: 0 18px;

    border-radius: 14px;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    font-size: 15px;
    font-weight: 600;

    transition: 0.3s;
}

.icon-btn:hover {
    background: #f2f5ff;
    transform: translateY(-2px);
}

/* ================= FAVOURITE ================= */

.favorite-btn {
    border: 1px solid #d9dfea;
    background: white;

    height: 58px;
    padding: 0 18px;

    border-radius: 14px;

    display: flex;
    align-items: center;
    gap: 12px;

    cursor: pointer;

    transition: 0.3s ease;
}

.favorite-btn:hover {
    background: #f8f9ff;
    transform: translateY(-2px);
}

.favorite-text {
    font-size: 15px;
    font-weight: 600;
    color: #1b2340;
    user-select: none;
}

/* STAR */

.star {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: #f3f3f3;
    border: 1px solid #d6d6d6;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s ease;
}

.star i {
    color: #9b9b9b;
    font-size: 1.1rem;

    transition: 0.3s ease;
}

.favorite-btn:hover .star {
    transform: rotate(15deg) scale(1.1);

    background: #ffe08a;
    border-color: #f0d58a;
}

.favorite-btn:hover .star i {
    color: #d4a017;
}

/* ACTIVE */

.favorite-btn.active {
    background: #fff7df;
    border-color: #f0d58a;
}

.favorite-btn.active .favorite-text {
    color: #b8860b;
}

.favorite-btn.active .star {
    background: #ffe08a;
    border-color: #f0d58a;
}

.favorite-btn.active .star i {
    color: #d4a017;
}

/* ================= MAIN CONTENT ================= */

.main-content {
    display: grid;
    grid-template-columns: 420px 1fr;

    gap: 45px;
}

/* ================= LEFT PANEL ================= */

.left-panel img {
    width: 100%;
    height: 500px;

    object-fit: cover;

    border-radius: 25px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: #f4ecff;
    color: #8a4de8;

    padding: 10px 18px;

    border-radius: 14px;

    margin-top: -65px;
    margin-left: 20px;

    position: relative;

    font-weight: 600;
}

.details-card {
    margin-top: 30px;

    background: white;

    border: 1px solid #e9edf5;
    border-radius: 24px;

    padding: 30px;
}

.details-card h2 {
    margin-bottom: 25px;
}

.detail-item {
    display: flex;
    gap: 15px;

    margin-bottom: 30px;
}

.detail-item i {
    color: #2462ff;
    font-size: 24px;
    width: 25px;
}

.detail-item span {
    color: #7b8092;
    font-size: 15px;
}

.detail-item p {
    font-size: 22px;
    margin-top: 4px;
    font-weight: 600;
}

/* ================= RIGHT PANEL ================= */

.title {
    font-size: 58px;
    font-weight: 800;

    margin-bottom: 10px;
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #2462ff;
    text-decoration: none;

    font-size: 22px;

    margin-bottom: 28px;

    transition: 0.3s;
}

.location-link:hover {
    color: #153c9a;
    transform: translateX(4px);
}

/* INFO BOXES */

.info-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;

    margin-bottom: 25px;
}

.info-box {
    flex: 1;
    min-width: 180px;

    border: 1px solid #e8edf7;
    border-radius: 20px;

    padding: 22px;

    display: flex;
    align-items: center;
    gap: 15px;
}

.info-box i {
    color: #2462ff;
    font-size: 26px;
}

.info-box span {
    color: #6f7688;
    font-size: 14px;
}

.info-box p {
    font-size: 18px;
    font-weight: 700;
}

/* ================= DESCRIPTION ================= */

.description-panel {
    background: #fafcff;

    border: 1px solid #e5ebf5;
    border-radius: 22px;

    padding: 28px;

    max-height: 470px;

    overflow-y: auto;

    margin-bottom: 25px;
}

.description-panel::-webkit-scrollbar {
    width: 8px;
}

.description-panel::-webkit-scrollbar-thumb {
    background: #c8d3ef;
    border-radius: 20px;
}

.description-panel p {
    font-size: 18px;
    line-height: 1.8;

    margin-bottom: 20px;
}

.quote-box {
    background: #eef5ff;

    border-radius: 18px;

    padding: 25px;

    font-size: 20px;
    font-weight: 600;

    color: #223;

    margin: 20px 0;
}

/* ================= FILES ================= */

.files-box {
    border: 1px solid #e8edf7;
    border-radius: 24px;

    padding: 25px;
}

.files-box h3 {
    margin-bottom: 20px;
    font-size: 28px;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;

    border: 1px solid #ebeff7;
    border-radius: 18px;

    padding: 18px;

    margin-bottom: 18px;
}

.file-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.file-icon {
    width: 55px;
    height: 55px;

    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;
    font-size: 24px;
}

.pdf {
    background: #ff4d4d;
}

.doc {
    background: #2462ff;
}

/* DOWNLOAD BUTTON */

.download-btn {
    border: none;
    background: #f4f7ff;

    width: 52px;
    height: 52px;

    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition: 0.3s;
}

.download-btn:hover {
    background: #2462ff;
    color: white;
}

/* ================= ACTION BUTTONS ================= */

.action-buttons {
    margin-top: 35px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.action-btn {
    border-radius: 24px;

    padding: 28px;

    display: flex;
    align-items: center;
    gap: 20px;

    cursor: pointer;

    transition: 0.3s;
}

.action-btn:hover {
    transform: translateY(-4px);
}

.discuss {
    border: 2px solid #23499b;
    background: white;

    color: #23499b;
}

.participate {
    background: #20b15a;
    color: white;
}

.report {
    border: 2px solid #ef4444;
    background: white;

    color: #ef4444;
}

.action-btn i {
    font-size: 34px;
}

.action-btn h4 {
    font-size: 28px;
}

/* ================= BOTTOM PANEL ================= */

.bottom-panel {
    margin-top: 40px;

    border: 1px solid #e8edf7;
    border-radius: 28px;

    padding: 30px;
}

.bottom-panel h2 {
    margin-bottom: 30px;
    font-size: 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.feature-card {
    border: 1px solid #e8edf7;
    border-radius: 20px;

    padding: 25px;

    display: flex;
    gap: 18px;

    align-items: flex-start;

    cursor: pointer;

    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.feature-card i {
    font-size: 30px;
    margin-top: 3px;
}

.feature-card h4 {
    margin-bottom: 8px;
    font-size: 22px;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* COLORS */

.blue {
    color: #2462ff;
}

.green {
    color: #16a34a;
}

.red {
    color: #ef4444;
}

.yellow {
    color: #f4b400;
}

.purple {
    color: #8a4de8;
}

/* REMOVE DEFAULT BUTTON STYLES */

.action-btn,
.feature-card {
    outline: none;
    width: 100%;
    text-align: left;
}

button {
    border: none;
    background: none;
}

/* ================= RESPONSIVE ================= */

@media(max-width: 1200px) {

    .main-content {
        grid-template-columns: 1fr;
    }

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

    .action-buttons {
        grid-template-columns: 1fr;
    }
}